Subversion Repositories HelenOS

Rev

Rev 2292 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2292 Rev 2307
1
/*
1
/*
2
 * Copyright (c) 2001-2007 Jakub Jermar
2
 * Copyright (c) 2001-2007 Jakub Jermar
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup genericproc
29
/** @addtogroup genericproc
30
 * @{
30
 * @{
31
 */
31
 */
32
 
32
 
33
/**
33
/**
34
 * @file
34
 * @file
35
 * @brief   Scheduler and load balancing.
35
 * @brief   Scheduler and load balancing.
36
 *
36
 *
37
 * This file contains the scheduler and kcpulb kernel thread which
37
 * This file contains the scheduler and kcpulb kernel thread which
38
 * performs load-balancing of per-CPU run queues.
38
 * performs load-balancing of per-CPU run queues.
39
 */
39
 */
40
 
40
 
41
#include <proc/scheduler.h>
41
#include <proc/scheduler.h>
42
#include <proc/thread.h>
42
#include <proc/thread.h>
43
#include <proc/task.h>
43
#include <proc/task.h>
44
#include <mm/frame.h>
44
#include <mm/frame.h>
45
#include <mm/page.h>
45
#include <mm/page.h>
46
#include <mm/as.h>
46
#include <mm/as.h>
47
#include <time/timeout.h>
47
#include <time/timeout.h>
48
#include <time/delay.h>
48
#include <time/delay.h>
49
#include <arch/asm.h>
49
#include <arch/asm.h>
50
#include <arch/faddr.h>
50
#include <arch/faddr.h>
51
#include <arch/cycle.h>
51
#include <arch/cycle.h>
52
#include <atomic.h>
52
#include <atomic.h>
53
#include <synch/spinlock.h>
53
#include <synch/spinlock.h>
54
#include <config.h>
54
#include <config.h>
55
#include <context.h>
55
#include <context.h>
56
#include <fpu_context.h>
56
#include <fpu_context.h>
57
#include <func.h>
57
#include <func.h>
58
#include <arch.h>
58
#include <arch.h>
59
#include <adt/list.h>
59
#include <adt/list.h>
60
#include <panic.h>
60
#include <panic.h>
61
#include <cpu.h>
61
#include <cpu.h>
62
#include <print.h>
62
#include <print.h>
63
#include <debug.h>
63
#include <debug.h>
-
 
64
#include <synch/rcu.h>
64
 
65
 
65
static void before_task_runs(void);
66
static void before_task_runs(void);
66
static void before_thread_runs(void);
67
static void before_thread_runs(void);
67
static void after_thread_ran(void);
68
static void after_thread_ran(void);
68
static void scheduler_separated_stack(void);
69
static void scheduler_separated_stack(void);
69
 
70
 
70
atomic_t nrdy;  /**< Number of ready threads in the system. */
71
atomic_t nrdy;  /**< Number of ready threads in the system. */
71
 
72
 
72
/** Carry out actions before new task runs. */
73
/** Carry out actions before new task runs. */
73
void before_task_runs(void)
74
void before_task_runs(void)
74
{
75
{
75
    before_task_runs_arch();
76
    before_task_runs_arch();
76
}
77
}
77
 
78
 
78
/** Take actions before new thread runs.
79
/** Take actions before new thread runs.
79
 *
80
 *
80
 * Perform actions that need to be
81
 * Perform actions that need to be
81
 * taken before the newly selected
82
 * taken before the newly selected
82
 * tread is passed control.
83
 * tread is passed control.
83
 *
84
 *
84
 * THREAD->lock is locked on entry
85
 * THREAD->lock is locked on entry
85
 *
86
 *
86
 */
87
 */
87
void before_thread_runs(void)
88
void before_thread_runs(void)
88
{
89
{
89
    before_thread_runs_arch();
90
    before_thread_runs_arch();
90
#ifdef CONFIG_FPU_LAZY
91
#ifdef CONFIG_FPU_LAZY
91
    if(THREAD == CPU->fpu_owner)
92
    if(THREAD == CPU->fpu_owner)
92
        fpu_enable();
93
        fpu_enable();
93
    else
94
    else
94
        fpu_disable();
95
        fpu_disable();
95
#else
96
#else
96
    fpu_enable();
97
    fpu_enable();
97
    if (THREAD->fpu_context_exists)
98
    if (THREAD->fpu_context_exists)
98
        fpu_context_restore(THREAD->saved_fpu_context);
99
        fpu_context_restore(THREAD->saved_fpu_context);
99
    else {
100
    else {
100
        fpu_init();
101
        fpu_init();
101
        THREAD->fpu_context_exists = 1;
102
        THREAD->fpu_context_exists = 1;
102
    }
103
    }
103
#endif
104
#endif
104
}
105
}
105
 
106
 
106
/** Take actions after THREAD had run.
107
/** Take actions after THREAD had run.
107
 *
108
 *
108
 * Perform actions that need to be
109
 * Perform actions that need to be
109
 * taken after the running thread
110
 * taken after the running thread
110
 * had been preempted by the scheduler.
111
 * had been preempted by the scheduler.
111
 *
112
 *
112
 * THREAD->lock is locked on entry
113
 * THREAD->lock is locked on entry
113
 *
114
 *
114
 */
115
 */
115
void after_thread_ran(void)
116
void after_thread_ran(void)
116
{
117
{
117
    after_thread_ran_arch();
118
    after_thread_ran_arch();
-
 
119
    rcu_run_callbacks();
118
}
120
}
119
 
121
 
