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