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