120
#ifdef CONFIG_FPU_LAZY
122
#ifdef CONFIG_FPU_LAZY
121
void scheduler_fpu_lazy_request(void)
123
void scheduler_fpu_lazy_request(void)
122
{
124
{
123
restart:
125
restart:
124
    fpu_enable();
126
    fpu_enable();
125
    spinlock_lock(&CPU->lock);
127
    spinlock_lock(&CPU->lock);
126
 
128
 
127
    /* Save old context */
129
    /* Save old context */
128
    if (CPU->fpu_owner != NULL) {  
130
    if (CPU->fpu_owner != NULL) {  
129
        spinlock_lock(&CPU->fpu_owner->lock);
131
        spinlock_lock(&CPU->fpu_owner->lock);
130
        fpu_context_save(CPU->fpu_owner->saved_fpu_context);
132
        fpu_context_save(CPU->fpu_owner->saved_fpu_context);
131
        /* don't prevent migration */
133
        /* don't prevent migration */
132
        CPU->fpu_owner->fpu_context_engaged = 0;
134
        CPU->fpu_owner->fpu_context_engaged = 0;
133
        spinlock_unlock(&CPU->fpu_owner->lock);
135
        spinlock_unlock(&CPU->fpu_owner->lock);
134
        CPU->fpu_owner = NULL;
136
        CPU->fpu_owner = NULL;
135
    }
137
    }
136
 
138
 
137
    spinlock_lock(&THREAD->lock);
139
    spinlock_lock(&THREAD->lock);
138
    if (THREAD->fpu_context_exists) {
140
    if (THREAD->fpu_context_exists) {
139
        fpu_context_restore(THREAD->saved_fpu_context);
141
        fpu_context_restore(THREAD->saved_fpu_context);
140
    } else {
142
    } else {
141
        /* Allocate FPU context */
143
        /* Allocate FPU context */
142
        if (!THREAD->saved_fpu_context) {
144
        if (!THREAD->saved_fpu_context) {
143
            /* Might sleep */
145
            /* Might sleep */
144
            spinlock_unlock(&THREAD->lock);
146
            spinlock_unlock(&THREAD->lock);
145
            spinlock_unlock(&CPU->lock);
147
            spinlock_unlock(&CPU->lock);
146
            THREAD->saved_fpu_context =
148
            THREAD->saved_fpu_context =
147
                (fpu_context_t *) slab_alloc(fpu_context_slab, 0);
149
                (fpu_context_t *) slab_alloc(fpu_context_slab, 0);
148
            /* We may have switched CPUs during slab_alloc */
150
            /* We may have switched CPUs during slab_alloc */
149
            goto restart;
151
            goto restart;
150
        }
152
        }
151
        fpu_init();
153
        fpu_init();
152
        THREAD->fpu_context_exists = 1;
154
        THREAD->fpu_context_exists = 1;
153
    }
155
    }
154
    CPU->fpu_owner = THREAD;
156
    CPU->fpu_owner = THREAD;
155
    THREAD->fpu_context_engaged = 1;
157
    THREAD->fpu_context_engaged = 1;
156
    spinlock_unlock(&THREAD->lock);
158
    spinlock_unlock(&THREAD->lock);
157
 
159
 
158
    spinlock_unlock(&CPU->lock);
160
    spinlock_unlock(&CPU->lock);
159
}
161
}
160
#endif
162
#endif
161
 
163
 
162
/** Initialize scheduler
164
/** Initialize scheduler
163
 *
165
 *
164
 * Initialize kernel scheduler.
166
 * Initialize kernel scheduler.
165
 *
167
 *
166
 */
168
 */
167
void scheduler_init(void)
169
void scheduler_init(void)
168
{
170
{
169
}
171
}
170
 
172
 
171
/** Get thread to be scheduled
173
/** Get thread to be scheduled
172
 *
174
 *
173
 * Get the optimal thread to be scheduled
175
 * Get the optimal thread to be scheduled
174
 * according to thread accounting and scheduler
176
 * according to thread accounting and scheduler
175
 * policy.
177
 * policy.
176
 *
178
 *
177
 * @return Thread to be scheduled.
179
 * @return Thread to be scheduled.
178
 *
180
 *
179
 */
181
 */
