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

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

perfect CPU cycles accounting, cherry-picked and adopted from lp:~ersin/helenos/measure2

  • Property mode set to 100644
File size: 17.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
[cc73a8a1]29/** @addtogroup genericproc
[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
[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
[da1bafb]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
[da1bafb]91 if(THREAD == CPU->fpu_owner)
[b49f4ae]92 fpu_enable();
93 else
[da1bafb]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();
[da1bafb]125 irq_spinlock_lock(&CPU->lock, false);
126
[a3eeceb6]127 /* Save old context */
[da1bafb]128 if (CPU->fpu_owner != NULL) {
129 irq_spinlock_lock(&CPU->fpu_owner->lock, false);
[f76fed4]130 fpu_context_save(CPU->fpu_owner->saved_fpu_context);
[da1bafb]131
132 /* Don't prevent migration */
[6eabb6e6]133 CPU->fpu_owner->fpu_context_engaged = 0;
[da1bafb]134 irq_spinlock_unlock(&CPU->fpu_owner->lock, false);
[09c18f78]135 CPU->fpu_owner = NULL;
[b49f4ae]136 }
[da1bafb]137
138 irq_spinlock_lock(&THREAD->lock, false);
[7d6ec87]139 if (THREAD->fpu_context_exists) {
[f76fed4]140 fpu_context_restore(THREAD->saved_fpu_context);
[7d6ec87]141 } else {
[f76fed4]142 /* Allocate FPU context */
143 if (!THREAD->saved_fpu_context) {
144 /* Might sleep */
[da1bafb]145 irq_spinlock_unlock(&THREAD->lock, false);
146 irq_spinlock_unlock(&CPU->lock, false);
[4e33b6b]147 THREAD->saved_fpu_context =
[4184e76]148 (fpu_context_t *) slab_alloc(fpu_context_slab, 0);
[da1bafb]149
[09c18f78]150 /* We may have switched CPUs during slab_alloc */
[da1bafb]151 goto restart;
[f76fed4]152 }
153 fpu_init();
[6eabb6e6]154 THREAD->fpu_context_exists = 1;
[b49f4ae]155 }
[da1bafb]156
[6eabb6e6]157 CPU->fpu_owner = THREAD;
[b49f4ae]158 THREAD->fpu_context_engaged = 1;
[da1bafb]159 irq_spinlock_unlock(&THREAD->lock, false);
160
161 irq_spinlock_unlock(&CPU->lock, false);
[b49f4ae]162}
[da1bafb]163#endif /* CONFIG_FPU_LAZY */
[0ca6faa]164
[70527f1]165/** Initialize scheduler
166 *
167 * Initialize kernel scheduler.
168 *
169 */
[f761f1eb]170void scheduler_init(void)
171{
172}
173
[70527f1]174/** Get thread to be scheduled
175 *
176 * Get the optimal thread to be scheduled
[d1a184f]177 * according to thread accounting and scheduler
[70527f1]178 * policy.
179 *
180 * @return Thread to be scheduled.
181 *
182 */
[e507afa]183static thread_t *find_best_thread(void)
[f761f1eb]184{
[623ba26c]185 ASSERT(CPU != NULL);
[da1bafb]186
[f761f1eb]187loop:
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 */
[da1bafb]195 irq_spinlock_lock(&CPU->lock, false);
196 CPU->idle = true;
197 irq_spinlock_unlock(&CPU->lock, false);
198 interrupts_enable();
[d0c82c5]199
[da1bafb]200 /*
[328e0d3]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 */
[da1bafb]205 cpu_sleep();
206 interrupts_disable();
207 goto loop;
[f761f1eb]208 }
[d896525]209
[da1bafb]210 unsigned int i;
[ea63704]211 for (i = 0; i < RQ_COUNT; i++) {
[da1bafb]212 irq_spinlock_lock(&(CPU->rq[i].lock), false);
213 if (CPU->rq[i].n == 0) {
[f761f1eb]214 /*
215 * If this queue is empty, try a lower-priority queue.
216 */
[da1bafb]217 irq_spinlock_unlock(&(CPU->rq[i].lock), false);
[f761f1eb]218 continue;
219 }
[da1bafb]220
[248fc1a]221 atomic_dec(&CPU->nrdy);
[59e07c91]222 atomic_dec(&nrdy);
[da1bafb]223 CPU->rq[i].n--;
224
[f761f1eb]225 /*
226 * Take the first thread from the queue.
227 */
[da1bafb]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
[f761f1eb]238 /*
[32fffef0]239 * Clear the THREAD_FLAG_STOLEN flag so that t can be migrated
240 * when load balancing needs emerge.
[f761f1eb]241 */
[da1bafb]242 thread->flags &= ~THREAD_FLAG_STOLEN;
243 irq_spinlock_unlock(&thread->lock, false);
244
245 return thread;
[f761f1eb]246 }
[da1bafb]247
[f761f1eb]248 goto loop;
249}
250
[70527f1]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'
[abbc16e]257 * greater or equal start are moved to a higher-priority queue.
[70527f1]258 *
259 * @param start Threshold priority.
260 *
[f761f1eb]261 */
[e16e036a]262static void relink_rq(int start)
[f761f1eb]263{
264 link_t head;
[da1bafb]265
[f761f1eb]266 list_initialize(&head);
[da1bafb]267 irq_spinlock_lock(&CPU->lock, false);
268
[43114c5]269 if (CPU->needs_relink > NEEDS_RELINK_MAX) {
[da1bafb]270 int i;
[4e33b6b]271 for (i = start; i < RQ_COUNT - 1; i++) {
[da1bafb]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);
[f761f1eb]286 }
[da1bafb]287
[43114c5]288 CPU->needs_relink = 0;
[f761f1eb]289 }
[da1bafb]290
291 irq_spinlock_unlock(&CPU->lock, false);
[f761f1eb]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;
[da1bafb]304
[7d6ec87]305 ASSERT(CPU != NULL);
[da1bafb]306
[7d6ec87]307 ipl = interrupts_disable();
[da1bafb]308
[7d6ec87]309 if (atomic_get(&haltstate))
310 halt();
[8965838e]311
[7d6ec87]312 if (THREAD) {
[da1bafb]313 irq_spinlock_lock(&THREAD->lock, false);
[cce6acf]314
[1ba37fa]315 /* Update thread kernel accounting */
[a2a00e8]316 THREAD->kcycles += get_cycle() - THREAD->last_cycle;
[cce6acf]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
[da1bafb]329 irq_spinlock_unlock(&THREAD->lock, false);
[7d6ec87]330 interrupts_restore(THREAD->saved_context.ipl);
[8965838e]331
[7d6ec87]332 return;
333 }
[da1bafb]334
[7d6ec87]335 /*
[4e33b6b]336 * Interrupt priority level of preempted thread is recorded
337 * here to facilitate scheduler() invocations from
[da1bafb]338 * interrupts_disable()'d code (e.g. waitq_sleep_timeout()).
339 *
[7d6ec87]340 */
341 THREAD->saved_context.ipl = ipl;
342 }
[da1bafb]343
[7d6ec87]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.
[da1bafb]348 *
[7d6ec87]349 */
350 the_copy(THE, (the_t *) CPU->stack);
[da1bafb]351
[7d6ec87]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().
[da1bafb]363 *
[7d6ec87]364 */
365 context_save(&CPU->saved_context);
[32fffef0]366 context_set(&CPU->saved_context, FADDR(scheduler_separated_stack),
[6f4495f5]367 (uintptr_t) CPU->stack, CPU_STACK_SIZE);
[7d6ec87]368 context_restore(&CPU->saved_context);
[da1bafb]369
370 /* Not reached */
[7d6ec87]371}
[70527f1]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 */
[7d6ec87]380void scheduler_separated_stack(void)
[f761f1eb]381{
[31d8e10]382 DEADLOCK_PROBE_INIT(p_joinwq);
[481d4751]383 task_t *old_task = TASK;
384 as_t *old_as = AS;
[da1bafb]385
[d0c82c5]386 ASSERT((!THREAD) || (irq_spinlock_locked(&THREAD->lock)));
[623ba26c]387 ASSERT(CPU != NULL);
[8965838e]388
[481d4751]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.
[da1bafb]393 *
[481d4751]394 */
395 if (old_task)
396 task_hold(old_task);
[da1bafb]397
[481d4751]398 if (old_as)
399 as_hold(old_as);
[da1bafb]400
[43114c5]401 if (THREAD) {
[da1bafb]402 /* Must be run after the switch to scheduler stack */
[97f1691]403 after_thread_ran();
[da1bafb]404
[43114c5]405 switch (THREAD->state) {
[06e1e95]406 case Running:
[da1bafb]407 irq_spinlock_unlock(&THREAD->lock, false);
[76cec1e]408 thread_ready(THREAD);
409 break;
[da1bafb]410
[06e1e95]411 case Exiting:
[fe19611]412repeat:
[def5207]413 if (THREAD->detached) {
[da1bafb]414 thread_destroy(THREAD, false);
[fe19611]415 } else {
416 /*
[4e33b6b]417 * The thread structure is kept allocated until
418 * somebody calls thread_detach() on it.
[da1bafb]419 *
[fe19611]420 */
[da1bafb]421 if (!irq_spinlock_trylock(&THREAD->join_wq.lock)) {
[fe19611]422 /*
423 * Avoid deadlock.
[da1bafb]424 *
[fe19611]425 */
[da1bafb]426 irq_spinlock_unlock(&THREAD->lock, false);
[ea7890e7]427 delay(HZ);
[da1bafb]428 irq_spinlock_lock(&THREAD->lock, false);
[31d8e10]429 DEADLOCK_PROBE(p_joinwq,
430 DEADLOCK_THRESHOLD);
[fe19611]431 goto repeat;
432 }
[5c8ba05]433 _waitq_wakeup_unsafe(&THREAD->join_wq,
434 WAKEUP_FIRST);
[da1bafb]435 irq_spinlock_unlock(&THREAD->join_wq.lock, false);
[fe19611]436
[48d14222]437 THREAD->state = Lingering;
[da1bafb]438 irq_spinlock_unlock(&THREAD->lock, false);
[fe19611]439 }
[76cec1e]440 break;
[266294a9]441
[06e1e95]442 case Sleeping:
[76cec1e]443 /*
444 * Prefer the thread after it's woken up.
[da1bafb]445 *
[76cec1e]446 */
[22f7769]447 THREAD->priority = -1;
[da1bafb]448
[76cec1e]449 /*
[4e33b6b]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.
[da1bafb]453 *
[76cec1e]454 */
[da1bafb]455 irq_spinlock_unlock(&THREAD->sleep_queue->lock, false);
456
[76cec1e]457 /*
[4e33b6b]458 * Check for possible requests for out-of-context
459 * invocation.
[da1bafb]460 *
[76cec1e]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 }
[da1bafb]467
468 irq_spinlock_unlock(&THREAD->lock, false);
469
[76cec1e]470 break;
[da1bafb]471
[06e1e95]472 default:
[76cec1e]473 /*
474 * Entering state is unexpected.
[da1bafb]475 *
[76cec1e]476 */
[f651e80]477 panic("tid%" PRIu64 ": unexpected state %s.",
[1e9d0e3]478 THREAD->tid, thread_states[THREAD->state]);
[76cec1e]479 break;
[f761f1eb]480 }
[da1bafb]481
[43114c5]482 THREAD = NULL;
[f761f1eb]483 }
[da1bafb]484
[43114c5]485 THREAD = find_best_thread();
[f761f1eb]486
[da1bafb]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
[f761f1eb]493 /*
[4e33b6b]494 * If both the old and the new task are the same, lots of work is
495 * avoided.
[da1bafb]496 *
[f761f1eb]497 */
[43114c5]498 if (TASK != THREAD->task) {
[481d4751]499 as_t *new_as = THREAD->task->as;
[f761f1eb]500
501 /*
[4e33b6b]502 * Note that it is possible for two tasks to share one address
503 * space.
[da1bafb]504 (
[f761f1eb]505 */
[481d4751]506 if (old_as != new_as) {
[f761f1eb]507 /*
[20d50a1]508 * Both tasks and address spaces are different.
[f761f1eb]509 * Replace the old one with the new one.
[da1bafb]510 *
[f761f1eb]511 */
[481d4751]512 as_switch(old_as, new_as);
[f761f1eb]513 }
[da1bafb]514
[f76fed4]515 TASK = THREAD->task;
[39cea6a]516 before_task_runs();
[f761f1eb]517 }
[da1bafb]518
[481d4751]519 if (old_task)
520 task_release(old_task);
[da1bafb]521
[481d4751]522 if (old_as)
523 as_release(old_as);
524
[da1bafb]525 irq_spinlock_lock(&THREAD->lock, false);
[43114c5]526 THREAD->state = Running;
[da1bafb]527
[f76fed4]528#ifdef SCHEDULER_VERBOSE
[1e9d0e3]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));
[da1bafb]532#endif
533
[97f1691]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.
[da1bafb]541 *
[97f1691]542 */
543 before_thread_runs();
[da1bafb]544
[3e1607f]545 /*
[4e33b6b]546 * Copy the knowledge of CPU, TASK, THREAD and preemption counter to
547 * thread's stack.
[da1bafb]548 *
[3e1607f]549 */
[bcdd9aa]550 the_copy(THE, (the_t *) THREAD->kstack);
551
[43114c5]552 context_restore(&THREAD->saved_context);
[da1bafb]553
554 /* Not reached */
[f761f1eb]555}
556
[5f85c91]557#ifdef CONFIG_SMP
[70527f1]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 *
[f761f1eb]565 */
566void kcpulb(void *arg)
567{
[228666c]568 atomic_count_t average;
[da1bafb]569 atomic_count_t rdy;
570
[2cb5e64]571 /*
572 * Detach kcpulb as nobody will call thread_join_timeout() on it.
573 */
574 thread_detach(THREAD);
575
[f761f1eb]576loop:
577 /*
[3260ada]578 * Work in 1s intervals.
[f761f1eb]579 */
[3260ada]580 thread_sleep(1);
[da1bafb]581
[f761f1eb]582not_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.
[da1bafb]587 *
[f761f1eb]588 */
[444ec64]589 average = atomic_get(&nrdy) / config.cpu_active + 1;
[da1bafb]590 rdy = atomic_get(&CPU->nrdy);
591
592 if (average <= rdy)
[f761f1eb]593 goto satisfied;
[da1bafb]594
595 atomic_count_t count = average - rdy;
596
[f761f1eb]597 /*
[4e33b6b]598 * Searching least priority queues on all CPU's first and most priority
599 * queues on all CPU's last.
[da1bafb]600 *
[f761f1eb]601 */
[da1bafb]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
[f761f1eb]610 /*
611 * Not interested in ourselves.
[4e33b6b]612 * Doesn't require interrupt disabling for kcpulb has
613 * THREAD_FLAG_WIRED.
[da1bafb]614 *
[f761f1eb]615 */
[43114c5]616 if (CPU == cpu)
[248fc1a]617 continue;
[da1bafb]618
[248fc1a]619 if (atomic_get(&cpu->nrdy) <= average)
620 continue;
[da1bafb]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);
[f761f1eb]625 continue;
626 }
[da1bafb]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
[f761f1eb]636 /*
[4e33b6b]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.
[da1bafb]643 *
[6a27d63]644 */
[da1bafb]645 irq_spinlock_lock(&thread->lock, false);
646
647 if ((!(thread->flags & (THREAD_FLAG_WIRED | THREAD_FLAG_STOLEN)))
648 && (!(thread->fpu_context_engaged))) {
[f761f1eb]649 /*
[da1bafb]650 * Remove thread from ready queue.
[f761f1eb]651 */
[da1bafb]652 irq_spinlock_unlock(&thread->lock, false);
[f761f1eb]653
[248fc1a]654 atomic_dec(&cpu->nrdy);
[59e07c91]655 atomic_dec(&nrdy);
[da1bafb]656
657 cpu->rq[rq].n--;
658 list_remove(&thread->rq_link);
659
[f761f1eb]660 break;
661 }
[da1bafb]662
663 irq_spinlock_unlock(&thread->lock, false);
664
665 link = link->prev;
666 thread = NULL;
[f761f1eb]667 }
[da1bafb]668
669 if (thread) {
[f761f1eb]670 /*
[da1bafb]671 * Ready thread on local CPU
672 *
[f761f1eb]673 */
[da1bafb]674
675 irq_spinlock_pass(&(cpu->rq[rq].lock), &thread->lock);
676
[f76fed4]677#ifdef KCPULB_VERBOSE
[1e9d0e3]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),
[6f4495f5]681 atomic_get(&nrdy) / config.cpu_active);
[f76fed4]682#endif
[da1bafb]683
684 thread->flags |= THREAD_FLAG_STOLEN;
685 thread->state = Entering;
686
687 irq_spinlock_unlock(&thread->lock, true);
688 thread_ready(thread);
689
[f761f1eb]690 if (--count == 0)
691 goto satisfied;
[da1bafb]692
[f761f1eb]693 /*
[4e33b6b]694 * We are not satisfied yet, focus on another
695 * CPU next time.
[da1bafb]696 *
[f761f1eb]697 */
[da1bafb]698 acpu_bias++;
[f761f1eb]699
700 continue;
[da1bafb]701 } else
702 irq_spinlock_unlock(&(cpu->rq[rq].lock), true);
703
[f761f1eb]704 }
705 }
[da1bafb]706
[248fc1a]707 if (atomic_get(&CPU->nrdy)) {
[f761f1eb]708 /*
709 * Be a little bit light-weight and let migrated threads run.
[da1bafb]710 *
[f761f1eb]711 */
712 scheduler();
[3260ada]713 } else {
[f761f1eb]714 /*
715 * We failed to migrate a single thread.
[3260ada]716 * Give up this turn.
[da1bafb]717 *
[f761f1eb]718 */
[3260ada]719 goto loop;
[f761f1eb]720 }
[da1bafb]721
[f761f1eb]722 goto not_satisfied;
[da1bafb]723
[f761f1eb]724satisfied:
725 goto loop;
726}
[5f85c91]727#endif /* CONFIG_SMP */
[10e16a7]728
[da1bafb]729/** Print information about threads & scheduler queues
730 *
731 */
[10e16a7]732void sched_print_list(void)
733{
[da1bafb]734 size_t cpu;
[4184e76]735 for (cpu = 0; cpu < config.cpu_count; cpu++) {
[10e16a7]736 if (!cpus[cpu].active)
737 continue;
[da1bafb]738
739 irq_spinlock_lock(&cpus[cpu].lock, true);
740
[98000fb]741 printf("cpu%u: address=%p, nrdy=%ld, needs_relink=%" PRIs "\n",
[6f4495f5]742 cpus[cpu].id, &cpus[cpu], atomic_get(&cpus[cpu].nrdy),
743 cpus[cpu].needs_relink);
[10e16a7]744
[da1bafb]745 unsigned int i;
[4e33b6b]746 for (i = 0; i < RQ_COUNT; i++) {
[da1bafb]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);
[10e16a7]750 continue;
751 }
[da1bafb]752
[5b86d10]753 printf("\trq[%u]: ", i);
[da1bafb]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]);
[10e16a7]761 }
762 printf("\n");
[da1bafb]763
764 irq_spinlock_unlock(&(cpus[cpu].rq[i].lock), false);
[10e16a7]765 }
[da1bafb]766
767 irq_spinlock_unlock(&cpus[cpu].lock, true);
[10e16a7]768 }
769}
[b45c443]770
[cc73a8a1]771/** @}
[b45c443]772 */
Note: See TracBrowser for help on using the repository browser.