source: mainline/kernel/generic/src/proc/scheduler.c@ def5207

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since def5207 was def5207, checked in by Martin Decky <martin@…>, 19 years ago

add forgotten btree_remove()

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