180
static thread_t *find_best_thread(void)
182
static thread_t *find_best_thread(void)
181
{
183
{
182
    thread_t *t;
184
    thread_t *t;
183
    runq_t *r;
185
    runq_t *r;
184
    int i;
186
    int i;
185
 
187
 
186
    ASSERT(CPU != NULL);
188
    ASSERT(CPU != NULL);
187
 
189
 
188
loop:
190
loop:
189
    interrupts_enable();
191
    interrupts_enable();
190
   
192
   
191
    if (atomic_get(&CPU->nrdy) == 0) {
193
    if (atomic_get(&CPU->nrdy) == 0) {
192
        /*
194
        /*
193
         * For there was nothing to run, the CPU goes to sleep
195
         * For there was nothing to run, the CPU goes to sleep
194
         * until a hardware interrupt or an IPI comes.
196
         * until a hardware interrupt or an IPI comes.
195
         * This improves energy saving and hyperthreading.
197
         * This improves energy saving and hyperthreading.
196
         */
198
         */
197
 
199
 
198
        /*
200
        /*
199
         * An interrupt might occur right now and wake up a thread.
201
         * An interrupt might occur right now and wake up a thread.
200
         * In such case, the CPU will continue to go to sleep
202
         * In such case, the CPU will continue to go to sleep
201
         * even though there is a runnable thread.
203
         * even though there is a runnable thread.
202
         */
204
         */
203
 
205
 
204
         cpu_sleep();
206
         cpu_sleep();
205
         goto loop;
207
         goto loop;
206
    }
208
    }
207
 
209
 
208
    interrupts_disable();
210
    interrupts_disable();
209
   
211
   
210
    for (i = 0; i<RQ_COUNT; i++) {
212
    for (i = 0; i < RQ_COUNT; i++) {
211
        r = &CPU->rq[i];
213
        r = &CPU->rq[i];
212
        spinlock_lock(&r->lock);
214
        spinlock_lock(&r->lock);
213
        if (r->n == 0) {
215
        if (r->n == 0) {
214
            /*
216
            /*
215
             * If this queue is empty, try a lower-priority queue.
217
             * If this queue is empty, try a lower-priority queue.
216
             */
218
             */
217
            spinlock_unlock(&r->lock);
219
            spinlock_unlock(&r->lock);
218
            continue;
220
            continue;
219
        }
221
        }
220
 
222
 
221
        atomic_dec(&CPU->nrdy);
223
        atomic_dec(&CPU->nrdy);
222
        atomic_dec(&nrdy);
224
        atomic_dec(&nrdy);
223
        r->n--;
225
        r->n--;
224
 
226
 
225
        /*
227
        /*
226
         * Take the first thread from the queue.
228
         * Take the first thread from the queue.
227
         */
229
         */
228
        t = list_get_instance(r->rq_head.next, thread_t, rq_link);
230
        t = list_get_instance(r->rq_head.next, thread_t, rq_link);
229
        list_remove(&t->rq_link);
231
        list_remove(&t->rq_link);
230
 
232
 
231
        spinlock_unlock(&r->lock);
233
        spinlock_unlock(&r->lock);
232
 
234
 
233
        spinlock_lock(&t->lock);
235
        spinlock_lock(&t->lock);
234
        t->cpu = CPU;
236
        t->cpu = CPU;
235
 
237
 
236
        t->ticks = us2ticks((i + 1) * 10000);
238
        t->ticks = us2ticks((i + 1) * 10000);
237
        t->priority = i;    /* correct rq index */
239
        t->priority = i;    /* correct rq index */
238
 
240
 
239
        /*
241
        /*
240
         * Clear the THREAD_FLAG_STOLEN flag so that t can be migrated
242
         * Clear the THREAD_FLAG_STOLEN flag so that t can be migrated
241
         * when load balancing needs emerge.
243
         * when load balancing needs emerge.
242
         */
244
         */
243
        t->flags &= ~THREAD_FLAG_STOLEN;
245
        t->flags &= ~THREAD_FLAG_STOLEN;
244
        spinlock_unlock(&t->lock);
246
        spinlock_unlock(&t->lock);
245
 
247
 
246
        return t;
248
        return t;
247
    }
249
    }
248
    goto loop;
250
    goto loop;
249
 
251
 
250
}
252
}
251
 
253
 
252
/** Prevent rq starvation
254
/** Prevent rq starvation
253
 *
255
 *
254
 * Prevent low priority threads from starving in rq's.
256
 * Prevent low priority threads from starving in rq's.
255
 *
257
 *
256
 * When the function decides to relink rq's, it reconnects
258
 * When the function decides to relink rq's, it reconnects
257
 * respective pointers so that in result threads with 'pri'
259
 * respective pointers so that in result threads with 'pri'
258
 * greater or equal start are moved to a higher-priority queue.
260
 * greater or equal start are moved to a higher-priority queue.
259
 *
261
 *
260
 * @param start Threshold priority.
262
 * @param start Threshold priority.
261
 *
263
 *
262
 */
264
 */
263
static void relink_rq(int start)
265
static void relink_rq(int start)
264
{
266
{
265
    link_t head;
267
    link_t head;
266
    runq_t *r;
268
    runq_t *r;
267
    int i, n;
269
    int i, n;
268
 
270
 
269
    list_initialize(&head);
271
    list_initialize(&head);
270
    spinlock_lock(&CPU->lock);
272
    spinlock_lock(&CPU->lock);
271
    if (CPU->needs_relink > NEEDS_RELINK_MAX) {
273
    if (CPU->needs_relink > NEEDS_RELINK_MAX) {
272
        for (i = start; i < RQ_COUNT - 1; i++) {
274
        for (i = start; i < RQ_COUNT - 1; i++) {
273
            /* remember and empty rq[i + 1] */
275
            /* remember and empty rq[i + 1] */
274
            r = &CPU->rq[i + 1];
276
            r = &CPU->rq[i + 1];
275
            spinlock_lock(&r->lock);
277
            spinlock_lock(&r->lock);
276
            list_concat(&head, &r->rq_head);
278
            list_concat(&head, &r->rq_head);
277
            n = r->n;
279
            n = r->n;
278
            r->n = 0;
280
            r->n = 0;
279
            spinlock_unlock(&r->lock);
281
            spinlock_unlock(&r->lock);
280
       
282
       
281
            /* append rq[i + 1] to rq[i] */
283
            /* append rq[i + 1] to rq[i] */
282
            r = &CPU->rq[i];
284
            r = &CPU->rq[i];
283
            spinlock_lock(&r->lock);
285
            spinlock_lock(&r->lock);
284
            list_concat(&r->rq_head, &head);
286
            list_concat(&r->rq_head, &head);
285
            r->n += n;
287
            r->n += n;
286
            spinlock_unlock(&r->lock);
288
            spinlock_unlock(&r->lock);
287
        }
289
        }
288
        CPU->needs_relink = 0;
290
        CPU->needs_relink = 0;
289
    }
291
    }
290
    spinlock_unlock(&CPU->lock);
292
    spinlock_unlock(&CPU->lock);
291
 
293
 
292
}
294
}
293
 
295
 
294
/** The scheduler
296
/** The scheduler
295
 *
297
 *
296
 * The thread scheduling procedure.
298
 * The thread scheduling procedure.
297
 * Passes control directly to
299
 * Passes control directly to
298
 * scheduler_separated_stack().
300
 * scheduler_separated_stack().
299
 *
301
 *
300
 */
