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

ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 111b9b9 was 111b9b9, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 2 years ago

Reimplement waitq using thread_wait/wakeup

This adds a few functions to the thread API which can be
summarized as "stop running until woken up by others".
The ordering and context-switching concerns are thus yeeted
to this abstraction and waitq only deals with maintaining
the queues. Overall, this makes the control flow in waitq
much easier to navigate.

  • Property mode set to 100644
File size: 16.7 KB
RevLine 
[f761f1eb]1/*
[481d4751]2 * Copyright (c) 2010 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
[174156fd]29/** @addtogroup kernel_generic_proc
[b45c443]30 * @{
31 */
32
[9179d0a]33/**
[b45c443]34 * @file
[da1bafb]35 * @brief Scheduler and load balancing.
[9179d0a]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
[63e27ef]41#include <assert.h>
[4621d23]42#include <atomic.h>
[f761f1eb]43#include <proc/scheduler.h>
44#include <proc/thread.h>
45#include <proc/task.h>
[32ff43e6]46#include <mm/frame.h>
47#include <mm/page.h>
[20d50a1]48#include <mm/as.h>
[b3f8fb7]49#include <time/timeout.h>
[fe19611]50#include <time/delay.h>
[32ff43e6]51#include <arch/asm.h>
52#include <arch/faddr.h>
[cce6acf]53#include <arch/cycle.h>
[23684b7]54#include <atomic.h>
[32ff43e6]55#include <synch/spinlock.h>
[f761f1eb]56#include <config.h>
57#include <context.h>
[b3f8fb7]58#include <fpu_context.h>
[b2e121a]59#include <halt.h>
[f761f1eb]60#include <arch.h>
[5c9a08b]61#include <adt/list.h>
[02a99d2]62#include <panic.h>
[32ff43e6]63#include <cpu.h>
[bab75df6]64#include <stdio.h>
[b2fa1204]65#include <log.h>
[df58e44]66#include <stacktrace.h>
[9c0a9b3]67
[7d6ec87]68static void scheduler_separated_stack(void);
69
[31e15be]70atomic_size_t nrdy; /**< Number of ready threads in the system. */
[f761f1eb]71
[39cea6a]72/** Carry out actions before new task runs. */
[4e7d3dd]73static void before_task_runs(void)
[39cea6a]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
[df58e44]82 * thread is passed control.
[70527f1]83 *
[a3eeceb6]84 * THREAD->lock is locked on entry
85 *
[70527f1]86 */
[4e7d3dd]87static void before_thread_runs(void)
[0ca6faa]88{
[b49f4ae]89 before_thread_runs_arch();
[a35b458]90
[f76fed4]91#ifdef CONFIG_FPU_LAZY
[df58e44]92 if (THREAD == CPU->fpu_owner)
[b49f4ae]93 fpu_enable();
94 else
[da1bafb]95 fpu_disable();
[e1326cf]96#elif defined CONFIG_FPU
[b49f4ae]97 fpu_enable();
98 if (THREAD->fpu_context_exists)
[0366d09d]99 fpu_context_restore(&THREAD->fpu_context);
[b49f4ae]100 else {
[f76fed4]101 fpu_init();
[6eef3c4]102 THREAD->fpu_context_exists = true;
[b49f4ae]103 }
[f76fed4]104#endif
[a35b458]105
[5b7a107]106#ifdef CONFIG_UDEBUG
[df58e44]107 if (THREAD->btrace) {
108 istate_t *istate = THREAD->udebug.uspace_state;
109 if (istate != NULL) {
110 printf("Thread %" PRIu64 " stack trace:\n", THREAD->tid);
111 stack_trace_istate(istate);
112 }
[a35b458]113
[df58e44]114 THREAD->btrace = false;
115 }
[5b7a107]116#endif
[0ca6faa]117}
118
[7d6ec87]119/** Take actions after THREAD had run.
[97f1691]120 *
121 * Perform actions that need to be
122 * taken after the running thread
[7d6ec87]123 * had been preempted by the scheduler.
[97f1691]124 *
125 * THREAD->lock is locked on entry
126 *
127 */
[4e7d3dd]128static void after_thread_ran(void)
[97f1691]129{
130 after_thread_ran_arch();
131}
132
[5f85c91]133#ifdef CONFIG_FPU_LAZY
[b49f4ae]134void scheduler_fpu_lazy_request(void)
135{
136 fpu_enable();
[da1bafb]137 irq_spinlock_lock(&CPU->lock, false);
[a35b458]138
[a3eeceb6]139 /* Save old context */
[da1bafb]140 if (CPU->fpu_owner != NULL) {
141 irq_spinlock_lock(&CPU->fpu_owner->lock, false);
[0366d09d]142 fpu_context_save(&CPU->fpu_owner->fpu_context);
[a35b458]143
[da1bafb]144 /* Don't prevent migration */
[6eef3c4]145 CPU->fpu_owner->fpu_context_engaged = false;
[da1bafb]146 irq_spinlock_unlock(&CPU->fpu_owner->lock, false);
[09c18f78]147 CPU->fpu_owner = NULL;
[b49f4ae]148 }
[a35b458]149
[da1bafb]150 irq_spinlock_lock(&THREAD->lock, false);
[7d6ec87]151 if (THREAD->fpu_context_exists) {
[0366d09d]152 fpu_context_restore(&THREAD->fpu_context);
[7d6ec87]153 } else {
[f76fed4]154 fpu_init();
[6eef3c4]155 THREAD->fpu_context_exists = true;
[b49f4ae]156 }
[a35b458]157
[6eabb6e6]158 CPU->fpu_owner = THREAD;
[6eef3c4]159 THREAD->fpu_context_engaged = true;
[da1bafb]160 irq_spinlock_unlock(&THREAD->lock, false);
[a35b458]161
[da1bafb]162 irq_spinlock_unlock(&CPU->lock, false);
[b49f4ae]163}
[da1bafb]164#endif /* CONFIG_FPU_LAZY */
[0ca6faa]165
[70527f1]166/** Initialize scheduler
167 *
168 * Initialize kernel scheduler.
169 *
170 */
[f761f1eb]171void scheduler_init(void)
172{
173}
174
[70527f1]175/** Get thread to be scheduled
176 *
177 * Get the optimal thread to be scheduled
[d1a184f]178 * according to thread accounting and scheduler
[70527f1]179 * policy.
180 *
181 * @return Thread to be scheduled.
182 *
183 */
[e507afa]184static thread_t *find_best_thread(void)
[f761f1eb]185{
[63e27ef]186 assert(CPU != NULL);
[a35b458]187
[f761f1eb]188loop:
[a35b458]189
[036e97c]190 if (atomic_load(&CPU->nrdy) == 0) {
[f761f1eb]191 /*
192 * For there was nothing to run, the CPU goes to sleep
193 * until a hardware interrupt or an IPI comes.
194 * This improves energy saving and hyperthreading.
195 */
[da1bafb]196 irq_spinlock_lock(&CPU->lock, false);
197 CPU->idle = true;
198 irq_spinlock_unlock(&CPU->lock, false);
199 interrupts_enable();
[a35b458]200
[da1bafb]201 /*
[328e0d3]202 * An interrupt might occur right now and wake up a thread.
203 * In such case, the CPU will continue to go to sleep
204 * even though there is a runnable thread.
205 */
[da1bafb]206 cpu_sleep();
207 interrupts_disable();
208 goto loop;
[f761f1eb]209 }
[181a746]210
[63e27ef]211 assert(!CPU->idle);
[a35b458]212
[da1bafb]213 unsigned int i;
[ea63704]214 for (i = 0; i < RQ_COUNT; i++) {
[da1bafb]215 irq_spinlock_lock(&(CPU->rq[i].lock), false);
216 if (CPU->rq[i].n == 0) {
[f761f1eb]217 /*
218 * If this queue is empty, try a lower-priority queue.
219 */
[da1bafb]220 irq_spinlock_unlock(&(CPU->rq[i].lock), false);
[f761f1eb]221 continue;
222 }
[a35b458]223
[248fc1a]224 atomic_dec(&CPU->nrdy);
[59e07c91]225 atomic_dec(&nrdy);
[da1bafb]226 CPU->rq[i].n--;
[a35b458]227
[f761f1eb]228 /*
229 * Take the first thread from the queue.
230 */
[55b77d9]231 thread_t *thread = list_get_instance(
232 list_first(&CPU->rq[i].rq), thread_t, rq_link);
[da1bafb]233 list_remove(&thread->rq_link);
[a35b458]234
[da1bafb]235 irq_spinlock_pass(&(CPU->rq[i].lock), &thread->lock);
[a35b458]236
[da1bafb]237 thread->cpu = CPU;
238 thread->priority = i; /* Correct rq index */
[a35b458]239
[aae2869]240 /* Time allocation in microseconds. */
241 uint64_t time_to_run = (i + 1) * 10000;
242
243 /* This is safe because interrupts are disabled. */
244 CPU->preempt_deadline = CPU->current_clock_tick + us2ticks(time_to_run);
245
[f761f1eb]246 /*
[6eef3c4]247 * Clear the stolen flag so that it can be migrated
[32fffef0]248 * when load balancing needs emerge.
[f761f1eb]249 */
[6eef3c4]250 thread->stolen = false;
[da1bafb]251 irq_spinlock_unlock(&thread->lock, false);
[a35b458]252
[da1bafb]253 return thread;
[f761f1eb]254 }
[a35b458]255
[f761f1eb]256 goto loop;
257}
258
[70527f1]259/** Prevent rq starvation
260 *
261 * Prevent low priority threads from starving in rq's.
262 *
263 * When the function decides to relink rq's, it reconnects
264 * respective pointers so that in result threads with 'pri'
[abbc16e]265 * greater or equal start are moved to a higher-priority queue.
[70527f1]266 *
267 * @param start Threshold priority.
268 *
[f761f1eb]269 */
[e16e036a]270static void relink_rq(int start)
[f761f1eb]271{
[011c79a]272 if (CPU->current_clock_tick < CPU->relink_deadline)
273 return;
274
275 CPU->relink_deadline = CPU->current_clock_tick + NEEDS_RELINK_MAX;
[a35b458]276
[011c79a]277 list_t list;
[55b77d9]278 list_initialize(&list);
[a35b458]279
[011c79a]280 irq_spinlock_lock(&CPU->lock, false);
[a35b458]281
[011c79a]282 for (int i = start; i < RQ_COUNT - 1; i++) {
283 /* Remember and empty rq[i + 1] */
[a35b458]284
[011c79a]285 irq_spinlock_lock(&CPU->rq[i + 1].lock, false);
286 list_concat(&list, &CPU->rq[i + 1].rq);
287 size_t n = CPU->rq[i + 1].n;
288 CPU->rq[i + 1].n = 0;
289 irq_spinlock_unlock(&CPU->rq[i + 1].lock, false);
[a35b458]290
[011c79a]291 /* Append rq[i + 1] to rq[i] */
[a35b458]292
[011c79a]293 irq_spinlock_lock(&CPU->rq[i].lock, false);
294 list_concat(&CPU->rq[i].rq, &list);
295 CPU->rq[i].n += n;
296 irq_spinlock_unlock(&CPU->rq[i].lock, false);
[f761f1eb]297 }
[a35b458]298
[da1bafb]299 irq_spinlock_unlock(&CPU->lock, false);
[f761f1eb]300}
301
[111b9b9]302void scheduler(void)
303{
304 ipl_t ipl = interrupts_disable();
305
306 if (atomic_load(&haltstate))
307 halt();
308
309 if (THREAD) {
310 irq_spinlock_lock(&THREAD->lock, false);
311 }
312
313 scheduler_locked(ipl);
314}
315
[7d6ec87]316/** The scheduler
317 *
318 * The thread scheduling procedure.
319 * Passes control directly to
320 * scheduler_separated_stack().
321 *
322 */
[111b9b9]323void scheduler_locked(ipl_t ipl)
[7d6ec87]324{
[63e27ef]325 assert(CPU != NULL);
[a35b458]326
[7d6ec87]327 if (THREAD) {
[1ba37fa]328 /* Update thread kernel accounting */
[a2a00e8]329 THREAD->kcycles += get_cycle() - THREAD->last_cycle;
[a35b458]330
[e1326cf]331#if (defined CONFIG_FPU) && (!defined CONFIG_FPU_LAZY)
[0366d09d]332 fpu_context_save(&THREAD->fpu_context);
[f76fed4]333#endif
[7d6ec87]334 if (!context_save(&THREAD->saved_context)) {
335 /*
336 * This is the place where threads leave scheduler();
337 */
[a35b458]338
[cce6acf]339 /* Save current CPU cycle */
340 THREAD->last_cycle = get_cycle();
[a35b458]341
[da1bafb]342 irq_spinlock_unlock(&THREAD->lock, false);
[c030818]343 interrupts_restore(THREAD->saved_ipl);
[a35b458]344
[7d6ec87]345 return;
346 }
[a35b458]347
[7d6ec87]348 /*
[4e33b6b]349 * Interrupt priority level of preempted thread is recorded
350 * here to facilitate scheduler() invocations from
[da1bafb]351 * interrupts_disable()'d code (e.g. waitq_sleep_timeout()).
352 *
[7d6ec87]353 */
[c030818]354 THREAD->saved_ipl = ipl;
[7d6ec87]355 }
[a35b458]356
[7d6ec87]357 /*
[a6e55886]358 * Through the 'CURRENT' structure, we keep track of THREAD, TASK, CPU, AS
359 * and preemption counter. At this point CURRENT could be coming either
[7d6ec87]360 * from THREAD's or CPU's stack.
[da1bafb]361 *
[7d6ec87]362 */
[a6e55886]363 current_copy(CURRENT, (current_t *) CPU->stack);
[a35b458]364
[7d6ec87]365 /*
366 * We may not keep the old stack.
367 * Reason: If we kept the old stack and got blocked, for instance, in
368 * find_best_thread(), the old thread could get rescheduled by another
369 * CPU and overwrite the part of its own stack that was also used by
370 * the scheduler on this CPU.
371 *
372 * Moreover, we have to bypass the compiler-generated POP sequence
373 * which is fooled by SP being set to the very top of the stack.
374 * Therefore the scheduler() function continues in
375 * scheduler_separated_stack().
[da1bafb]376 *
[7d6ec87]377 */
[daadfa6]378 context_t ctx;
379 context_save(&ctx);
380 context_set(&ctx, FADDR(scheduler_separated_stack),
[26aafe8]381 (uintptr_t) CPU->stack, STACK_SIZE);
[daadfa6]382 context_restore(&ctx);
[a35b458]383
[da1bafb]384 /* Not reached */
[7d6ec87]385}
[70527f1]386
387/** Scheduler stack switch wrapper
388 *
389 * Second part of the scheduler() function
390 * using new stack. Handling the actual context
391 * switch to a new thread.
392 *
393 */
[7d6ec87]394void scheduler_separated_stack(void)
[f761f1eb]395{
[481d4751]396 task_t *old_task = TASK;
397 as_t *old_as = AS;
[a35b458]398
[63e27ef]399 assert((!THREAD) || (irq_spinlock_locked(&THREAD->lock)));
400 assert(CPU != NULL);
401 assert(interrupts_disabled());
[a35b458]402
[481d4751]403 /*
404 * Hold the current task and the address space to prevent their
405 * possible destruction should thread_destroy() be called on this or any
406 * other processor while the scheduler is still using them.
407 */
408 if (old_task)
409 task_hold(old_task);
[a35b458]410
[481d4751]411 if (old_as)
412 as_hold(old_as);
[a35b458]413
[43114c5]414 if (THREAD) {
[da1bafb]415 /* Must be run after the switch to scheduler stack */
[97f1691]416 after_thread_ran();
[a35b458]417
[43114c5]418 switch (THREAD->state) {
[06e1e95]419 case Running:
[da1bafb]420 irq_spinlock_unlock(&THREAD->lock, false);
[76cec1e]421 thread_ready(THREAD);
422 break;
[a35b458]423
[06e1e95]424 case Exiting:
[1871118]425 irq_spinlock_unlock(&THREAD->lock, false);
[111b9b9]426 waitq_close(&THREAD->join_wq);
[1871118]427
428 /*
429 * Release the reference CPU has for the thread.
430 * If there are no other references (e.g. threads calling join),
431 * the thread structure is deallocated.
432 */
433 thread_put(THREAD);
[76cec1e]434 break;
[a35b458]435
[06e1e95]436 case Sleeping:
[76cec1e]437 /*
438 * Prefer the thread after it's woken up.
439 */
[22f7769]440 THREAD->priority = -1;
[da1bafb]441 irq_spinlock_unlock(&THREAD->lock, false);
[76cec1e]442 break;
[a35b458]443
[06e1e95]444 default:
[76cec1e]445 /*
446 * Entering state is unexpected.
447 */
[f651e80]448 panic("tid%" PRIu64 ": unexpected state %s.",
[1e9d0e3]449 THREAD->tid, thread_states[THREAD->state]);
[76cec1e]450 break;
[f761f1eb]451 }
[a35b458]452
[43114c5]453 THREAD = NULL;
[f761f1eb]454 }
[a35b458]455
[43114c5]456 THREAD = find_best_thread();
[a35b458]457
[da1bafb]458 irq_spinlock_lock(&THREAD->lock, false);
459 int priority = THREAD->priority;
460 irq_spinlock_unlock(&THREAD->lock, false);
[a35b458]461
[da1bafb]462 relink_rq(priority);
[a35b458]463
[f761f1eb]464 /*
[4e7d3dd]465 * If both the old and the new task are the same,
466 * lots of work is avoided.
[f761f1eb]467 */
[43114c5]468 if (TASK != THREAD->task) {
[481d4751]469 as_t *new_as = THREAD->task->as;
[a35b458]470
[f761f1eb]471 /*
[4e7d3dd]472 * Note that it is possible for two tasks
473 * to share one address space.
[f761f1eb]474 */
[481d4751]475 if (old_as != new_as) {
[f761f1eb]476 /*
[20d50a1]477 * Both tasks and address spaces are different.
[f761f1eb]478 * Replace the old one with the new one.
479 */
[481d4751]480 as_switch(old_as, new_as);
[f761f1eb]481 }
[a35b458]482
[f76fed4]483 TASK = THREAD->task;
[39cea6a]484 before_task_runs();
[f761f1eb]485 }
[a35b458]486
[481d4751]487 if (old_task)
488 task_release(old_task);
[a35b458]489
[481d4751]490 if (old_as)
491 as_release(old_as);
[a35b458]492
[da1bafb]493 irq_spinlock_lock(&THREAD->lock, false);
[43114c5]494 THREAD->state = Running;
[a35b458]495
[f76fed4]496#ifdef SCHEDULER_VERBOSE
[b2fa1204]497 log(LF_OTHER, LVL_DEBUG,
498 "cpu%u: tid %" PRIu64 " (priority=%d, ticks=%" PRIu64
[077842c]499 ", nrdy=%zu)", CPU->id, THREAD->tid, THREAD->priority,
[036e97c]500 THREAD->ticks, atomic_load(&CPU->nrdy));
[da1bafb]501#endif
[a35b458]502
[97f1691]503 /*
504 * Some architectures provide late kernel PA2KA(identity)
505 * mapping in a page fault handler. However, the page fault
506 * handler uses the kernel stack of the running thread and
507 * therefore cannot be used to map it. The kernel stack, if
508 * necessary, is to be mapped in before_thread_runs(). This
509 * function must be executed before the switch to the new stack.
510 */
511 before_thread_runs();
[a35b458]512
[3e1607f]513 /*
[4e33b6b]514 * Copy the knowledge of CPU, TASK, THREAD and preemption counter to
515 * thread's stack.
[3e1607f]516 */
[a6e55886]517 current_copy(CURRENT, (current_t *) THREAD->kstack);
[a35b458]518
[43114c5]519 context_restore(&THREAD->saved_context);
[a35b458]520
[da1bafb]521 /* Not reached */
[f761f1eb]522}
523
[5f85c91]524#ifdef CONFIG_SMP
[70527f1]525/** Load balancing thread
526 *
527 * SMP load balancing thread, supervising thread supplies
528 * for the CPU it's wired to.
529 *
530 * @param arg Generic thread argument (unused).
531 *
[f761f1eb]532 */
533void kcpulb(void *arg)
534{
[3cfe2b8]535 size_t average;
536 size_t rdy;
[a35b458]537
[f761f1eb]538loop:
539 /*
[3260ada]540 * Work in 1s intervals.
[f761f1eb]541 */
[3260ada]542 thread_sleep(1);
[a35b458]543
[f761f1eb]544not_satisfied:
545 /*
546 * Calculate the number of threads that will be migrated/stolen from
547 * other CPU's. Note that situation can have changed between two
548 * passes. Each time get the most up to date counts.
[da1bafb]549 *
[f761f1eb]550 */
[036e97c]551 average = atomic_load(&nrdy) / config.cpu_active + 1;
552 rdy = atomic_load(&CPU->nrdy);
[a35b458]553
[da1bafb]554 if (average <= rdy)
[f761f1eb]555 goto satisfied;
[a35b458]556
[3cfe2b8]557 size_t count = average - rdy;
[a35b458]558
[f761f1eb]559 /*
[4e33b6b]560 * Searching least priority queues on all CPU's first and most priority
561 * queues on all CPU's last.
[f761f1eb]562 */
[da1bafb]563 size_t acpu;
564 size_t acpu_bias = 0;
565 int rq;
[a35b458]566
[da1bafb]567 for (rq = RQ_COUNT - 1; rq >= 0; rq--) {
568 for (acpu = 0; acpu < config.cpu_active; acpu++) {
569 cpu_t *cpu = &cpus[(acpu + acpu_bias) % config.cpu_active];
[a35b458]570
[f761f1eb]571 /*
572 * Not interested in ourselves.
[4e33b6b]573 * Doesn't require interrupt disabling for kcpulb has
574 * THREAD_FLAG_WIRED.
[da1bafb]575 *
[f761f1eb]576 */
[43114c5]577 if (CPU == cpu)
[248fc1a]578 continue;
[a35b458]579
[036e97c]580 if (atomic_load(&cpu->nrdy) <= average)
[248fc1a]581 continue;
[a35b458]582
[da1bafb]583 irq_spinlock_lock(&(cpu->rq[rq].lock), true);
584 if (cpu->rq[rq].n == 0) {
585 irq_spinlock_unlock(&(cpu->rq[rq].lock), true);
[f761f1eb]586 continue;
587 }
[a35b458]588
[da1bafb]589 thread_t *thread = NULL;
[a35b458]590
[da1bafb]591 /* Search rq from the back */
[583c2a3]592 link_t *link = list_last(&cpu->rq[rq].rq);
[a35b458]593
[583c2a3]594 while (link != NULL) {
[43ac0cc]595 thread = (thread_t *) list_get_instance(link,
596 thread_t, rq_link);
[a35b458]597
[f761f1eb]598 /*
[43ac0cc]599 * Do not steal CPU-wired threads, threads
600 * already stolen, threads for which migration
601 * was temporarily disabled or threads whose
602 * FPU context is still in the CPU.
[6a27d63]603 */
[da1bafb]604 irq_spinlock_lock(&thread->lock, false);
[a35b458]605
[6eef3c4]606 if ((!thread->wired) && (!thread->stolen) &&
607 (!thread->nomigrate) &&
608 (!thread->fpu_context_engaged)) {
[f761f1eb]609 /*
[da1bafb]610 * Remove thread from ready queue.
[f761f1eb]611 */
[43ac0cc]612 irq_spinlock_unlock(&thread->lock,
613 false);
[a35b458]614
[248fc1a]615 atomic_dec(&cpu->nrdy);
[59e07c91]616 atomic_dec(&nrdy);
[a35b458]617
[da1bafb]618 cpu->rq[rq].n--;
619 list_remove(&thread->rq_link);
[a35b458]620
[f761f1eb]621 break;
622 }
[a35b458]623
[da1bafb]624 irq_spinlock_unlock(&thread->lock, false);
[a35b458]625
[583c2a3]626 link = list_prev(link, &cpu->rq[rq].rq);
[da1bafb]627 thread = NULL;
[f761f1eb]628 }
[a35b458]629
[da1bafb]630 if (thread) {
[f761f1eb]631 /*
[da1bafb]632 * Ready thread on local CPU
[f761f1eb]633 */
[a35b458]634
[43ac0cc]635 irq_spinlock_pass(&(cpu->rq[rq].lock),
636 &thread->lock);
[a35b458]637
[f76fed4]638#ifdef KCPULB_VERBOSE
[b2fa1204]639 log(LF_OTHER, LVL_DEBUG,
640 "kcpulb%u: TID %" PRIu64 " -> cpu%u, "
[c742954]641 "nrdy=%ld, avg=%ld", CPU->id, thread->tid,
[036e97c]642 CPU->id, atomic_load(&CPU->nrdy),
643 atomic_load(&nrdy) / config.cpu_active);
[f76fed4]644#endif
[a35b458]645
[6eef3c4]646 thread->stolen = true;
[da1bafb]647 thread->state = Entering;
[a35b458]648
[da1bafb]649 irq_spinlock_unlock(&thread->lock, true);
650 thread_ready(thread);
[a35b458]651
[f761f1eb]652 if (--count == 0)
653 goto satisfied;
[a35b458]654
[f761f1eb]655 /*
[4e33b6b]656 * We are not satisfied yet, focus on another
657 * CPU next time.
[da1bafb]658 *
[f761f1eb]659 */
[da1bafb]660 acpu_bias++;
[a35b458]661
[f761f1eb]662 continue;
[da1bafb]663 } else
664 irq_spinlock_unlock(&(cpu->rq[rq].lock), true);
[a35b458]665
[f761f1eb]666 }
667 }
[a35b458]668
[036e97c]669 if (atomic_load(&CPU->nrdy)) {
[f761f1eb]670 /*
671 * Be a little bit light-weight and let migrated threads run.
[da1bafb]672 *
[f761f1eb]673 */
674 scheduler();
[3260ada]675 } else {
[f761f1eb]676 /*
677 * We failed to migrate a single thread.
[3260ada]678 * Give up this turn.
[da1bafb]679 *
[f761f1eb]680 */
[3260ada]681 goto loop;
[f761f1eb]682 }
[a35b458]683
[f761f1eb]684 goto not_satisfied;
[a35b458]685
[f761f1eb]686satisfied:
687 goto loop;
688}
[5f85c91]689#endif /* CONFIG_SMP */
[10e16a7]690
[da1bafb]691/** Print information about threads & scheduler queues
692 *
693 */
[10e16a7]694void sched_print_list(void)
695{
[da1bafb]696 size_t cpu;
[4184e76]697 for (cpu = 0; cpu < config.cpu_count; cpu++) {
[10e16a7]698 if (!cpus[cpu].active)
699 continue;
[a35b458]700
[da1bafb]701 irq_spinlock_lock(&cpus[cpu].lock, true);
[a35b458]702
[011c79a]703 /* Technically a data race, but we don't really care in this case. */
704 int needs_relink = cpus[cpu].relink_deadline - cpus[cpu].current_clock_tick;
705
706 printf("cpu%u: address=%p, nrdy=%zu, needs_relink=%d\n",
[036e97c]707 cpus[cpu].id, &cpus[cpu], atomic_load(&cpus[cpu].nrdy),
[011c79a]708 needs_relink);
[a35b458]709
[da1bafb]710 unsigned int i;
[4e33b6b]711 for (i = 0; i < RQ_COUNT; i++) {
[da1bafb]712 irq_spinlock_lock(&(cpus[cpu].rq[i].lock), false);
713 if (cpus[cpu].rq[i].n == 0) {
714 irq_spinlock_unlock(&(cpus[cpu].rq[i].lock), false);
[10e16a7]715 continue;
716 }
[a35b458]717
[5b86d10]718 printf("\trq[%u]: ", i);
[feeac0d]719 list_foreach(cpus[cpu].rq[i].rq, rq_link, thread_t,
720 thread) {
[da1bafb]721 printf("%" PRIu64 "(%s) ", thread->tid,
722 thread_states[thread->state]);
[10e16a7]723 }
724 printf("\n");
[a35b458]725
[da1bafb]726 irq_spinlock_unlock(&(cpus[cpu].rq[i].lock), false);
[10e16a7]727 }
[a35b458]728
[da1bafb]729 irq_spinlock_unlock(&cpus[cpu].lock, true);
[10e16a7]730 }
731}
[b45c443]732
[cc73a8a1]733/** @}
[b45c443]734 */
Note: See TracBrowser for help on using the repository browser.