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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 48d14222 was 48d14222, checked in by Jakub Jermar <jakub@…>, 18 years ago

JoinMe → Lingering

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