302
 */
301
void scheduler(void)
303
void scheduler(void)
302
{
304
{
303
    volatile ipl_t ipl;
305
    volatile ipl_t ipl;
304
 
306
 
305
    ASSERT(CPU != NULL);
307
    ASSERT(CPU != NULL);
306
 
308
 
307
    ipl = interrupts_disable();
309
    ipl = interrupts_disable();
308
 
310
 
309
    if (atomic_get(&haltstate))
311
    if (atomic_get(&haltstate))
310
        halt();
312
        halt();
311
   
313
   
312
    if (THREAD) {
314
    if (THREAD) {
313
        spinlock_lock(&THREAD->lock);
315
        spinlock_lock(&THREAD->lock);
314
       
316
       
315
        /* Update thread accounting */
317
        /* Update thread accounting */
316
        THREAD->cycles += get_cycle() - THREAD->last_cycle;
318
        THREAD->cycles += get_cycle() - THREAD->last_cycle;
317
       
319
       
318
#ifndef CONFIG_FPU_LAZY
320
#ifndef CONFIG_FPU_LAZY
319
        fpu_context_save(THREAD->saved_fpu_context);
321
        fpu_context_save(THREAD->saved_fpu_context);
320
#endif
322
#endif
321
        if (!context_save(&THREAD->saved_context)) {
323
        if (!context_save(&THREAD->saved_context)) {
322
            /*
324
            /*
323
             * This is the place where threads leave scheduler();
325
             * This is the place where threads leave scheduler();
324
             */
326
             */
325
           
327
           
326
            /* Save current CPU cycle */
328
            /* Save current CPU cycle */
327
            THREAD->last_cycle = get_cycle();
329
            THREAD->last_cycle = get_cycle();
328
           
330
           
329
            spinlock_unlock(&THREAD->lock);
331
            spinlock_unlock(&THREAD->lock);
330
            interrupts_restore(THREAD->saved_context.ipl);
332
            interrupts_restore(THREAD->saved_context.ipl);
331
           
333
           
332
            return;
334
            return;
333
        }
335
        }
334
 
336
 
335
        /*
337
        /*
336
         * Interrupt priority level of preempted thread is recorded
338
         * Interrupt priority level of preempted thread is recorded
337
         * here to facilitate scheduler() invocations from
339
         * here to facilitate scheduler() invocations from
338
         * interrupts_disable()'d code (e.g. waitq_sleep_timeout()).
340
         * interrupts_disable()'d code (e.g. waitq_sleep_timeout()).
339
         */
341
         */
340
        THREAD->saved_context.ipl = ipl;
342
        THREAD->saved_context.ipl = ipl;
341
    }
343
    }
342
 
344
 
343
    /*
345
    /*
344
     * Through the 'THE' structure, we keep track of THREAD, TASK, CPU, VM
346
     * Through the 'THE' structure, we keep track of THREAD, TASK, CPU, VM
345
     * and preemption counter. At this point THE could be coming either
347
     * and preemption counter. At this point THE could be coming either
346
     * from THREAD's or CPU's stack.
348
     * from THREAD's or CPU's stack.
347
     */
349
     */
348
    the_copy(THE, (the_t *) CPU->stack);
350
    the_copy(THE, (the_t *) CPU->stack);
349
 
351
 
350
    /*
352
    /*
351
     * We may not keep the old stack.
353
     * We may not keep the old stack.
352
     * Reason: If we kept the old stack and got blocked, for instance, in
354
     * Reason: If we kept the old stack and got blocked, for instance, in
353
     * find_best_thread(), the old thread could get rescheduled by another
355
     * find_best_thread(), the old thread could get rescheduled by another
354
     * CPU and overwrite the part of its own stack that was also used by
356
     * CPU and overwrite the part of its own stack that was also used by
355
     * the scheduler on this CPU.
357
     * the scheduler on this CPU.
356
     *
358
     *
357
     * Moreover, we have to bypass the compiler-generated POP sequence
359
     * Moreover, we have to bypass the compiler-generated POP sequence
358
     * which is fooled by SP being set to the very top of the stack.
360
     * which is fooled by SP being set to the very top of the stack.
359
     * Therefore the scheduler() function continues in
361
     * Therefore the scheduler() function continues in
360
     * scheduler_separated_stack().
362
     * scheduler_separated_stack().
361
     */
363
     */
362
    context_save(&CPU->saved_context);
364
    context_save(&CPU->saved_context);
363
    context_set(&CPU->saved_context, FADDR(scheduler_separated_stack),
365
    context_set(&CPU->saved_context, FADDR(scheduler_separated_stack),
364
        (uintptr_t) CPU->stack, CPU_STACK_SIZE);
366
        (uintptr_t) CPU->stack, CPU_STACK_SIZE);
365
    context_restore(&CPU->saved_context);
367
    context_restore(&CPU->saved_context);
366
    /* not reached */
368
    /* not reached */
367
}
369
}
368
 
370
 
369
/** Scheduler stack switch wrapper
371
/** Scheduler stack switch wrapper
370
 *
372
 *
371
 * Second part of the scheduler() function
373
 * Second part of the scheduler() function
372
 * using new stack. Handling the actual context
374
 * using new stack. Handling the actual context
373
 * switch to a new thread.
375
 * switch to a new thread.
374
 *
376
 *
375
 * Assume THREAD->lock is held.
377
 * Assume THREAD->lock is held.
376
 */
378
 */
