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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since a2a00e8 was a2a00e8, checked in by Stanislav Kozina <stanislav.kozina@…>, 15 years ago

Accounting separated to kernel and user time.

  • Property mode set to 100644
File size: 16.5 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{
[09c18f78]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);
[09c18f78]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);
[09c18f78]145 spinlock_unlock(&CPU->lock);
[4e33b6b]146 THREAD->saved_fpu_context =
[4184e76]147 (fpu_context_t *) slab_alloc(fpu_context_slab, 0);
[09c18f78]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;
[a2a00e8]317 THREAD->kcycles += get_cycle() - THREAD->last_cycle;
[cce6acf]318
[f76fed4]319#ifndef CONFIG_FPU_LAZY
320 fpu_context_save(THREAD->saved_fpu_context);
321#endif
[7d6ec87]322 if (!context_save(&THREAD->saved_context)) {
323 /*
324 * This is the place where threads leave scheduler();
325 */
[cce6acf]326
327 /* Save current CPU cycle */
328 THREAD->last_cycle = get_cycle();
329
[7d6ec87]330 spinlock_unlock(&THREAD->lock);
331 interrupts_restore(THREAD->saved_context.ipl);
[8965838e]332
[7d6ec87]333 return;
334 }
335
336 /*
[4e33b6b]337 * Interrupt priority level of preempted thread is recorded
338 * here to facilitate scheduler() invocations from
339 * interrupts_disable()'d code (e.g. waitq_sleep_timeout()).
[7d6ec87]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 the_copy(THE, (the_t *) CPU->stack);
350
351 /*
352 * We may not keep the old stack.
353 * Reason: If we kept the old stack and got blocked, for instance, in
354 * find_best_thread(), the old thread could get rescheduled by another
355 * CPU and overwrite the part of its own stack that was also used by
356 * the scheduler on this CPU.
357 *
358 * Moreover, we have to bypass the compiler-generated POP sequence
359 * which is fooled by SP being set to the very top of the stack.
360 * Therefore the scheduler() function continues in
361 * scheduler_separated_stack().
362 */
363 context_save(&CPU->saved_context);
[32fffef0]364 context_set(&CPU->saved_context, FADDR(scheduler_separated_stack),
[6f4495f5]365 (uintptr_t) CPU->stack, CPU_STACK_SIZE);
[7d6ec87]366 context_restore(&CPU->saved_context);
367 /* not reached */
368}
[70527f1]369
370/** Scheduler stack switch wrapper
371 *
372 * Second part of the scheduler() function
373 * using new stack. Handling the actual context
374 * switch to a new thread.
375 *
[266294a9]376 * Assume THREAD->lock is held.
[70527f1]377 */
[7d6ec87]378void scheduler_separated_stack(void)
[f761f1eb]379{
380 int priority;
[31d8e10]381 DEADLOCK_PROBE_INIT(p_joinwq);
382
[623ba26c]383 ASSERT(CPU != NULL);
[8965838e]384
[43114c5]385 if (THREAD) {
[7d6ec87]386 /* must be run after the switch to scheduler stack */
[97f1691]387 after_thread_ran();
388
[43114c5]389 switch (THREAD->state) {
[06e1e95]390 case Running:
[76cec1e]391 spinlock_unlock(&THREAD->lock);
392 thread_ready(THREAD);
393 break;
[f761f1eb]394
[06e1e95]395 case Exiting:
[fe19611]396repeat:
[def5207]397 if (THREAD->detached) {
[fe19611]398 thread_destroy(THREAD);
399 } else {
400 /*
[4e33b6b]401 * The thread structure is kept allocated until
402 * somebody calls thread_detach() on it.
[fe19611]403 */
404 if (!spinlock_trylock(&THREAD->join_wq.lock)) {
405 /*
406 * Avoid deadlock.
407 */
408 spinlock_unlock(&THREAD->lock);
[ea7890e7]409 delay(HZ);
[fe19611]410 spinlock_lock(&THREAD->lock);
[31d8e10]411 DEADLOCK_PROBE(p_joinwq,
412 DEADLOCK_THRESHOLD);
[fe19611]413 goto repeat;
414 }
[5c8ba05]415 _waitq_wakeup_unsafe(&THREAD->join_wq,
416 WAKEUP_FIRST);
[fe19611]417 spinlock_unlock(&THREAD->join_wq.lock);
418
[48d14222]419 THREAD->state = Lingering;
[fe19611]420 spinlock_unlock(&THREAD->lock);
421 }
[76cec1e]422 break;
[266294a9]423
[06e1e95]424 case Sleeping:
[76cec1e]425 /*
426 * Prefer the thread after it's woken up.
427 */
[22f7769]428 THREAD->priority = -1;
[76cec1e]429
430 /*
[4e33b6b]431 * We need to release wq->lock which we locked in
432 * waitq_sleep(). Address of wq->lock is kept in
433 * THREAD->sleep_queue.
[76cec1e]434 */
435 spinlock_unlock(&THREAD->sleep_queue->lock);
436
437 /*
[4e33b6b]438 * Check for possible requests for out-of-context
439 * invocation.
[76cec1e]440 */
441 if (THREAD->call_me) {
442 THREAD->call_me(THREAD->call_me_with);
443 THREAD->call_me = NULL;
444 THREAD->call_me_with = NULL;
445 }
446
447 spinlock_unlock(&THREAD->lock);
448
449 break;
[f761f1eb]450
[06e1e95]451 default:
[76cec1e]452 /*
453 * Entering state is unexpected.
454 */
[f651e80]455 panic("tid%" PRIu64 ": unexpected state %s.",
[1e9d0e3]456 THREAD->tid, thread_states[THREAD->state]);
[76cec1e]457 break;
[f761f1eb]458 }
[97f1691]459
[43114c5]460 THREAD = NULL;
[f761f1eb]461 }
[ba18512]462
[43114c5]463 THREAD = find_best_thread();
[f761f1eb]464
[43114c5]465 spinlock_lock(&THREAD->lock);
[22f7769]466 priority = THREAD->priority;
[43114c5]467 spinlock_unlock(&THREAD->lock);
[7ce9284]468
[f761f1eb]469 relink_rq(priority);
470
471 /*
[4e33b6b]472 * If both the old and the new task are the same, lots of work is
473 * avoided.
[f761f1eb]474 */
[43114c5]475 if (TASK != THREAD->task) {
[20d50a1]476 as_t *as1 = NULL;
477 as_t *as2;
[f761f1eb]478
[43114c5]479 if (TASK) {
480 spinlock_lock(&TASK->lock);
[20d50a1]481 as1 = TASK->as;
[43114c5]482 spinlock_unlock(&TASK->lock);
[f761f1eb]483 }
484
[43114c5]485 spinlock_lock(&THREAD->task->lock);
[20d50a1]486 as2 = THREAD->task->as;
[43114c5]487 spinlock_unlock(&THREAD->task->lock);
[f761f1eb]488
489 /*
[4e33b6b]490 * Note that it is possible for two tasks to share one address
491 * space.
[f761f1eb]492 */
[20d50a1]493 if (as1 != as2) {
[f761f1eb]494 /*
[20d50a1]495 * Both tasks and address spaces are different.
[f761f1eb]496 * Replace the old one with the new one.
497 */
[7e4e532]498 as_switch(as1, as2);
[f761f1eb]499 }
[f76fed4]500 TASK = THREAD->task;
[39cea6a]501 before_task_runs();
[f761f1eb]502 }
503
[1068f6a]504 spinlock_lock(&THREAD->lock);
[43114c5]505 THREAD->state = Running;
[f761f1eb]506
[f76fed4]507#ifdef SCHEDULER_VERBOSE
[1e9d0e3]508 printf("cpu%u: tid %" PRIu64 " (priority=%d, ticks=%" PRIu64
509 ", nrdy=%ld)\n", CPU->id, THREAD->tid, THREAD->priority,
510 THREAD->ticks, atomic_get(&CPU->nrdy));
[f76fed4]511#endif
[f761f1eb]512
[97f1691]513 /*
514 * Some architectures provide late kernel PA2KA(identity)
515 * mapping in a page fault handler. However, the page fault
516 * handler uses the kernel stack of the running thread and
517 * therefore cannot be used to map it. The kernel stack, if
518 * necessary, is to be mapped in before_thread_runs(). This
519 * function must be executed before the switch to the new stack.
520 */
521 before_thread_runs();
522
[3e1607f]523 /*
[4e33b6b]524 * Copy the knowledge of CPU, TASK, THREAD and preemption counter to
525 * thread's stack.
[3e1607f]526 */
[bcdd9aa]527 the_copy(THE, (the_t *) THREAD->kstack);
528
[43114c5]529 context_restore(&THREAD->saved_context);
[f761f1eb]530 /* not reached */
531}
532
[5f85c91]533#ifdef CONFIG_SMP
[70527f1]534/** Load balancing thread
535 *
536 * SMP load balancing thread, supervising thread supplies
537 * for the CPU it's wired to.
538 *
539 * @param arg Generic thread argument (unused).
540 *
[f761f1eb]541 */
542void kcpulb(void *arg)
543{
544 thread_t *t;
[228666c]545 int count;
546 atomic_count_t average;
[4184e76]547 unsigned int i;
[228666c]548 int j;
549 int k = 0;
[22f7769]550 ipl_t ipl;
[f761f1eb]551
[2cb5e64]552 /*
553 * Detach kcpulb as nobody will call thread_join_timeout() on it.
554 */
555 thread_detach(THREAD);
556
[f761f1eb]557loop:
558 /*
[3260ada]559 * Work in 1s intervals.
[f761f1eb]560 */
[3260ada]561 thread_sleep(1);
[f761f1eb]562
563not_satisfied:
564 /*
565 * Calculate the number of threads that will be migrated/stolen from
566 * other CPU's. Note that situation can have changed between two
567 * passes. Each time get the most up to date counts.
568 */
[444ec64]569 average = atomic_get(&nrdy) / config.cpu_active + 1;
[248fc1a]570 count = average - atomic_get(&CPU->nrdy);
[f761f1eb]571
[444ec64]572 if (count <= 0)
[f761f1eb]573 goto satisfied;
574
575 /*
[4e33b6b]576 * Searching least priority queues on all CPU's first and most priority
577 * queues on all CPU's last.
[f761f1eb]578 */
[ea63704]579 for (j = RQ_COUNT - 1; j >= 0; j--) {
[4e33b6b]580 for (i = 0; i < config.cpu_active; i++) {
[f761f1eb]581 link_t *l;
582 runq_t *r;
583 cpu_t *cpu;
584
585 cpu = &cpus[(i + k) % config.cpu_active];
586
587 /*
588 * Not interested in ourselves.
[4e33b6b]589 * Doesn't require interrupt disabling for kcpulb has
590 * THREAD_FLAG_WIRED.
[f761f1eb]591 */
[43114c5]592 if (CPU == cpu)
[248fc1a]593 continue;
594 if (atomic_get(&cpu->nrdy) <= average)
595 continue;
[f761f1eb]596
[444ec64]597 ipl = interrupts_disable();
[18e0a6c]598 r = &cpu->rq[j];
[f761f1eb]599 spinlock_lock(&r->lock);
600 if (r->n == 0) {
601 spinlock_unlock(&r->lock);
[22f7769]602 interrupts_restore(ipl);
[f761f1eb]603 continue;
604 }
605
606 t = NULL;
607 l = r->rq_head.prev; /* search rq from the back */
608 while (l != &r->rq_head) {
609 t = list_get_instance(l, thread_t, rq_link);
610 /*
[4e33b6b]611 * We don't want to steal CPU-wired threads
612 * neither threads already stolen. The latter
613 * prevents threads from migrating between CPU's
614 * without ever being run. We don't want to
615 * steal threads whose FPU context is still in
616 * CPU.
[6a27d63]617 */
[f761f1eb]618 spinlock_lock(&t->lock);
[4e33b6b]619 if ((!(t->flags & (THREAD_FLAG_WIRED |
[ea63704]620 THREAD_FLAG_STOLEN))) &&
621 (!(t->fpu_context_engaged))) {
[f761f1eb]622 /*
623 * Remove t from r.
624 */
625 spinlock_unlock(&t->lock);
626
[248fc1a]627 atomic_dec(&cpu->nrdy);
[59e07c91]628 atomic_dec(&nrdy);
[f761f1eb]629
[76cec1e]630 r->n--;
[f761f1eb]631 list_remove(&t->rq_link);
632
633 break;
634 }
635 spinlock_unlock(&t->lock);
636 l = l->prev;
637 t = NULL;
638 }
639 spinlock_unlock(&r->lock);
640
641 if (t) {
642 /*
643 * Ready t on local CPU
644 */
645 spinlock_lock(&t->lock);
[f76fed4]646#ifdef KCPULB_VERBOSE
[1e9d0e3]647 printf("kcpulb%u: TID %" PRIu64 " -> cpu%u, "
648 "nrdy=%ld, avg=%ld\n", CPU->id, t->tid,
649 CPU->id, atomic_get(&CPU->nrdy),
[6f4495f5]650 atomic_get(&nrdy) / config.cpu_active);
[f76fed4]651#endif
[32fffef0]652 t->flags |= THREAD_FLAG_STOLEN;
[a0bb10ef]653 t->state = Entering;
[f761f1eb]654 spinlock_unlock(&t->lock);
655
656 thread_ready(t);
657
[22f7769]658 interrupts_restore(ipl);
[f761f1eb]659
660 if (--count == 0)
661 goto satisfied;
662
663 /*
[4e33b6b]664 * We are not satisfied yet, focus on another
665 * CPU next time.
[f761f1eb]666 */
667 k++;
668
669 continue;
670 }
[22f7769]671 interrupts_restore(ipl);
[f761f1eb]672 }
673 }
674
[248fc1a]675 if (atomic_get(&CPU->nrdy)) {
[f761f1eb]676 /*
677 * Be a little bit light-weight and let migrated threads run.
678 */
679 scheduler();
[3260ada]680 } else {
[f761f1eb]681 /*
682 * We failed to migrate a single thread.
[3260ada]683 * Give up this turn.
[f761f1eb]684 */
[3260ada]685 goto loop;
[f761f1eb]686 }
687
688 goto not_satisfied;
[76cec1e]689
[f761f1eb]690satisfied:
691 goto loop;
692}
693
[5f85c91]694#endif /* CONFIG_SMP */
[10e16a7]695
696
697/** Print information about threads & scheduler queues */
698void sched_print_list(void)
699{
700 ipl_t ipl;
[4184e76]701 unsigned int cpu, i;
[10e16a7]702 runq_t *r;
703 thread_t *t;
704 link_t *cur;
705
706 /* We are going to mess with scheduler structures,
707 * let's not be interrupted */
708 ipl = interrupts_disable();
[4184e76]709 for (cpu = 0; cpu < config.cpu_count; cpu++) {
[7d6ec87]710
[10e16a7]711 if (!cpus[cpu].active)
712 continue;
[7d6ec87]713
[10e16a7]714 spinlock_lock(&cpus[cpu].lock);
[98000fb]715 printf("cpu%u: address=%p, nrdy=%ld, needs_relink=%" PRIs "\n",
[6f4495f5]716 cpus[cpu].id, &cpus[cpu], atomic_get(&cpus[cpu].nrdy),
717 cpus[cpu].needs_relink);
[10e16a7]718
[4e33b6b]719 for (i = 0; i < RQ_COUNT; i++) {
[10e16a7]720 r = &cpus[cpu].rq[i];
721 spinlock_lock(&r->lock);
722 if (!r->n) {
723 spinlock_unlock(&r->lock);
724 continue;
725 }
[5b86d10]726 printf("\trq[%u]: ", i);
[4e33b6b]727 for (cur = r->rq_head.next; cur != &r->rq_head;
728 cur = cur->next) {
[10e16a7]729 t = list_get_instance(cur, thread_t, rq_link);
[5b86d10]730 printf("%" PRIu64 "(%s) ", t->tid,
[6f4495f5]731 thread_states[t->state]);
[10e16a7]732 }
733 printf("\n");
734 spinlock_unlock(&r->lock);
735 }
736 spinlock_unlock(&cpus[cpu].lock);
737 }
738
739 interrupts_restore(ipl);
740}
[b45c443]741
[cc73a8a1]742/** @}
[b45c443]743 */
Note: See TracBrowser for help on using the repository browser.