[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] | 68 | static void scheduler_separated_stack(void);
|
---|
| 69 |
|
---|
[da1bafb] | 70 | atomic_t nrdy; /**< Number of ready threads in the system. */
|
---|
[f761f1eb] | 71 |
|
---|
[39cea6a] | 72 | /** Carry out actions before new task runs. */
|
---|
[4e7d3dd] | 73 | static 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] | 87 | static 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)
|
---|
[f76fed4] | 99 | fpu_context_restore(THREAD->saved_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] | 128 | static void after_thread_ran(void)
|
---|
[97f1691] | 129 | {
|
---|
| 130 | after_thread_ran_arch();
|
---|
| 131 | }
|
---|
| 132 |
|
---|
[5f85c91] | 133 | #ifdef CONFIG_FPU_LAZY
|
---|
[b49f4ae] | 134 | void 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);
|
---|
[f76fed4] | 142 | fpu_context_save(CPU->fpu_owner->saved_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);
|
---|
[09c18f7] | 147 | CPU->fpu_owner = NULL;
|
---|
[b49f4ae] | 148 | }
|
---|
[a35b458] | 149 |
|
---|
[da1bafb] | 150 | irq_spinlock_lock(&THREAD->lock, false);
|
---|
[7d6ec87] | 151 | if (THREAD->fpu_context_exists) {
|
---|
[f76fed4] | 152 | fpu_context_restore(THREAD->saved_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] | 171 | void 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] | 184 | static thread_t *find_best_thread(void)
|
---|
[f761f1eb] | 185 | {
|
---|
[63e27ef] | 186 | assert(CPU != NULL);
|
---|
[a35b458] | 187 |
|
---|
[f761f1eb] | 188 | loop:
|
---|
[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->ticks = us2ticks((i + 1) * 10000);
|
---|
| 239 | thread->priority = i; /* Correct rq index */
|
---|
[a35b458] | 240 |
|
---|
[f761f1eb] | 241 | /*
|
---|
[6eef3c4] | 242 | * Clear the stolen flag so that it can be migrated
|
---|
[32fffef0] | 243 | * when load balancing needs emerge.
|
---|
[f761f1eb] | 244 | */
|
---|
[6eef3c4] | 245 | thread->stolen = false;
|
---|
[da1bafb] | 246 | irq_spinlock_unlock(&thread->lock, false);
|
---|
[a35b458] | 247 |
|
---|
[da1bafb] | 248 | return thread;
|
---|
[f761f1eb] | 249 | }
|
---|
[a35b458] | 250 |
|
---|
[f761f1eb] | 251 | goto loop;
|
---|
| 252 | }
|
---|
| 253 |
|
---|
[70527f1] | 254 | /** Prevent rq starvation
|
---|
| 255 | *
|
---|
| 256 | * Prevent low priority threads from starving in rq's.
|
---|
| 257 | *
|
---|
| 258 | * When the function decides to relink rq's, it reconnects
|
---|
| 259 | * respective pointers so that in result threads with 'pri'
|
---|
[abbc16e] | 260 | * greater or equal start are moved to a higher-priority queue.
|
---|
[70527f1] | 261 | *
|
---|
| 262 | * @param start Threshold priority.
|
---|
| 263 | *
|
---|
[f761f1eb] | 264 | */
|
---|
[e16e036a] | 265 | static void relink_rq(int start)
|
---|
[f761f1eb] | 266 | {
|
---|
[55b77d9] | 267 | list_t list;
|
---|
[a35b458] | 268 |
|
---|
[55b77d9] | 269 | list_initialize(&list);
|
---|
[da1bafb] | 270 | irq_spinlock_lock(&CPU->lock, false);
|
---|
[a35b458] | 271 |
|
---|
[43114c5] | 272 | if (CPU->needs_relink > NEEDS_RELINK_MAX) {
|
---|
[da1bafb] | 273 | int i;
|
---|
[4e33b6b] | 274 | for (i = start; i < RQ_COUNT - 1; i++) {
|
---|
[da1bafb] | 275 | /* Remember and empty rq[i + 1] */
|
---|
[a35b458] | 276 |
|
---|
[da1bafb] | 277 | irq_spinlock_lock(&CPU->rq[i + 1].lock, false);
|
---|
[55b77d9] | 278 | list_concat(&list, &CPU->rq[i + 1].rq);
|
---|
[da1bafb] | 279 | size_t n = CPU->rq[i + 1].n;
|
---|
| 280 | CPU->rq[i + 1].n = 0;
|
---|
| 281 | irq_spinlock_unlock(&CPU->rq[i + 1].lock, false);
|
---|
[a35b458] | 282 |
|
---|
[da1bafb] | 283 | /* Append rq[i + 1] to rq[i] */
|
---|
[a35b458] | 284 |
|
---|
[da1bafb] | 285 | irq_spinlock_lock(&CPU->rq[i].lock, false);
|
---|
[55b77d9] | 286 | list_concat(&CPU->rq[i].rq, &list);
|
---|
[da1bafb] | 287 | CPU->rq[i].n += n;
|
---|
| 288 | irq_spinlock_unlock(&CPU->rq[i].lock, false);
|
---|
[f761f1eb] | 289 | }
|
---|
[a35b458] | 290 |
|
---|
[43114c5] | 291 | CPU->needs_relink = 0;
|
---|
[f761f1eb] | 292 | }
|
---|
[a35b458] | 293 |
|
---|
[da1bafb] | 294 | irq_spinlock_unlock(&CPU->lock, false);
|
---|
[f761f1eb] | 295 | }
|
---|
| 296 |
|
---|
[7d6ec87] | 297 | /** The scheduler
|
---|
| 298 | *
|
---|
| 299 | * The thread scheduling procedure.
|
---|
| 300 | * Passes control directly to
|
---|
| 301 | * scheduler_separated_stack().
|
---|
| 302 | *
|
---|
| 303 | */
|
---|
| 304 | void scheduler(void)
|
---|
| 305 | {
|
---|
| 306 | volatile ipl_t ipl;
|
---|
[a35b458] | 307 |
|
---|
[63e27ef] | 308 | assert(CPU != NULL);
|
---|
[a35b458] | 309 |
|
---|
[7d6ec87] | 310 | ipl = interrupts_disable();
|
---|
[a35b458] | 311 |
|
---|
[036e97c] | 312 | if (atomic_load(&haltstate))
|
---|
[7d6ec87] | 313 | halt();
|
---|
[a35b458] | 314 |
|
---|
[7d6ec87] | 315 | if (THREAD) {
|
---|
[da1bafb] | 316 | irq_spinlock_lock(&THREAD->lock, false);
|
---|
[a35b458] | 317 |
|
---|
[1ba37fa] | 318 | /* Update thread kernel accounting */
|
---|
[a2a00e8] | 319 | THREAD->kcycles += get_cycle() - THREAD->last_cycle;
|
---|
[a35b458] | 320 |
|
---|
[e1326cf] | 321 | #if (defined CONFIG_FPU) && (!defined CONFIG_FPU_LAZY)
|
---|
[f76fed4] | 322 | fpu_context_save(THREAD->saved_fpu_context);
|
---|
| 323 | #endif
|
---|
[7d6ec87] | 324 | if (!context_save(&THREAD->saved_context)) {
|
---|
| 325 | /*
|
---|
| 326 | * This is the place where threads leave scheduler();
|
---|
| 327 | */
|
---|
[a35b458] | 328 |
|
---|
[cce6acf] | 329 | /* Save current CPU cycle */
|
---|
| 330 | THREAD->last_cycle = get_cycle();
|
---|
[a35b458] | 331 |
|
---|
[da1bafb] | 332 | irq_spinlock_unlock(&THREAD->lock, false);
|
---|
[7d6ec87] | 333 | interrupts_restore(THREAD->saved_context.ipl);
|
---|
[a35b458] | 334 |
|
---|
[7d6ec87] | 335 | return;
|
---|
| 336 | }
|
---|
[a35b458] | 337 |
|
---|
[7d6ec87] | 338 | /*
|
---|
[4e33b6b] | 339 | * Interrupt priority level of preempted thread is recorded
|
---|
| 340 | * here to facilitate scheduler() invocations from
|
---|
[da1bafb] | 341 | * interrupts_disable()'d code (e.g. waitq_sleep_timeout()).
|
---|
| 342 | *
|
---|
[7d6ec87] | 343 | */
|
---|
| 344 | THREAD->saved_context.ipl = ipl;
|
---|
| 345 | }
|
---|
[a35b458] | 346 |
|
---|
[7d6ec87] | 347 | /*
|
---|
[a6e55886] | 348 | * Through the 'CURRENT' structure, we keep track of THREAD, TASK, CPU, AS
|
---|
| 349 | * and preemption counter. At this point CURRENT could be coming either
|
---|
[7d6ec87] | 350 | * from THREAD's or CPU's stack.
|
---|
[da1bafb] | 351 | *
|
---|
[7d6ec87] | 352 | */
|
---|
[a6e55886] | 353 | current_copy(CURRENT, (current_t *) CPU->stack);
|
---|
[a35b458] | 354 |
|
---|
[7d6ec87] | 355 | /*
|
---|
| 356 | * We may not keep the old stack.
|
---|
| 357 | * Reason: If we kept the old stack and got blocked, for instance, in
|
---|
| 358 | * find_best_thread(), the old thread could get rescheduled by another
|
---|
| 359 | * CPU and overwrite the part of its own stack that was also used by
|
---|
| 360 | * the scheduler on this CPU.
|
---|
| 361 | *
|
---|
| 362 | * Moreover, we have to bypass the compiler-generated POP sequence
|
---|
| 363 | * which is fooled by SP being set to the very top of the stack.
|
---|
| 364 | * Therefore the scheduler() function continues in
|
---|
| 365 | * scheduler_separated_stack().
|
---|
[da1bafb] | 366 | *
|
---|
[7d6ec87] | 367 | */
|
---|
| 368 | context_save(&CPU->saved_context);
|
---|
[32fffef0] | 369 | context_set(&CPU->saved_context, FADDR(scheduler_separated_stack),
|
---|
[26aafe8] | 370 | (uintptr_t) CPU->stack, STACK_SIZE);
|
---|
[7d6ec87] | 371 | context_restore(&CPU->saved_context);
|
---|
[a35b458] | 372 |
|
---|
[da1bafb] | 373 | /* Not reached */
|
---|
[7d6ec87] | 374 | }
|
---|
[70527f1] | 375 |
|
---|
| 376 | /** Scheduler stack switch wrapper
|
---|
| 377 | *
|
---|
| 378 | * Second part of the scheduler() function
|
---|
| 379 | * using new stack. Handling the actual context
|
---|
| 380 | * switch to a new thread.
|
---|
| 381 | *
|
---|
| 382 | */
|
---|
[7d6ec87] | 383 | void scheduler_separated_stack(void)
|
---|
[f761f1eb] | 384 | {
|
---|
[31d8e10] | 385 | DEADLOCK_PROBE_INIT(p_joinwq);
|
---|
[481d4751] | 386 | task_t *old_task = TASK;
|
---|
| 387 | as_t *old_as = AS;
|
---|
[a35b458] | 388 |
|
---|
[63e27ef] | 389 | assert((!THREAD) || (irq_spinlock_locked(&THREAD->lock)));
|
---|
| 390 | assert(CPU != NULL);
|
---|
| 391 | assert(interrupts_disabled());
|
---|
[a35b458] | 392 |
|
---|
[481d4751] | 393 | /*
|
---|
| 394 | * Hold the current task and the address space to prevent their
|
---|
| 395 | * possible destruction should thread_destroy() be called on this or any
|
---|
| 396 | * other processor while the scheduler is still using them.
|
---|
| 397 | */
|
---|
| 398 | if (old_task)
|
---|
| 399 | task_hold(old_task);
|
---|
[a35b458] | 400 |
|
---|
[481d4751] | 401 | if (old_as)
|
---|
| 402 | as_hold(old_as);
|
---|
[a35b458] | 403 |
|
---|
[43114c5] | 404 | if (THREAD) {
|
---|
[da1bafb] | 405 | /* Must be run after the switch to scheduler stack */
|
---|
[97f1691] | 406 | after_thread_ran();
|
---|
[a35b458] | 407 |
|
---|
[43114c5] | 408 | switch (THREAD->state) {
|
---|
[06e1e95] | 409 | case Running:
|
---|
[da1bafb] | 410 | irq_spinlock_unlock(&THREAD->lock, false);
|
---|
[76cec1e] | 411 | thread_ready(THREAD);
|
---|
| 412 | break;
|
---|
[a35b458] | 413 |
|
---|
[06e1e95] | 414 | case Exiting:
|
---|
[18b6a88] | 415 | repeat:
|
---|
[def5207] | 416 | if (THREAD->detached) {
|
---|
[da1bafb] | 417 | thread_destroy(THREAD, false);
|
---|
[fe19611] | 418 | } else {
|
---|
| 419 | /*
|
---|
[4e33b6b] | 420 | * The thread structure is kept allocated until
|
---|
| 421 | * somebody calls thread_detach() on it.
|
---|
[fe19611] | 422 | */
|
---|
[da1bafb] | 423 | if (!irq_spinlock_trylock(&THREAD->join_wq.lock)) {
|
---|
[fe19611] | 424 | /*
|
---|
| 425 | * Avoid deadlock.
|
---|
| 426 | */
|
---|
[da1bafb] | 427 | irq_spinlock_unlock(&THREAD->lock, false);
|
---|
[ea7890e7] | 428 | delay(HZ);
|
---|
[da1bafb] | 429 | irq_spinlock_lock(&THREAD->lock, false);
|
---|
[31d8e10] | 430 | DEADLOCK_PROBE(p_joinwq,
|
---|
| 431 | DEADLOCK_THRESHOLD);
|
---|
[fe19611] | 432 | goto repeat;
|
---|
| 433 | }
|
---|
[5c8ba05] | 434 | _waitq_wakeup_unsafe(&THREAD->join_wq,
|
---|
| 435 | WAKEUP_FIRST);
|
---|
[da1bafb] | 436 | irq_spinlock_unlock(&THREAD->join_wq.lock, false);
|
---|
[a35b458] | 437 |
|
---|
[48d14222] | 438 | THREAD->state = Lingering;
|
---|
[da1bafb] | 439 | irq_spinlock_unlock(&THREAD->lock, false);
|
---|
[fe19611] | 440 | }
|
---|
[76cec1e] | 441 | break;
|
---|
[a35b458] | 442 |
|
---|
[06e1e95] | 443 | case Sleeping:
|
---|
[76cec1e] | 444 | /*
|
---|
| 445 | * Prefer the thread after it's woken up.
|
---|
| 446 | */
|
---|
[22f7769] | 447 | THREAD->priority = -1;
|
---|
[a35b458] | 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.
|
---|
[76cec1e] | 453 | */
|
---|
[da1bafb] | 454 | irq_spinlock_unlock(&THREAD->sleep_queue->lock, false);
|
---|
[a35b458] | 455 |
|
---|
[da1bafb] | 456 | irq_spinlock_unlock(&THREAD->lock, false);
|
---|
[76cec1e] | 457 | break;
|
---|
[a35b458] | 458 |
|
---|
[06e1e95] | 459 | default:
|
---|
[76cec1e] | 460 | /*
|
---|
| 461 | * Entering state is unexpected.
|
---|
| 462 | */
|
---|
[f651e80] | 463 | panic("tid%" PRIu64 ": unexpected state %s.",
|
---|
[1e9d0e3] | 464 | THREAD->tid, thread_states[THREAD->state]);
|
---|
[76cec1e] | 465 | break;
|
---|
[f761f1eb] | 466 | }
|
---|
[a35b458] | 467 |
|
---|
[43114c5] | 468 | THREAD = NULL;
|
---|
[f761f1eb] | 469 | }
|
---|
[a35b458] | 470 |
|
---|
[43114c5] | 471 | THREAD = find_best_thread();
|
---|
[a35b458] | 472 |
|
---|
[da1bafb] | 473 | irq_spinlock_lock(&THREAD->lock, false);
|
---|
| 474 | int priority = THREAD->priority;
|
---|
| 475 | irq_spinlock_unlock(&THREAD->lock, false);
|
---|
[a35b458] | 476 |
|
---|
[da1bafb] | 477 | relink_rq(priority);
|
---|
[a35b458] | 478 |
|
---|
[f761f1eb] | 479 | /*
|
---|
[4e7d3dd] | 480 | * If both the old and the new task are the same,
|
---|
| 481 | * lots of work is avoided.
|
---|
[f761f1eb] | 482 | */
|
---|
[43114c5] | 483 | if (TASK != THREAD->task) {
|
---|
[481d4751] | 484 | as_t *new_as = THREAD->task->as;
|
---|
[a35b458] | 485 |
|
---|
[f761f1eb] | 486 | /*
|
---|
[4e7d3dd] | 487 | * Note that it is possible for two tasks
|
---|
| 488 | * to share one address space.
|
---|
[f761f1eb] | 489 | */
|
---|
[481d4751] | 490 | if (old_as != new_as) {
|
---|
[f761f1eb] | 491 | /*
|
---|
[20d50a1] | 492 | * Both tasks and address spaces are different.
|
---|
[f761f1eb] | 493 | * Replace the old one with the new one.
|
---|
| 494 | */
|
---|
[481d4751] | 495 | as_switch(old_as, new_as);
|
---|
[f761f1eb] | 496 | }
|
---|
[a35b458] | 497 |
|
---|
[f76fed4] | 498 | TASK = THREAD->task;
|
---|
[39cea6a] | 499 | before_task_runs();
|
---|
[f761f1eb] | 500 | }
|
---|
[a35b458] | 501 |
|
---|
[481d4751] | 502 | if (old_task)
|
---|
| 503 | task_release(old_task);
|
---|
[a35b458] | 504 |
|
---|
[481d4751] | 505 | if (old_as)
|
---|
| 506 | as_release(old_as);
|
---|
[a35b458] | 507 |
|
---|
[da1bafb] | 508 | irq_spinlock_lock(&THREAD->lock, false);
|
---|
[43114c5] | 509 | THREAD->state = Running;
|
---|
[a35b458] | 510 |
|
---|
[f76fed4] | 511 | #ifdef SCHEDULER_VERBOSE
|
---|
[b2fa1204] | 512 | log(LF_OTHER, LVL_DEBUG,
|
---|
| 513 | "cpu%u: tid %" PRIu64 " (priority=%d, ticks=%" PRIu64
|
---|
[077842c] | 514 | ", nrdy=%zu)", CPU->id, THREAD->tid, THREAD->priority,
|
---|
[036e97c] | 515 | THREAD->ticks, atomic_load(&CPU->nrdy));
|
---|
[da1bafb] | 516 | #endif
|
---|
[a35b458] | 517 |
|
---|
[97f1691] | 518 | /*
|
---|
| 519 | * Some architectures provide late kernel PA2KA(identity)
|
---|
| 520 | * mapping in a page fault handler. However, the page fault
|
---|
| 521 | * handler uses the kernel stack of the running thread and
|
---|
| 522 | * therefore cannot be used to map it. The kernel stack, if
|
---|
| 523 | * necessary, is to be mapped in before_thread_runs(). This
|
---|
| 524 | * function must be executed before the switch to the new stack.
|
---|
| 525 | */
|
---|
| 526 | before_thread_runs();
|
---|
[a35b458] | 527 |
|
---|
[3e1607f] | 528 | /*
|
---|
[4e33b6b] | 529 | * Copy the knowledge of CPU, TASK, THREAD and preemption counter to
|
---|
| 530 | * thread's stack.
|
---|
[3e1607f] | 531 | */
|
---|
[a6e55886] | 532 | current_copy(CURRENT, (current_t *) THREAD->kstack);
|
---|
[a35b458] | 533 |
|
---|
[43114c5] | 534 | context_restore(&THREAD->saved_context);
|
---|
[a35b458] | 535 |
|
---|
[da1bafb] | 536 | /* Not reached */
|
---|
[f761f1eb] | 537 | }
|
---|
| 538 |
|
---|
[5f85c91] | 539 | #ifdef CONFIG_SMP
|
---|
[70527f1] | 540 | /** Load balancing thread
|
---|
| 541 | *
|
---|
| 542 | * SMP load balancing thread, supervising thread supplies
|
---|
| 543 | * for the CPU it's wired to.
|
---|
| 544 | *
|
---|
| 545 | * @param arg Generic thread argument (unused).
|
---|
| 546 | *
|
---|
[f761f1eb] | 547 | */
|
---|
| 548 | void kcpulb(void *arg)
|
---|
| 549 | {
|
---|
[3cfe2b8] | 550 | size_t average;
|
---|
| 551 | size_t rdy;
|
---|
[a35b458] | 552 |
|
---|
[2cb5e64] | 553 | /*
|
---|
| 554 | * Detach kcpulb as nobody will call thread_join_timeout() on it.
|
---|
| 555 | */
|
---|
| 556 | thread_detach(THREAD);
|
---|
[a35b458] | 557 |
|
---|
[f761f1eb] | 558 | loop:
|
---|
| 559 | /*
|
---|
[3260ada] | 560 | * Work in 1s intervals.
|
---|
[f761f1eb] | 561 | */
|
---|
[3260ada] | 562 | thread_sleep(1);
|
---|
[a35b458] | 563 |
|
---|
[f761f1eb] | 564 | not_satisfied:
|
---|
| 565 | /*
|
---|
| 566 | * Calculate the number of threads that will be migrated/stolen from
|
---|
| 567 | * other CPU's. Note that situation can have changed between two
|
---|
| 568 | * passes. Each time get the most up to date counts.
|
---|
[da1bafb] | 569 | *
|
---|
[f761f1eb] | 570 | */
|
---|
[036e97c] | 571 | average = atomic_load(&nrdy) / config.cpu_active + 1;
|
---|
| 572 | rdy = atomic_load(&CPU->nrdy);
|
---|
[a35b458] | 573 |
|
---|
[da1bafb] | 574 | if (average <= rdy)
|
---|
[f761f1eb] | 575 | goto satisfied;
|
---|
[a35b458] | 576 |
|
---|
[3cfe2b8] | 577 | size_t count = average - rdy;
|
---|
[a35b458] | 578 |
|
---|
[f761f1eb] | 579 | /*
|
---|
[4e33b6b] | 580 | * Searching least priority queues on all CPU's first and most priority
|
---|
| 581 | * queues on all CPU's last.
|
---|
[f761f1eb] | 582 | */
|
---|
[da1bafb] | 583 | size_t acpu;
|
---|
| 584 | size_t acpu_bias = 0;
|
---|
| 585 | int rq;
|
---|
[a35b458] | 586 |
|
---|
[da1bafb] | 587 | for (rq = RQ_COUNT - 1; rq >= 0; rq--) {
|
---|
| 588 | for (acpu = 0; acpu < config.cpu_active; acpu++) {
|
---|
| 589 | cpu_t *cpu = &cpus[(acpu + acpu_bias) % config.cpu_active];
|
---|
[a35b458] | 590 |
|
---|
[f761f1eb] | 591 | /*
|
---|
| 592 | * Not interested in ourselves.
|
---|
[4e33b6b] | 593 | * Doesn't require interrupt disabling for kcpulb has
|
---|
| 594 | * THREAD_FLAG_WIRED.
|
---|
[da1bafb] | 595 | *
|
---|
[f761f1eb] | 596 | */
|
---|
[43114c5] | 597 | if (CPU == cpu)
|
---|
[248fc1a] | 598 | continue;
|
---|
[a35b458] | 599 |
|
---|
[036e97c] | 600 | if (atomic_load(&cpu->nrdy) <= average)
|
---|
[248fc1a] | 601 | continue;
|
---|
[a35b458] | 602 |
|
---|
[da1bafb] | 603 | irq_spinlock_lock(&(cpu->rq[rq].lock), true);
|
---|
| 604 | if (cpu->rq[rq].n == 0) {
|
---|
| 605 | irq_spinlock_unlock(&(cpu->rq[rq].lock), true);
|
---|
[f761f1eb] | 606 | continue;
|
---|
| 607 | }
|
---|
[a35b458] | 608 |
|
---|
[da1bafb] | 609 | thread_t *thread = NULL;
|
---|
[a35b458] | 610 |
|
---|
[da1bafb] | 611 | /* Search rq from the back */
|
---|
[55b77d9] | 612 | link_t *link = cpu->rq[rq].rq.head.prev;
|
---|
[a35b458] | 613 |
|
---|
[55b77d9] | 614 | while (link != &(cpu->rq[rq].rq.head)) {
|
---|
[43ac0cc] | 615 | thread = (thread_t *) list_get_instance(link,
|
---|
| 616 | thread_t, rq_link);
|
---|
[a35b458] | 617 |
|
---|
[f761f1eb] | 618 | /*
|
---|
[43ac0cc] | 619 | * Do not steal CPU-wired threads, threads
|
---|
| 620 | * already stolen, threads for which migration
|
---|
| 621 | * was temporarily disabled or threads whose
|
---|
| 622 | * FPU context is still in the CPU.
|
---|
[6a27d63] | 623 | */
|
---|
[da1bafb] | 624 | irq_spinlock_lock(&thread->lock, false);
|
---|
[a35b458] | 625 |
|
---|
[6eef3c4] | 626 | if ((!thread->wired) && (!thread->stolen) &&
|
---|
| 627 | (!thread->nomigrate) &&
|
---|
| 628 | (!thread->fpu_context_engaged)) {
|
---|
[f761f1eb] | 629 | /*
|
---|
[da1bafb] | 630 | * Remove thread from ready queue.
|
---|
[f761f1eb] | 631 | */
|
---|
[43ac0cc] | 632 | irq_spinlock_unlock(&thread->lock,
|
---|
| 633 | false);
|
---|
[a35b458] | 634 |
|
---|
[248fc1a] | 635 | atomic_dec(&cpu->nrdy);
|
---|
[59e07c91] | 636 | atomic_dec(&nrdy);
|
---|
[a35b458] | 637 |
|
---|
[da1bafb] | 638 | cpu->rq[rq].n--;
|
---|
| 639 | list_remove(&thread->rq_link);
|
---|
[a35b458] | 640 |
|
---|
[f761f1eb] | 641 | break;
|
---|
| 642 | }
|
---|
[a35b458] | 643 |
|
---|
[da1bafb] | 644 | irq_spinlock_unlock(&thread->lock, false);
|
---|
[a35b458] | 645 |
|
---|
[da1bafb] | 646 | link = link->prev;
|
---|
| 647 | thread = NULL;
|
---|
[f761f1eb] | 648 | }
|
---|
[a35b458] | 649 |
|
---|
[da1bafb] | 650 | if (thread) {
|
---|
[f761f1eb] | 651 | /*
|
---|
[da1bafb] | 652 | * Ready thread on local CPU
|
---|
[f761f1eb] | 653 | */
|
---|
[a35b458] | 654 |
|
---|
[43ac0cc] | 655 | irq_spinlock_pass(&(cpu->rq[rq].lock),
|
---|
| 656 | &thread->lock);
|
---|
[a35b458] | 657 |
|
---|
[f76fed4] | 658 | #ifdef KCPULB_VERBOSE
|
---|
[b2fa1204] | 659 | log(LF_OTHER, LVL_DEBUG,
|
---|
| 660 | "kcpulb%u: TID %" PRIu64 " -> cpu%u, "
|
---|
| 661 | "nrdy=%ld, avg=%ld", CPU->id, t->tid,
|
---|
[036e97c] | 662 | CPU->id, atomic_load(&CPU->nrdy),
|
---|
| 663 | atomic_load(&nrdy) / config.cpu_active);
|
---|
[f76fed4] | 664 | #endif
|
---|
[a35b458] | 665 |
|
---|
[6eef3c4] | 666 | thread->stolen = true;
|
---|
[da1bafb] | 667 | thread->state = Entering;
|
---|
[a35b458] | 668 |
|
---|
[da1bafb] | 669 | irq_spinlock_unlock(&thread->lock, true);
|
---|
| 670 | thread_ready(thread);
|
---|
[a35b458] | 671 |
|
---|
[f761f1eb] | 672 | if (--count == 0)
|
---|
| 673 | goto satisfied;
|
---|
[a35b458] | 674 |
|
---|
[f761f1eb] | 675 | /*
|
---|
[4e33b6b] | 676 | * We are not satisfied yet, focus on another
|
---|
| 677 | * CPU next time.
|
---|
[da1bafb] | 678 | *
|
---|
[f761f1eb] | 679 | */
|
---|
[da1bafb] | 680 | acpu_bias++;
|
---|
[a35b458] | 681 |
|
---|
[f761f1eb] | 682 | continue;
|
---|
[da1bafb] | 683 | } else
|
---|
| 684 | irq_spinlock_unlock(&(cpu->rq[rq].lock), true);
|
---|
[a35b458] | 685 |
|
---|
[f761f1eb] | 686 | }
|
---|
| 687 | }
|
---|
[a35b458] | 688 |
|
---|
[036e97c] | 689 | if (atomic_load(&CPU->nrdy)) {
|
---|
[f761f1eb] | 690 | /*
|
---|
| 691 | * Be a little bit light-weight and let migrated threads run.
|
---|
[da1bafb] | 692 | *
|
---|
[f761f1eb] | 693 | */
|
---|
| 694 | scheduler();
|
---|
[3260ada] | 695 | } else {
|
---|
[f761f1eb] | 696 | /*
|
---|
| 697 | * We failed to migrate a single thread.
|
---|
[3260ada] | 698 | * Give up this turn.
|
---|
[da1bafb] | 699 | *
|
---|
[f761f1eb] | 700 | */
|
---|
[3260ada] | 701 | goto loop;
|
---|
[f761f1eb] | 702 | }
|
---|
[a35b458] | 703 |
|
---|
[f761f1eb] | 704 | goto not_satisfied;
|
---|
[a35b458] | 705 |
|
---|
[f761f1eb] | 706 | satisfied:
|
---|
| 707 | goto loop;
|
---|
| 708 | }
|
---|
[5f85c91] | 709 | #endif /* CONFIG_SMP */
|
---|
[10e16a7] | 710 |
|
---|
[da1bafb] | 711 | /** Print information about threads & scheduler queues
|
---|
| 712 | *
|
---|
| 713 | */
|
---|
[10e16a7] | 714 | void sched_print_list(void)
|
---|
| 715 | {
|
---|
[da1bafb] | 716 | size_t cpu;
|
---|
[4184e76] | 717 | for (cpu = 0; cpu < config.cpu_count; cpu++) {
|
---|
[10e16a7] | 718 | if (!cpus[cpu].active)
|
---|
| 719 | continue;
|
---|
[a35b458] | 720 |
|
---|
[da1bafb] | 721 | irq_spinlock_lock(&cpus[cpu].lock, true);
|
---|
[a35b458] | 722 |
|
---|
[077842c] | 723 | printf("cpu%u: address=%p, nrdy=%zu, needs_relink=%zu\n",
|
---|
[036e97c] | 724 | cpus[cpu].id, &cpus[cpu], atomic_load(&cpus[cpu].nrdy),
|
---|
[6f4495f5] | 725 | cpus[cpu].needs_relink);
|
---|
[a35b458] | 726 |
|
---|
[da1bafb] | 727 | unsigned int i;
|
---|
[4e33b6b] | 728 | for (i = 0; i < RQ_COUNT; i++) {
|
---|
[da1bafb] | 729 | irq_spinlock_lock(&(cpus[cpu].rq[i].lock), false);
|
---|
| 730 | if (cpus[cpu].rq[i].n == 0) {
|
---|
| 731 | irq_spinlock_unlock(&(cpus[cpu].rq[i].lock), false);
|
---|
[10e16a7] | 732 | continue;
|
---|
| 733 | }
|
---|
[a35b458] | 734 |
|
---|
[5b86d10] | 735 | printf("\trq[%u]: ", i);
|
---|
[feeac0d] | 736 | list_foreach(cpus[cpu].rq[i].rq, rq_link, thread_t,
|
---|
| 737 | thread) {
|
---|
[da1bafb] | 738 | printf("%" PRIu64 "(%s) ", thread->tid,
|
---|
| 739 | thread_states[thread->state]);
|
---|
[10e16a7] | 740 | }
|
---|
| 741 | printf("\n");
|
---|
[a35b458] | 742 |
|
---|
[da1bafb] | 743 | irq_spinlock_unlock(&(cpus[cpu].rq[i].lock), false);
|
---|
[10e16a7] | 744 | }
|
---|
[a35b458] | 745 |
|
---|
[da1bafb] | 746 | irq_spinlock_unlock(&cpus[cpu].lock, true);
|
---|
[10e16a7] | 747 | }
|
---|
| 748 | }
|
---|
[b45c443] | 749 |
|
---|
[cc73a8a1] | 750 | /** @}
|
---|
[b45c443] | 751 | */
|
---|