377
void scheduler_separated_stack(void)
379
void scheduler_separated_stack(void)
378
{
380
{
379
    int priority;
381
    int priority;
-
 
382
    DEADLOCK_PROBE_INIT(p_joinwq);
380
   
383
 
381
    ASSERT(CPU != NULL);
384
    ASSERT(CPU != NULL);
382
   
385
   
383
    if (THREAD) {
386
    if (THREAD) {
384
        /* must be run after the switch to scheduler stack */
387
        /* must be run after the switch to scheduler stack */
385
        after_thread_ran();
388
        after_thread_ran();
386
 
389
 
387
        switch (THREAD->state) {
390
        switch (THREAD->state) {
388
        case Running:
391
        case Running:
389
            spinlock_unlock(&THREAD->lock);
392
            spinlock_unlock(&THREAD->lock);
390
            thread_ready(THREAD);
393
            thread_ready(THREAD);
391
            break;
394
            break;
392
 
395
 
393
        case Exiting:
396
        case Exiting:
394
repeat:
397
repeat:
395
            if (THREAD->detached) {
398
            if (THREAD->detached) {
396
                thread_destroy(THREAD);
399
                thread_destroy(THREAD);
397
            } else {
400
            } else {
398
                /*
401
                /*
399
                 * The thread structure is kept allocated until
402
                 * The thread structure is kept allocated until
400
                 * somebody calls thread_detach() on it.
403
                 * somebody calls thread_detach() on it.
401
                 */
404
                 */
402
                if (!spinlock_trylock(&THREAD->join_wq.lock)) {
405
                if (!spinlock_trylock(&THREAD->join_wq.lock)) {
403
                    /*
406
                    /*
404
                     * Avoid deadlock.
407
                     * Avoid deadlock.
405
                     */
408
                     */
406
                    spinlock_unlock(&THREAD->lock);
409
                    spinlock_unlock(&THREAD->lock);
407
                    delay(10);
410
                    delay(10);
408
                    spinlock_lock(&THREAD->lock);
411
                    spinlock_lock(&THREAD->lock);
-
 
412
                    DEADLOCK_PROBE(p_joinwq,
-
 
413
                        DEADLOCK_THRESHOLD);
409
                    goto repeat;
414
                    goto repeat;
410
                }
415
                }
411
                _waitq_wakeup_unsafe(&THREAD->join_wq, false);
416
                _waitq_wakeup_unsafe(&THREAD->join_wq, false);
412
                spinlock_unlock(&THREAD->join_wq.lock);
417
                spinlock_unlock(&THREAD->join_wq.lock);
413
               
418
               
414
                THREAD->state = Undead;
419
                THREAD->state = Undead;
415
                spinlock_unlock(&THREAD->lock);
420
                spinlock_unlock(&THREAD->lock);
416
            }
421
            }
417
            break;
422
            break;
418
           
423
           
419
        case Sleeping:
424
        case Sleeping:
420
            /*
425
            /*
421
             * Prefer the thread after it's woken up.
426
             * Prefer the thread after it's woken up.
422
             */
427
             */
423
            THREAD->priority = -1;
428
            THREAD->priority = -1;
424
 
429
 
425
            /*
430
            /*
426
             * We need to release wq->lock which we locked in
431
             * We need to release wq->lock which we locked in
427
             * waitq_sleep(). Address of wq->lock is kept in
432
             * waitq_sleep(). Address of wq->lock is kept in
428
             * THREAD->sleep_queue.
433
             * THREAD->sleep_queue.
429
             */
434
             */
430
            spinlock_unlock(&THREAD->sleep_queue->lock);
435
            spinlock_unlock(&THREAD->sleep_queue->lock);
431
 
436
 
432
            /*
437
            /*
433
             * Check for possible requests for out-of-context
438
             * Check for possible requests for out-of-context
434
             * invocation.
439
             * invocation.
435
             */
440
             */
436
            if (THREAD->call_me) {
441
            if (THREAD->call_me) {
437
                THREAD->call_me(THREAD->call_me_with);
442
                THREAD->call_me(THREAD->call_me_with);
438
                THREAD->call_me = NULL;
443
                THREAD->call_me = NULL;
439
                THREAD->call_me_with = NULL;
444
                THREAD->call_me_with = NULL;
440
            }
445
            }
441
 
446
 
442
            spinlock_unlock(&THREAD->lock);
447
            spinlock_unlock(&THREAD->lock);
443
 
448
 
444
            break;
449
            break;
445
 
450
 
446
        default:
451
        default:
447
            /*
452
            /*
448
             * Entering state is unexpected.
453
             * Entering state is unexpected.
449
             */
454
             */
450
            panic("tid%d: unexpected state %s\n", THREAD->tid,
455
            panic("tid%llu: unexpected state %s\n", THREAD->tid,
451
                thread_states[THREAD->state]);
456
                thread_states[THREAD->state]);
452
            break;
457
            break;
453
        }
458
        }
454
 
459
 
455
        THREAD = NULL;
460
        THREAD = NULL;
456
    }
461
    }
457
 
462
 
458
    THREAD = find_best_thread();
463
    THREAD = find_best_thread();
459
   
464
   
460
    spinlock_lock(&THREAD->lock);
465
    spinlock_lock(&THREAD->lock);
461
    priority = THREAD->priority;
466
    priority = THREAD->priority;
462
    spinlock_unlock(&THREAD->lock);
467
    spinlock_unlock(&THREAD->lock);
463
 
468
 
464
    relink_rq(priority);       
469
    relink_rq(priority);       
465
 
470
 
466
    /*
471
    /*
467
     * If both the old and the new task are the same, lots of work is
472
     * If both the old and the new task are the same, lots of work is
468
     * avoided.
473
     * avoided.
469
     */
474
     */
470
    if (TASK != THREAD->task) {
475
    if (TASK != THREAD->task) {
471
        as_t *as1 = NULL;
476
        as_t *as1 = NULL;
472
        as_t *as2;
477
        as_t *as2;
473
 
478
 
474
        if (TASK) {
479
        if (TASK) {
475
            spinlock_lock(&TASK->lock);
480
            spinlock_lock(&TASK->lock);
476
            as1 = TASK->as;
481
            as1 = TASK->as;
477
            spinlock_unlock(&TASK->lock);
482
            spinlock_unlock(&TASK->lock);
478
        }
483
        }
479
 
484
 
480
        spinlock_lock(&THREAD->task->lock);
485
        spinlock_lock(&THREAD->task->lock);
481
        as2 = THREAD->task->as;
486
        as2 = THREAD->task->as;
482
        spinlock_unlock(&THREAD->task->lock);
487
        spinlock_unlock(&THREAD->task->lock);
483
       
488
       
484
        /*
489
        /*
485
         * Note that it is possible for two tasks to share one address
490
         * Note that it is possible for two tasks to share one address
486
         * space.
491
         * space.
487
         */
492
         */
488
        if (as1 != as2) {
493
        if (as1 != as2) {
489
            /*
494
            /*
490
             * Both tasks and address spaces are different.
495
             * Both tasks and address spaces are different.
491
             * Replace the old one with the new one.
496
             * Replace the old one with the new one.
492
             */
497
             */
493
            as_switch(as1, as2);
498
            as_switch(as1, as2);
494
        }
499
        }
495
        TASK = THREAD->task;
500
        TASK = THREAD->task;
496
        before_task_runs();
501
        before_task_runs();
497
    }
502
    }
498
 
503
 
499
    spinlock_lock(&THREAD->lock);  
504
    spinlock_lock(&THREAD->lock);  
500
    THREAD->state = Running;
505
    THREAD->state = Running;
501
 
506
 
502
#ifdef SCHEDULER_VERBOSE
507
#ifdef SCHEDULER_VERBOSE
503
    printf("cpu%d: tid %d (priority=%d, ticks=%lld, nrdy=%ld)\n",
508
    printf("cpu%d: tid %llu (priority=%d, ticks=%llu, nrdy=%ld)\n",
504
        CPU->id, THREAD->tid, THREAD->priority, THREAD->ticks,
509
        CPU->id, THREAD->tid, THREAD->priority, THREAD->ticks,
505
        atomic_get(&CPU->nrdy));
510
        atomic_get(&CPU->nrdy));
506
#endif  
511
#endif  
507
 
512
 
508
    /*
513
    /*
509
     * Some architectures provide late kernel PA2KA(identity)
514
     * Some architectures provide late kernel PA2KA(identity)
510
     * mapping in a page fault handler. However, the page fault
515
     * mapping in a page fault handler. However, the page fault
511
     * handler uses the kernel stack of the running thread and
516
     * handler uses the kernel stack of the running thread and
512
     * therefore cannot be used to map it. The kernel stack, if
517
     * therefore cannot be used to map it. The kernel stack, if
513
     * necessary, is to be mapped in before_thread_runs(). This
518
     * necessary, is to be mapped in before_thread_runs(). This
514
     * function must be executed before the switch to the new stack.
519
     * function must be executed before the switch to the new stack.
515
     */
520
     */
516
    before_thread_runs();
521
    before_thread_runs();
517
 
522
 
518
    /*
523
    /*
519
     * Copy the knowledge of CPU, TASK, THREAD and preemption counter to
524
     * Copy the knowledge of CPU, TASK, THREAD and preemption counter to
520
     * thread's stack.
525
     * thread's stack.
521
     */
526
     */
522
    the_copy(THE, (the_t *) THREAD->kstack);
527
    the_copy(THE, (the_t *) THREAD->kstack);
523
   
528
   
524
    context_restore(&THREAD->saved_context);
529
    context_restore(&THREAD->saved_context);
525
    /* not reached */
530
    /* not reached */
526
}
531
}
527
 
