Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/main/kinit.c

    r2fa10f6 r52c60b6  
    107107        if (config.cpu_count > 1) {
    108108                waitq_initialize(&ap_completion_wq);
    109                
    110109                /*
    111110                 * Create the kmp thread and wait for its completion.
     
    116115                thread = thread_create(kmp, NULL, TASK, THREAD_FLAG_WIRED, "kmp", true);
    117116                if (thread != NULL) {
    118                         irq_spinlock_lock(&thread->lock, false);
     117                        spinlock_lock(&thread->lock);
    119118                        thread->cpu = &cpus[0];
    120                         irq_spinlock_unlock(&thread->lock, false);
     119                        spinlock_unlock(&thread->lock);
    121120                        thread_ready(thread);
    122121                } else
     
    125124                thread_join(thread);
    126125                thread_detach(thread);
     126        }
     127       
     128        if (config.cpu_count > 1) {
     129                size_t i;
    127130               
    128131                /*
    129132                 * For each CPU, create its load balancing thread.
    130133                 */
    131                 size_t i;
    132                
    133134                for (i = 0; i < config.cpu_count; i++) {
    134135                        thread = thread_create(kcpulb, NULL, TASK, THREAD_FLAG_WIRED, "kcpulb", true);
    135136                        if (thread != NULL) {
    136                                 irq_spinlock_lock(&thread->lock, false);
     137                                spinlock_lock(&thread->lock);
    137138                                thread->cpu = &cpus[i];
    138                                 irq_spinlock_unlock(&thread->lock, false);
     139                                spinlock_unlock(&thread->lock);
    139140                                thread_ready(thread);
    140141                        } else
     
    180181                if (init.tasks[i].addr % FRAME_SIZE) {
    181182                        printf("init[%" PRIs "].addr is not frame aligned\n", i);
    182                         programs[i].task = NULL;
    183183                        continue;
    184184                }
     
    199199                str_cpy(namebuf + INIT_PREFIX_LEN,
    200200                    TASK_NAME_BUFLEN - INIT_PREFIX_LEN, name);
    201                
     201
    202202                int rc = program_create_from_image((void *) init.tasks[i].addr,
    203203                    namebuf, &programs[i]);
     
    208208                         */
    209209                        cap_set(programs[i].task, CAP_CAP | CAP_MEM_MANAGER |
    210                             CAP_IO_MANAGER | CAP_IRQ_REG);
     210                            CAP_IO_MANAGER | CAP_PREEMPT_CONTROL | CAP_IRQ_REG);
    211211                       
    212212                        if (!ipc_phone_0)
     
    222222                }
    223223        }
    224        
     224
    225225        /*
    226226         * Run user tasks.
     
    230230                        program_ready(&programs[i]);
    231231        }
    232        
     232
    233233#ifdef CONFIG_KCONSOLE
    234234        if (!stdin) {
Note: See TracChangeset for help on using the changeset viewer.