532
 
528
#ifdef CONFIG_SMP
533
#ifdef CONFIG_SMP
529
/** Load balancing thread
534
/** Load balancing thread
530
 *
535
 *
531
 * SMP load balancing thread, supervising thread supplies
536
 * SMP load balancing thread, supervising thread supplies
532
 * for the CPU it's wired to.
537
 * for the CPU it's wired to.
533
 *
538
 *
534
 * @param arg Generic thread argument (unused).
539
 * @param arg Generic thread argument (unused).
535
 *
540
 *
536
 */
541
 */
537
void kcpulb(void *arg)
542
void kcpulb(void *arg)
538
{
543
{
539
    thread_t *t;
544
    thread_t *t;
540
    int count, average, j, k = 0;
545
    int count, average, j, k = 0;
541
    unsigned int i;
546
    unsigned int i;
542
    ipl_t ipl;
547
    ipl_t ipl;
543
 
548
 
544
    /*
549
    /*
545
     * Detach kcpulb as nobody will call thread_join_timeout() on it.
550
     * Detach kcpulb as nobody will call thread_join_timeout() on it.
546
     */
551
     */
547
    thread_detach(THREAD);
552
    thread_detach(THREAD);
548
   
553
   
549
loop:
554
loop:
550
    /*
555
    /*
551
     * Work in 1s intervals.
556
     * Work in 1s intervals.
552
     */
557
     */
553
    thread_sleep(1);
558
    thread_sleep(1);
554
 
559
 
555
not_satisfied:
560
not_satisfied:
556
    /*
561
    /*
557
     * Calculate the number of threads that will be migrated/stolen from
562
     * Calculate the number of threads that will be migrated/stolen from
558
     * other CPU's. Note that situation can have changed between two
563
     * other CPU's. Note that situation can have changed between two
559
     * passes. Each time get the most up to date counts.
564
     * passes. Each time get the most up to date counts.
560
     */
565
     */
561
    average = atomic_get(&nrdy) / config.cpu_active + 1;
566
    average = atomic_get(&nrdy) / config.cpu_active + 1;
562
    count = average - atomic_get(&CPU->nrdy);
567
    count = average - atomic_get(&CPU->nrdy);
563
 
568
 
564
    if (count <= 0)
569
    if (count <= 0)
565
        goto satisfied;
570
        goto satisfied;
566
 
571
 
567
    /*
572
    /*
568
     * Searching least priority queues on all CPU's first and most priority
573
     * Searching least priority queues on all CPU's first and most priority
569
     * queues on all CPU's last.
574
     * queues on all CPU's last.
570
     */
575
     */
571
    for (j= RQ_COUNT - 1; j >= 0; j--) {
576
    for (j = RQ_COUNT - 1; j >= 0; j--) {
572
        for (i = 0; i < config.cpu_active; i++) {
577
        for (i = 0; i < config.cpu_active; i++) {
573
            link_t *l;
578
            link_t *l;
574
            runq_t *r;
579
            runq_t *r;
575
            cpu_t *cpu;
580
            cpu_t *cpu;
576
 
581
 
577
            cpu = &cpus[(i + k) % config.cpu_active];
582
            cpu = &cpus[(i + k) % config.cpu_active];
578
 
583
 
579
            /*
584
            /*
580
             * Not interested in ourselves.
585
             * Not interested in ourselves.
581
             * Doesn't require interrupt disabling for kcpulb has
586
             * Doesn't require interrupt disabling for kcpulb has
582
             * THREAD_FLAG_WIRED.
587
             * THREAD_FLAG_WIRED.
583
             */
588
             */
584
            if (CPU == cpu)
589
            if (CPU == cpu)
585
                continue;
590
                continue;
586
            if (atomic_get(&cpu->nrdy) <= average)
591
            if (atomic_get(&cpu->nrdy) <= average)
587
                continue;
592
                continue;
588
 
593
 
589
            ipl = interrupts_disable();
594
            ipl = interrupts_disable();
590
            r = &cpu->rq[j];
595
            r = &cpu->rq[j];
591
            spinlock_lock(&r->lock);
596
            spinlock_lock(&r->lock);
592
            if (r->n == 0) {
597
            if (r->n == 0) {
593
                spinlock_unlock(&r->lock);
598
                spinlock_unlock(&r->lock);
594
                interrupts_restore(ipl);
599
                interrupts_restore(ipl);
595
                continue;
600
                continue;
596
            }
601
            }
597
       
602
       
598
            t = NULL;
603
            t = NULL;
599
            l = r->rq_head.prev;    /* search rq from the back */
604
            l = r->rq_head.prev;    /* search rq from the back */
600
            while (l != &r->rq_head) {
605
            while (l != &r->rq_head) {
601
                t = list_get_instance(l, thread_t, rq_link);
606
                t = list_get_instance(l, thread_t, rq_link);
602
                /*
607
                /*
603
                 * We don't want to steal CPU-wired threads
608
                 * We don't want to steal CPU-wired threads
604
                 * neither threads already stolen. The latter
609
                 * neither threads already stolen. The latter
605
                 * prevents threads from migrating between CPU's
610
                 * prevents threads from migrating between CPU's
606
                 * without ever being run. We don't want to
611
                 * without ever being run. We don't want to
607
                 * steal threads whose FPU context is still in
612
                 * steal threads whose FPU context is still in
608
                 * CPU.
613
                 * CPU.
609
                 */
614
                 */
610
                spinlock_lock(&t->lock);
615
                spinlock_lock(&t->lock);
611
                if ((!(t->flags & (THREAD_FLAG_WIRED |
616
                if ((!(t->flags & (THREAD_FLAG_WIRED |
612
                    THREAD_FLAG_STOLEN))) &&
617
                    THREAD_FLAG_STOLEN))) &&
613
                    (!(t->fpu_context_engaged)) ) {
618
                    (!(t->fpu_context_engaged))) {
614
                    /*
619
                    /*
615
                     * Remove t from r.
620
                     * Remove t from r.
616
                     */
621
                     */
617
                    spinlock_unlock(&t->lock);
622
                    spinlock_unlock(&t->lock);
618
                   
623
                   
619
                    atomic_dec(&cpu->nrdy);
624
                    atomic_dec(&cpu->nrdy);
620
                    atomic_dec(&nrdy);
625
                    atomic_dec(&nrdy);
621
 
626
 
622
                    r->n--;
627
                    r->n--;
623
                    list_remove(&t->rq_link);
628
                    list_remove(&t->rq_link);
624
 
629
 
625
                    break;
630
                    break;
626
                }
631
                }
627
                spinlock_unlock(&t->lock);
632
                spinlock_unlock(&t->lock);
628
                l = l->prev;
633
                l = l->prev;
629
                t = NULL;
634
                t = NULL;
630
            }
635
            }
631
            spinlock_unlock(&r->lock);
636
            spinlock_unlock(&r->lock);
632
 
637
 
633
            if (t) {
638
            if (t) {
634
                /*
639
                /*
635
                 * Ready t on local CPU
640
                 * Ready t on local CPU
636
                 */
641
                 */
637
                spinlock_lock(&t->lock);
642
                spinlock_lock(&t->lock);
638
#ifdef KCPULB_VERBOSE
643
#ifdef KCPULB_VERBOSE
639
                printf("kcpulb%d: TID %d -> cpu%d, nrdy=%ld, "
644
                printf("kcpulb%d: TID %llu -> cpu%d, nrdy=%ld, "
640
                    "avg=%nd\n", CPU->id, t->tid, CPU->id,
645
                    "avg=%nd\n", CPU->id, t->tid, CPU->id,
641
                    atomic_get(&CPU->nrdy),
646
                    atomic_get(&CPU->nrdy),
642
                    atomic_get(&nrdy) / config.cpu_active);
647
                    atomic_get(&nrdy) / config.cpu_active);
643
#endif
648
#endif
644
                t->flags |= THREAD_FLAG_STOLEN;
649
                t->flags |= THREAD_FLAG_STOLEN;
645
                t->state = Entering;
650
                t->state = Entering;
646
                spinlock_unlock(&t->lock);
651
                spinlock_unlock(&t->lock);
647
   
652
   
648
                thread_ready(t);
653
                thread_ready(t);
649
 
654
 
650
                interrupts_restore(ipl);
655
                interrupts_restore(ipl);
651
   
656
   
652
                if (--count == 0)
657
                if (--count == 0)
653
                    goto satisfied;
658
                    goto satisfied;
654
                   
659
                   
655
                /*
660
                /*
656
                 * We are not satisfied yet, focus on another
661
                 * We are not satisfied yet, focus on another
657
                 * CPU next time.
662
                 * CPU next time.
658
                 */
663
                 */
659
                k++;
664
                k++;
660
               
665
               
661
                continue;
666
                continue;
662
            }
667
            }
663
            interrupts_restore(ipl);
668
            interrupts_restore(ipl);
664
        }
669
        }
665
    }
670
    }
666
 
671
 
667
    if (atomic_get(&CPU->nrdy)) {
672
    if (atomic_get(&CPU->nrdy)) {
668
        /*
673
        /*
669
         * Be a little bit light-weight and let migrated threads run.
674
         * Be a little bit light-weight and let migrated threads run.
670
         */
675
         */
671
        scheduler();
676
        scheduler();
672
    } else {
677
    } else {
673
        /*
678
        /*
674
         * We failed to migrate a single thread.
679
         * We failed to migrate a single thread.
675
         * Give up this turn.
680
         * Give up this turn.
676
         */
681
         */
677
        goto loop;
682
        goto loop;
678
    }
683
    }
679
       
684
       
680
    goto not_satisfied;
685
    goto not_satisfied;
681
 
686
 
682
satisfied:
687
satisfied:
683
    goto loop;
688
    goto loop;
684
}
689
}
685
 
690
 
686
#endif /* CONFIG_SMP */
691
#endif /* CONFIG_SMP */
687
 
692
 
688
 
693
 
689
/** Print information about threads & scheduler queues */
694
/** Print information about threads & scheduler queues */
690
void sched_print_list(void)
695
void sched_print_list(void)
691
{
696
{
692
    ipl_t ipl;
697
    ipl_t ipl;
693
    unsigned int cpu, i;
698
    unsigned int cpu, i;
694
    runq_t *r;
699
    runq_t *r;
695
    thread_t *t;
700
    thread_t *t;
696
    link_t *cur;
701
    link_t *cur;
697
 
702
 
698
    /* We are going to mess with scheduler structures,
703
    /* We are going to mess with scheduler structures,
699
     * let's not be interrupted */
704
     * let's not be interrupted */
700
    ipl = interrupts_disable();
705
    ipl = interrupts_disable();
701
    for (cpu = 0; cpu < config.cpu_count; cpu++) {
706
    for (cpu = 0; cpu < config.cpu_count; cpu++) {
702
 
707
 
703
        if (!cpus[cpu].active)
708
        if (!cpus[cpu].active)
704
            continue;
709
            continue;
705
 
710
 
706
        spinlock_lock(&cpus[cpu].lock);
711
        spinlock_lock(&cpus[cpu].lock);
707
        printf("cpu%d: address=%p, nrdy=%ld, needs_relink=%ld\n",
712
        printf("cpu%d: address=%p, nrdy=%ld, needs_relink=%ld\n",
708
            cpus[cpu].id, &cpus[cpu], atomic_get(&cpus[cpu].nrdy),
713
            cpus[cpu].id, &cpus[cpu], atomic_get(&cpus[cpu].nrdy),
709
            cpus[cpu].needs_relink);
714
            cpus[cpu].needs_relink);
710
       
715
       
711
        for (i = 0; i < RQ_COUNT; i++) {
716
        for (i = 0; i < RQ_COUNT; i++) {
712
            r = &cpus[cpu].rq[i];
717
            r = &cpus[cpu].rq[i];
713
            spinlock_lock(&r->lock);
718
            spinlock_lock(&r->lock);
714
            if (!r->n) {
719
            if (!r->n) {
715
                spinlock_unlock(&r->lock);
720
                spinlock_unlock(&r->lock);
716
                continue;
721
                continue;
717
            }
722
            }
718
            printf("\trq[%d]: ", i);
723
            printf("\trq[%d]: ", i);
719
            for (cur = r->rq_head.next; cur != &r->rq_head;
724
            for (cur = r->rq_head.next; cur != &r->rq_head;
720
                cur = cur->next) {
725
                cur = cur->next) {
721
                t = list_get_instance(cur, thread_t, rq_link);
726
                t = list_get_instance(cur, thread_t, rq_link);
722
                printf("%d(%s) ", t->tid,
727
                printf("%llu(%s) ", t->tid,
723
                    thread_states[t->state]);
728
                    thread_states[t->state]);
724
            }
729
            }
725
            printf("\n");
730
            printf("\n");
726
            spinlock_unlock(&r->lock);
731
            spinlock_unlock(&r->lock);
727
        }
732
        }
728
        spinlock_unlock(&cpus[cpu].lock);
733
        spinlock_unlock(&cpus[cpu].lock);
729
    }
734
    }
730
   
735
   
731
    interrupts_restore(ipl);
736
    interrupts_restore(ipl);
732
}
737
}
733
 
738
 
734
/** @}
739
/** @}
735
 */
740
 */
736
 
741