[f761f1eb] | 1 | /*
|
---|
[481d4751] | 2 | * Copyright (c) 2010 Jakub Jermar
|
---|
[25939997] | 3 | * Copyright (c) 2023 Jiří Zárevúcky
|
---|
[f761f1eb] | 4 | * All rights reserved.
|
---|
| 5 | *
|
---|
| 6 | * Redistribution and use in source and binary forms, with or without
|
---|
| 7 | * modification, are permitted provided that the following conditions
|
---|
| 8 | * are met:
|
---|
| 9 | *
|
---|
| 10 | * - Redistributions of source code must retain the above copyright
|
---|
| 11 | * notice, this list of conditions and the following disclaimer.
|
---|
| 12 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 13 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 14 | * documentation and/or other materials provided with the distribution.
|
---|
| 15 | * - The name of the author may not be used to endorse or promote products
|
---|
| 16 | * derived from this software without specific prior written permission.
|
---|
| 17 | *
|
---|
| 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 28 | */
|
---|
| 29 |
|
---|
[174156fd] | 30 | /** @addtogroup kernel_generic_proc
|
---|
[b45c443] | 31 | * @{
|
---|
| 32 | */
|
---|
| 33 |
|
---|
[9179d0a] | 34 | /**
|
---|
[b45c443] | 35 | * @file
|
---|
[da1bafb] | 36 | * @brief Scheduler and load balancing.
|
---|
[9179d0a] | 37 | *
|
---|
[cf26ba9] | 38 | * This file contains the scheduler and kcpulb kernel thread which
|
---|
[9179d0a] | 39 | * performs load-balancing of per-CPU run queues.
|
---|
| 40 | */
|
---|
| 41 |
|
---|
[63e27ef] | 42 | #include <assert.h>
|
---|
[4621d23] | 43 | #include <atomic.h>
|
---|
[f761f1eb] | 44 | #include <proc/scheduler.h>
|
---|
| 45 | #include <proc/thread.h>
|
---|
| 46 | #include <proc/task.h>
|
---|
[32ff43e6] | 47 | #include <mm/frame.h>
|
---|
| 48 | #include <mm/page.h>
|
---|
[20d50a1] | 49 | #include <mm/as.h>
|
---|
[b3f8fb7] | 50 | #include <time/timeout.h>
|
---|
[fe19611] | 51 | #include <time/delay.h>
|
---|
[32ff43e6] | 52 | #include <arch/asm.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 |
|
---|
[31e15be] | 68 | atomic_size_t nrdy; /**< Number of ready threads in the system. */
|
---|
[f761f1eb] | 69 |
|
---|
[5f85c91] | 70 | #ifdef CONFIG_FPU_LAZY
|
---|
[b49f4ae] | 71 | void scheduler_fpu_lazy_request(void)
|
---|
| 72 | {
|
---|
| 73 | fpu_enable();
|
---|
[f3dbe27] | 74 |
|
---|
| 75 | /* We need this lock to ensure synchronization with thread destructor. */
|
---|
[169815e] | 76 | irq_spinlock_lock(&CPU->fpu_lock, false);
|
---|
[a35b458] | 77 |
|
---|
[a3eeceb6] | 78 | /* Save old context */
|
---|
[f3dbe27] | 79 | thread_t *owner = atomic_load_explicit(&CPU->fpu_owner, memory_order_relaxed);
|
---|
| 80 | if (owner != NULL) {
|
---|
| 81 | fpu_context_save(&owner->fpu_context);
|
---|
| 82 | atomic_store_explicit(&CPU->fpu_owner, NULL, memory_order_relaxed);
|
---|
[b49f4ae] | 83 | }
|
---|
[a35b458] | 84 |
|
---|
[f3dbe27] | 85 | irq_spinlock_unlock(&CPU->fpu_lock, false);
|
---|
| 86 |
|
---|
[7d6ec87] | 87 | if (THREAD->fpu_context_exists) {
|
---|
[0366d09d] | 88 | fpu_context_restore(&THREAD->fpu_context);
|
---|
[7d6ec87] | 89 | } else {
|
---|
[f76fed4] | 90 | fpu_init();
|
---|
[6eef3c4] | 91 | THREAD->fpu_context_exists = true;
|
---|
[b49f4ae] | 92 | }
|
---|
[a35b458] | 93 |
|
---|
[f3dbe27] | 94 | atomic_store_explicit(&CPU->fpu_owner, THREAD, memory_order_relaxed);
|
---|
[b49f4ae] | 95 | }
|
---|
[da1bafb] | 96 | #endif /* CONFIG_FPU_LAZY */
|
---|
[0ca6faa] | 97 |
|
---|
[70527f1] | 98 | /** Initialize scheduler
|
---|
| 99 | *
|
---|
| 100 | * Initialize kernel scheduler.
|
---|
| 101 | *
|
---|
| 102 | */
|
---|
[f761f1eb] | 103 | void scheduler_init(void)
|
---|
| 104 | {
|
---|
| 105 | }
|
---|
| 106 |
|
---|
[70527f1] | 107 | /** Get thread to be scheduled
|
---|
| 108 | *
|
---|
| 109 | * Get the optimal thread to be scheduled
|
---|
[d1a184f] | 110 | * according to thread accounting and scheduler
|
---|
[70527f1] | 111 | * policy.
|
---|
| 112 | *
|
---|
| 113 | * @return Thread to be scheduled.
|
---|
| 114 | *
|
---|
| 115 | */
|
---|
[ec8ef12] | 116 | static thread_t *try_find_thread(int *rq_index)
|
---|
[f761f1eb] | 117 | {
|
---|
[ec8ef12] | 118 | assert(interrupts_disabled());
|
---|
[63e27ef] | 119 | assert(CPU != NULL);
|
---|
[a35b458] | 120 |
|
---|
[ec8ef12] | 121 | if (atomic_load(&CPU->nrdy) == 0)
|
---|
| 122 | return NULL;
|
---|
[a35b458] | 123 |
|
---|
[ec8ef12] | 124 | for (int i = 0; i < RQ_COUNT; i++) {
|
---|
[da1bafb] | 125 | irq_spinlock_lock(&(CPU->rq[i].lock), false);
|
---|
| 126 | if (CPU->rq[i].n == 0) {
|
---|
[f761f1eb] | 127 | /*
|
---|
| 128 | * If this queue is empty, try a lower-priority queue.
|
---|
| 129 | */
|
---|
[da1bafb] | 130 | irq_spinlock_unlock(&(CPU->rq[i].lock), false);
|
---|
[f761f1eb] | 131 | continue;
|
---|
| 132 | }
|
---|
[a35b458] | 133 |
|
---|
[248fc1a] | 134 | atomic_dec(&CPU->nrdy);
|
---|
[59e07c91] | 135 | atomic_dec(&nrdy);
|
---|
[da1bafb] | 136 | CPU->rq[i].n--;
|
---|
[a35b458] | 137 |
|
---|
[f761f1eb] | 138 | /*
|
---|
| 139 | * Take the first thread from the queue.
|
---|
| 140 | */
|
---|
[55b77d9] | 141 | thread_t *thread = list_get_instance(
|
---|
| 142 | list_first(&CPU->rq[i].rq), thread_t, rq_link);
|
---|
[da1bafb] | 143 | list_remove(&thread->rq_link);
|
---|
[a35b458] | 144 |
|
---|
[8996582] | 145 | irq_spinlock_unlock(&(CPU->rq[i].lock), false);
|
---|
[a35b458] | 146 |
|
---|
[117ad5a2] | 147 | *rq_index = i;
|
---|
[da1bafb] | 148 | return thread;
|
---|
[f761f1eb] | 149 | }
|
---|
[a35b458] | 150 |
|
---|
[ec8ef12] | 151 | return NULL;
|
---|
| 152 | }
|
---|
| 153 |
|
---|
| 154 | /** Get thread to be scheduled
|
---|
| 155 | *
|
---|
| 156 | * Get the optimal thread to be scheduled
|
---|
| 157 | * according to thread accounting and scheduler
|
---|
| 158 | * policy.
|
---|
| 159 | *
|
---|
| 160 | * @return Thread to be scheduled.
|
---|
| 161 | *
|
---|
| 162 | */
|
---|
| 163 | static thread_t *find_best_thread(int *rq_index)
|
---|
| 164 | {
|
---|
| 165 | assert(interrupts_disabled());
|
---|
| 166 | assert(CPU != NULL);
|
---|
| 167 |
|
---|
| 168 | while (true) {
|
---|
| 169 | thread_t *thread = try_find_thread(rq_index);
|
---|
| 170 |
|
---|
| 171 | if (thread != NULL)
|
---|
| 172 | return thread;
|
---|
| 173 |
|
---|
| 174 | /*
|
---|
| 175 | * For there was nothing to run, the CPU goes to sleep
|
---|
| 176 | * until a hardware interrupt or an IPI comes.
|
---|
| 177 | * This improves energy saving and hyperthreading.
|
---|
| 178 | */
|
---|
[4760793] | 179 | CPU_LOCAL->idle = true;
|
---|
[ec8ef12] | 180 |
|
---|
| 181 | /*
|
---|
| 182 | * Go to sleep with interrupts enabled.
|
---|
| 183 | * Ideally, this should be atomic, but this is not guaranteed on
|
---|
| 184 | * all platforms yet, so it is possible we will go sleep when
|
---|
| 185 | * a thread has just become available.
|
---|
| 186 | */
|
---|
| 187 | cpu_interruptible_sleep();
|
---|
| 188 | }
|
---|
[f761f1eb] | 189 | }
|
---|
| 190 |
|
---|
[c680333] | 191 | static void switch_task(task_t *task)
|
---|
| 192 | {
|
---|
| 193 | /* If the task stays the same, a lot of work is avoided. */
|
---|
| 194 | if (TASK == task)
|
---|
| 195 | return;
|
---|
| 196 |
|
---|
| 197 | as_t *old_as = AS;
|
---|
| 198 | as_t *new_as = task->as;
|
---|
| 199 |
|
---|
| 200 | /* It is possible for two tasks to share one address space. */
|
---|
| 201 | if (old_as != new_as)
|
---|
| 202 | as_switch(old_as, new_as);
|
---|
| 203 |
|
---|
| 204 | if (TASK)
|
---|
| 205 | task_release(TASK);
|
---|
| 206 |
|
---|
| 207 | TASK = task;
|
---|
| 208 |
|
---|
| 209 | task_hold(TASK);
|
---|
| 210 |
|
---|
| 211 | before_task_runs_arch();
|
---|
| 212 | }
|
---|
| 213 |
|
---|
[70527f1] | 214 | /** Prevent rq starvation
|
---|
| 215 | *
|
---|
| 216 | * Prevent low priority threads from starving in rq's.
|
---|
| 217 | *
|
---|
| 218 | * When the function decides to relink rq's, it reconnects
|
---|
| 219 | * respective pointers so that in result threads with 'pri'
|
---|
[abbc16e] | 220 | * greater or equal start are moved to a higher-priority queue.
|
---|
[70527f1] | 221 | *
|
---|
| 222 | * @param start Threshold priority.
|
---|
| 223 | *
|
---|
[f761f1eb] | 224 | */
|
---|
[e16e036a] | 225 | static void relink_rq(int start)
|
---|
[f761f1eb] | 226 | {
|
---|
[25939997] | 227 | assert(interrupts_disabled());
|
---|
| 228 |
|
---|
[4760793] | 229 | if (CPU_LOCAL->current_clock_tick < CPU_LOCAL->relink_deadline)
|
---|
[011c79a] | 230 | return;
|
---|
| 231 |
|
---|
[4760793] | 232 | CPU_LOCAL->relink_deadline = CPU_LOCAL->current_clock_tick + NEEDS_RELINK_MAX;
|
---|
[a35b458] | 233 |
|
---|
[3118355] | 234 | /* Temporary cache for lists we are moving. */
|
---|
[011c79a] | 235 | list_t list;
|
---|
[55b77d9] | 236 | list_initialize(&list);
|
---|
[a35b458] | 237 |
|
---|
[3118355] | 238 | size_t n = 0;
|
---|
| 239 |
|
---|
| 240 | /* Move every list (except the one with highest priority) one level up. */
|
---|
| 241 | for (int i = RQ_COUNT - 1; i > start; i--) {
|
---|
| 242 | irq_spinlock_lock(&CPU->rq[i].lock, false);
|
---|
[a35b458] | 243 |
|
---|
[3118355] | 244 | /* Swap lists. */
|
---|
| 245 | list_swap(&CPU->rq[i].rq, &list);
|
---|
[a35b458] | 246 |
|
---|
[3118355] | 247 | /* Swap number of items. */
|
---|
| 248 | size_t tmpn = CPU->rq[i].n;
|
---|
| 249 | CPU->rq[i].n = n;
|
---|
| 250 | n = tmpn;
|
---|
[a35b458] | 251 |
|
---|
[011c79a] | 252 | irq_spinlock_unlock(&CPU->rq[i].lock, false);
|
---|
[f761f1eb] | 253 | }
|
---|
[a35b458] | 254 |
|
---|
[3118355] | 255 | /* Append the contents of rq[start + 1] to rq[start]. */
|
---|
| 256 | if (n != 0) {
|
---|
| 257 | irq_spinlock_lock(&CPU->rq[start].lock, false);
|
---|
| 258 | list_concat(&CPU->rq[start].rq, &list);
|
---|
| 259 | CPU->rq[start].n += n;
|
---|
| 260 | irq_spinlock_unlock(&CPU->rq[start].lock, false);
|
---|
| 261 | }
|
---|
[f761f1eb] | 262 | }
|
---|
| 263 |
|
---|
[23f36a3] | 264 | /**
|
---|
| 265 | * Do whatever needs to be done with current FPU state before we switch to
|
---|
| 266 | * another thread.
|
---|
| 267 | */
|
---|
| 268 | static void fpu_cleanup(void)
|
---|
| 269 | {
|
---|
| 270 | #if (defined CONFIG_FPU) && (!defined CONFIG_FPU_LAZY)
|
---|
| 271 | fpu_context_save(&THREAD->fpu_context);
|
---|
| 272 | #endif
|
---|
| 273 | }
|
---|
| 274 |
|
---|
| 275 | /**
|
---|
| 276 | * Set correct FPU state for this thread after switch from another thread.
|
---|
| 277 | */
|
---|
| 278 | static void fpu_restore(void)
|
---|
| 279 | {
|
---|
| 280 | #ifdef CONFIG_FPU_LAZY
|
---|
| 281 | /*
|
---|
| 282 | * The only concurrent modification possible for fpu_owner here is
|
---|
| 283 | * another thread changing it from itself to NULL in its destructor.
|
---|
| 284 | */
|
---|
| 285 | thread_t *owner = atomic_load_explicit(&CPU->fpu_owner,
|
---|
| 286 | memory_order_relaxed);
|
---|
| 287 |
|
---|
| 288 | if (THREAD == owner)
|
---|
| 289 | fpu_enable();
|
---|
| 290 | else
|
---|
| 291 | fpu_disable();
|
---|
| 292 |
|
---|
| 293 | #elif defined CONFIG_FPU
|
---|
| 294 | fpu_enable();
|
---|
| 295 | if (THREAD->fpu_context_exists)
|
---|
| 296 | fpu_context_restore(&THREAD->fpu_context);
|
---|
| 297 | else {
|
---|
| 298 | fpu_init();
|
---|
| 299 | THREAD->fpu_context_exists = true;
|
---|
| 300 | }
|
---|
| 301 | #endif
|
---|
| 302 | }
|
---|
| 303 |
|
---|
[8996582] | 304 | /** Things to do before we switch to THREAD context.
|
---|
| 305 | */
|
---|
| 306 | static void prepare_to_run_thread(int rq_index)
|
---|
| 307 | {
|
---|
| 308 | relink_rq(rq_index);
|
---|
| 309 |
|
---|
| 310 | switch_task(THREAD->task);
|
---|
| 311 |
|
---|
[efed95a3] | 312 | assert(atomic_get_unordered(&THREAD->cpu) == CPU);
|
---|
[286da52] | 313 |
|
---|
[41bfc64] | 314 | atomic_set_unordered(&THREAD->state, Running);
|
---|
[3d84734] | 315 | atomic_set_unordered(&THREAD->priority, rq_index); /* Correct rq index */
|
---|
[8996582] | 316 |
|
---|
| 317 | /*
|
---|
| 318 | * Clear the stolen flag so that it can be migrated
|
---|
| 319 | * when load balancing needs emerge.
|
---|
| 320 | */
|
---|
| 321 | THREAD->stolen = false;
|
---|
| 322 |
|
---|
| 323 | #ifdef SCHEDULER_VERBOSE
|
---|
| 324 | log(LF_OTHER, LVL_DEBUG,
|
---|
| 325 | "cpu%u: tid %" PRIu64 " (priority=%d, ticks=%" PRIu64
|
---|
[3d84734] | 326 | ", nrdy=%zu)", CPU->id, THREAD->tid, rq_index,
|
---|
[8996582] | 327 | THREAD->ticks, atomic_load(&CPU->nrdy));
|
---|
| 328 | #endif
|
---|
| 329 |
|
---|
| 330 | /*
|
---|
| 331 | * Some architectures provide late kernel PA2KA(identity)
|
---|
| 332 | * mapping in a page fault handler. However, the page fault
|
---|
| 333 | * handler uses the kernel stack of the running thread and
|
---|
| 334 | * therefore cannot be used to map it. The kernel stack, if
|
---|
| 335 | * necessary, is to be mapped in before_thread_runs(). This
|
---|
| 336 | * function must be executed before the switch to the new stack.
|
---|
| 337 | */
|
---|
| 338 | before_thread_runs_arch();
|
---|
| 339 |
|
---|
| 340 | #ifdef CONFIG_UDEBUG
|
---|
[33e15a0] | 341 | if (atomic_get_unordered(&THREAD->btrace)) {
|
---|
[8996582] | 342 | istate_t *istate = THREAD->udebug.uspace_state;
|
---|
| 343 | if (istate != NULL) {
|
---|
| 344 | printf("Thread %" PRIu64 " stack trace:\n", THREAD->tid);
|
---|
| 345 | stack_trace_istate(istate);
|
---|
[7364e2d1] | 346 | } else {
|
---|
| 347 | printf("Thread %" PRIu64 " interrupt state not available\n", THREAD->tid);
|
---|
[8996582] | 348 | }
|
---|
| 349 |
|
---|
[33e15a0] | 350 | atomic_set_unordered(&THREAD->btrace, false);
|
---|
[8996582] | 351 | }
|
---|
| 352 | #endif
|
---|
| 353 |
|
---|
| 354 | fpu_restore();
|
---|
| 355 |
|
---|
| 356 | /* Time allocation in microseconds. */
|
---|
| 357 | uint64_t time_to_run = (rq_index + 1) * 10000;
|
---|
| 358 |
|
---|
| 359 | /* Set the time of next preemption. */
|
---|
| 360 | CPU_LOCAL->preempt_deadline =
|
---|
| 361 | CPU_LOCAL->current_clock_tick + us2ticks(time_to_run);
|
---|
| 362 |
|
---|
| 363 | /* Save current CPU cycle */
|
---|
| 364 | THREAD->last_cycle = get_cycle();
|
---|
| 365 | }
|
---|
| 366 |
|
---|
[286da52] | 367 | static void add_to_rq(thread_t *thread, cpu_t *cpu, int i)
|
---|
| 368 | {
|
---|
| 369 | /* Add to the appropriate runqueue. */
|
---|
| 370 | runq_t *rq = &cpu->rq[i];
|
---|
| 371 |
|
---|
| 372 | irq_spinlock_lock(&rq->lock, false);
|
---|
| 373 | list_append(&thread->rq_link, &rq->rq);
|
---|
| 374 | rq->n++;
|
---|
| 375 | irq_spinlock_unlock(&rq->lock, false);
|
---|
| 376 |
|
---|
| 377 | atomic_inc(&nrdy);
|
---|
| 378 | atomic_inc(&cpu->nrdy);
|
---|
| 379 | }
|
---|
| 380 |
|
---|
| 381 | /** Requeue a thread that was just preempted on this CPU.
|
---|
| 382 | */
|
---|
| 383 | static void thread_requeue_preempted(thread_t *thread)
|
---|
| 384 | {
|
---|
[d23712e] | 385 | assert(interrupts_disabled());
|
---|
[41bfc64] | 386 | assert(atomic_get_unordered(&thread->state) == Running);
|
---|
[efed95a3] | 387 | assert(atomic_get_unordered(&thread->cpu) == CPU);
|
---|
[286da52] | 388 |
|
---|
[3d84734] | 389 | int prio = atomic_get_unordered(&thread->priority);
|
---|
| 390 |
|
---|
| 391 | if (prio < RQ_COUNT - 1) {
|
---|
| 392 | prio++;
|
---|
| 393 | atomic_set_unordered(&thread->priority, prio);
|
---|
| 394 | }
|
---|
[286da52] | 395 |
|
---|
[41bfc64] | 396 | atomic_set_unordered(&thread->state, Ready);
|
---|
[286da52] | 397 |
|
---|
[3d84734] | 398 | add_to_rq(thread, CPU, prio);
|
---|
[286da52] | 399 | }
|
---|
| 400 |
|
---|
| 401 | void thread_requeue_sleeping(thread_t *thread)
|
---|
| 402 | {
|
---|
| 403 | ipl_t ipl = interrupts_disable();
|
---|
| 404 |
|
---|
[41bfc64] | 405 | assert(atomic_get_unordered(&thread->state) == Sleeping || atomic_get_unordered(&thread->state) == Entering);
|
---|
[286da52] | 406 |
|
---|
[3d84734] | 407 | atomic_set_unordered(&thread->priority, 0);
|
---|
[41bfc64] | 408 | atomic_set_unordered(&thread->state, Ready);
|
---|
[286da52] | 409 |
|
---|
| 410 | /* Prefer the CPU on which the thread ran last */
|
---|
[efed95a3] | 411 | cpu_t *cpu = atomic_get_unordered(&thread->cpu);
|
---|
[286da52] | 412 |
|
---|
[efed95a3] | 413 | if (!cpu) {
|
---|
| 414 | cpu = CPU;
|
---|
| 415 | atomic_set_unordered(&thread->cpu, CPU);
|
---|
| 416 | }
|
---|
[286da52] | 417 |
|
---|
| 418 | add_to_rq(thread, cpu, 0);
|
---|
| 419 |
|
---|
| 420 | interrupts_restore(ipl);
|
---|
| 421 | }
|
---|
| 422 |
|
---|
[d23712e] | 423 | static void cleanup_after_thread(thread_t *thread)
|
---|
[6e49dab] | 424 | {
|
---|
| 425 | assert(CURRENT->mutex_locks == 0);
|
---|
| 426 | assert(interrupts_disabled());
|
---|
| 427 |
|
---|
| 428 | int expected;
|
---|
| 429 |
|
---|
[d23712e] | 430 | switch (atomic_get_unordered(&thread->state)) {
|
---|
[6e49dab] | 431 | case Running:
|
---|
[286da52] | 432 | thread_requeue_preempted(thread);
|
---|
[6e49dab] | 433 | break;
|
---|
| 434 |
|
---|
| 435 | case Exiting:
|
---|
| 436 | waitq_close(&thread->join_wq);
|
---|
| 437 |
|
---|
| 438 | /*
|
---|
| 439 | * Release the reference CPU has for the thread.
|
---|
| 440 | * If there are no other references (e.g. threads calling join),
|
---|
| 441 | * the thread structure is deallocated.
|
---|
| 442 | */
|
---|
| 443 | thread_put(thread);
|
---|
| 444 | break;
|
---|
| 445 |
|
---|
| 446 | case Sleeping:
|
---|
| 447 | expected = SLEEP_INITIAL;
|
---|
| 448 |
|
---|
| 449 | /* Only set SLEEP_ASLEEP in sleep pad if it's still in initial state */
|
---|
| 450 | if (!atomic_compare_exchange_strong_explicit(&thread->sleep_state,
|
---|
| 451 | &expected, SLEEP_ASLEEP,
|
---|
| 452 | memory_order_acq_rel, memory_order_acquire)) {
|
---|
| 453 |
|
---|
| 454 | assert(expected == SLEEP_WOKE);
|
---|
| 455 | /* The thread has already been woken up, requeue immediately. */
|
---|
[286da52] | 456 | thread_requeue_sleeping(thread);
|
---|
[6e49dab] | 457 | }
|
---|
| 458 | break;
|
---|
| 459 |
|
---|
| 460 | default:
|
---|
| 461 | /*
|
---|
| 462 | * Entering state is unexpected.
|
---|
| 463 | */
|
---|
| 464 | panic("tid%" PRIu64 ": unexpected state %s.",
|
---|
[d23712e] | 465 | thread->tid, thread_states[atomic_get_unordered(&thread->state)]);
|
---|
[6e49dab] | 466 | break;
|
---|
| 467 | }
|
---|
| 468 | }
|
---|
| 469 |
|
---|
[25939997] | 470 | /** Switch to scheduler context to let other threads run. */
|
---|
[151c050] | 471 | void scheduler_enter(state_t new_state)
|
---|
[7d6ec87] | 472 | {
|
---|
[151c050] | 473 | ipl_t ipl = interrupts_disable();
|
---|
[a35b458] | 474 |
|
---|
[151c050] | 475 | assert(CPU != NULL);
|
---|
| 476 | assert(THREAD != NULL);
|
---|
[23f36a3] | 477 |
|
---|
[25939997] | 478 | if (atomic_load(&haltstate))
|
---|
| 479 | halt();
|
---|
| 480 |
|
---|
[6a0e568] | 481 | /* Check if we have a thread to switch to. */
|
---|
| 482 |
|
---|
| 483 | int rq_index;
|
---|
| 484 | thread_t *new_thread = try_find_thread(&rq_index);
|
---|
| 485 |
|
---|
| 486 | if (new_thread == NULL && new_state == Running) {
|
---|
| 487 | /* No other thread to run, but we still have work to do here. */
|
---|
| 488 | interrupts_restore(ipl);
|
---|
| 489 | return;
|
---|
| 490 | }
|
---|
| 491 |
|
---|
[41bfc64] | 492 | atomic_set_unordered(&THREAD->state, new_state);
|
---|
[a35b458] | 493 |
|
---|
[151c050] | 494 | /* Update thread kernel accounting */
|
---|
[11909ce3] | 495 | atomic_time_increment(&THREAD->kcycles, get_cycle() - THREAD->last_cycle);
|
---|
[a35b458] | 496 |
|
---|
[3fa4e22a] | 497 | fpu_cleanup();
|
---|
| 498 |
|
---|
[29029ac0] | 499 | /*
|
---|
| 500 | * On Sparc, this saves some extra userspace state that's not
|
---|
| 501 | * covered by context_save()/context_restore().
|
---|
| 502 | */
|
---|
| 503 | after_thread_ran_arch();
|
---|
| 504 |
|
---|
[6a0e568] | 505 | if (new_thread) {
|
---|
| 506 | thread_t *old_thread = THREAD;
|
---|
| 507 | CPU_LOCAL->prev_thread = old_thread;
|
---|
| 508 | THREAD = new_thread;
|
---|
| 509 | /* No waiting necessary, we can switch to the new thread directly. */
|
---|
| 510 | prepare_to_run_thread(rq_index);
|
---|
| 511 |
|
---|
| 512 | current_copy(CURRENT, (current_t *) new_thread->kstack);
|
---|
| 513 | context_swap(&old_thread->saved_context, &new_thread->saved_context);
|
---|
| 514 | } else {
|
---|
| 515 | /*
|
---|
| 516 | * A new thread isn't immediately available, switch to a separate
|
---|
| 517 | * stack to sleep or do other idle stuff.
|
---|
| 518 | */
|
---|
| 519 | current_copy(CURRENT, (current_t *) CPU_LOCAL->stack);
|
---|
| 520 | context_swap(&THREAD->saved_context, &CPU_LOCAL->scheduler_context);
|
---|
| 521 | }
|
---|
[ed7e057] | 522 |
|
---|
[c1eaec4] | 523 | assert(CURRENT->mutex_locks == 0);
|
---|
| 524 | assert(interrupts_disabled());
|
---|
| 525 |
|
---|
[6a0e568] | 526 | /* Check if we need to clean up after another thread. */
|
---|
| 527 | if (CPU_LOCAL->prev_thread) {
|
---|
[d23712e] | 528 | cleanup_after_thread(CPU_LOCAL->prev_thread);
|
---|
[6a0e568] | 529 | CPU_LOCAL->prev_thread = NULL;
|
---|
| 530 | }
|
---|
| 531 |
|
---|
[ed7e057] | 532 | interrupts_restore(ipl);
|
---|
[7d6ec87] | 533 | }
|
---|
[70527f1] | 534 |
|
---|
[25939997] | 535 | /** Enter main scheduler loop. Never returns.
|
---|
[70527f1] | 536 | *
|
---|
[25939997] | 537 | * This function switches to a runnable thread as soon as one is available,
|
---|
| 538 | * after which it is only switched back to if a thread is stopping and there is
|
---|
| 539 | * no other thread to run in its place. We need a separate context for that
|
---|
| 540 | * because we're going to block the CPU, which means we need another context
|
---|
| 541 | * to clean up after the previous thread.
|
---|
[70527f1] | 542 | */
|
---|
[25939997] | 543 | void scheduler_run(void)
|
---|
[f761f1eb] | 544 | {
|
---|
[25939997] | 545 | assert(interrupts_disabled());
|
---|
| 546 |
|
---|
[63e27ef] | 547 | assert(CPU != NULL);
|
---|
[25939997] | 548 | assert(TASK == NULL);
|
---|
| 549 | assert(THREAD == NULL);
|
---|
[63e27ef] | 550 | assert(interrupts_disabled());
|
---|
[a35b458] | 551 |
|
---|
[25939997] | 552 | while (!atomic_load(&haltstate)) {
|
---|
| 553 | assert(CURRENT->mutex_locks == 0);
|
---|
| 554 |
|
---|
| 555 | int rq_index;
|
---|
| 556 | THREAD = find_best_thread(&rq_index);
|
---|
| 557 | prepare_to_run_thread(rq_index);
|
---|
| 558 |
|
---|
| 559 | /*
|
---|
| 560 | * Copy the knowledge of CPU, TASK, THREAD and preemption counter to
|
---|
| 561 | * thread's stack.
|
---|
| 562 | */
|
---|
| 563 | current_copy(CURRENT, (current_t *) THREAD->kstack);
|
---|
| 564 |
|
---|
| 565 | /* Switch to thread context. */
|
---|
| 566 | context_swap(&CPU_LOCAL->scheduler_context, &THREAD->saved_context);
|
---|
| 567 |
|
---|
[c1eaec4] | 568 | /* Back from another thread. */
|
---|
[25939997] | 569 | assert(CPU != NULL);
|
---|
| 570 | assert(THREAD != NULL);
|
---|
[c1eaec4] | 571 | assert(CURRENT->mutex_locks == 0);
|
---|
[25939997] | 572 | assert(interrupts_disabled());
|
---|
[151c050] | 573 |
|
---|
[d23712e] | 574 | cleanup_after_thread(THREAD);
|
---|
[a35b458] | 575 |
|
---|
[25939997] | 576 | /*
|
---|
| 577 | * Necessary because we're allowing interrupts in find_best_thread(),
|
---|
| 578 | * so we need to avoid other code referencing the thread we left.
|
---|
| 579 | */
|
---|
[43114c5] | 580 | THREAD = NULL;
|
---|
[f761f1eb] | 581 | }
|
---|
[a35b458] | 582 |
|
---|
[25939997] | 583 | halt();
|
---|
[f761f1eb] | 584 | }
|
---|
| 585 |
|
---|
[6a0e568] | 586 | /** Thread wrapper.
|
---|
| 587 | *
|
---|
| 588 | * This wrapper is provided to ensure that a starting thread properly handles
|
---|
| 589 | * everything it needs to do when first scheduled, and when it exits.
|
---|
| 590 | */
|
---|
| 591 | void thread_main_func(void)
|
---|
| 592 | {
|
---|
| 593 | assert(interrupts_disabled());
|
---|
| 594 |
|
---|
| 595 | void (*f)(void *) = THREAD->thread_code;
|
---|
| 596 | void *arg = THREAD->thread_arg;
|
---|
| 597 |
|
---|
| 598 | /* This is where each thread wakes up after its creation */
|
---|
| 599 |
|
---|
| 600 | /* Check if we need to clean up after another thread. */
|
---|
| 601 | if (CPU_LOCAL->prev_thread) {
|
---|
[d23712e] | 602 | cleanup_after_thread(CPU_LOCAL->prev_thread);
|
---|
[6a0e568] | 603 | CPU_LOCAL->prev_thread = NULL;
|
---|
| 604 | }
|
---|
| 605 |
|
---|
| 606 | interrupts_enable();
|
---|
| 607 |
|
---|
| 608 | f(arg);
|
---|
| 609 |
|
---|
| 610 | thread_exit();
|
---|
| 611 |
|
---|
| 612 | /* Not reached */
|
---|
| 613 | }
|
---|
| 614 |
|
---|
[5f85c91] | 615 | #ifdef CONFIG_SMP
|
---|
[fbaf6ac] | 616 |
|
---|
| 617 | static thread_t *steal_thread_from(cpu_t *old_cpu, int i)
|
---|
| 618 | {
|
---|
| 619 | runq_t *old_rq = &old_cpu->rq[i];
|
---|
| 620 | runq_t *new_rq = &CPU->rq[i];
|
---|
| 621 |
|
---|
[06f81c4] | 622 | ipl_t ipl = interrupts_disable();
|
---|
| 623 |
|
---|
| 624 | irq_spinlock_lock(&old_rq->lock, false);
|
---|
[fbaf6ac] | 625 |
|
---|
[f3dbe27] | 626 | /*
|
---|
| 627 | * If fpu_owner is any thread in the list, its store is seen here thanks to
|
---|
| 628 | * the runqueue lock.
|
---|
| 629 | */
|
---|
| 630 | thread_t *fpu_owner = atomic_load_explicit(&old_cpu->fpu_owner,
|
---|
| 631 | memory_order_relaxed);
|
---|
| 632 |
|
---|
[fbaf6ac] | 633 | /* Search rq from the back */
|
---|
| 634 | list_foreach_rev(old_rq->rq, rq_link, thread_t, thread) {
|
---|
| 635 |
|
---|
| 636 | /*
|
---|
| 637 | * Do not steal CPU-wired threads, threads
|
---|
| 638 | * already stolen, threads for which migration
|
---|
| 639 | * was temporarily disabled or threads whose
|
---|
| 640 | * FPU context is still in the CPU.
|
---|
| 641 | */
|
---|
[dfa4be62] | 642 | if (thread->stolen || thread->nomigrate || thread == fpu_owner) {
|
---|
[fbaf6ac] | 643 | continue;
|
---|
| 644 | }
|
---|
| 645 |
|
---|
| 646 | thread->stolen = true;
|
---|
[efed95a3] | 647 | atomic_set_unordered(&thread->cpu, CPU);
|
---|
[fbaf6ac] | 648 |
|
---|
| 649 | /*
|
---|
| 650 | * Ready thread on local CPU
|
---|
| 651 | */
|
---|
| 652 |
|
---|
| 653 | #ifdef KCPULB_VERBOSE
|
---|
| 654 | log(LF_OTHER, LVL_DEBUG,
|
---|
| 655 | "kcpulb%u: TID %" PRIu64 " -> cpu%u, "
|
---|
| 656 | "nrdy=%ld, avg=%ld", CPU->id, thread->tid,
|
---|
| 657 | CPU->id, atomic_load(&CPU->nrdy),
|
---|
| 658 | atomic_load(&nrdy) / config.cpu_active);
|
---|
| 659 | #endif
|
---|
| 660 |
|
---|
| 661 | /* Remove thread from ready queue. */
|
---|
| 662 | old_rq->n--;
|
---|
| 663 | list_remove(&thread->rq_link);
|
---|
[06f81c4] | 664 | irq_spinlock_unlock(&old_rq->lock, false);
|
---|
[fbaf6ac] | 665 |
|
---|
| 666 | /* Append thread to local queue. */
|
---|
[06f81c4] | 667 | irq_spinlock_lock(&new_rq->lock, false);
|
---|
[fbaf6ac] | 668 | list_append(&thread->rq_link, &new_rq->rq);
|
---|
| 669 | new_rq->n++;
|
---|
[06f81c4] | 670 | irq_spinlock_unlock(&new_rq->lock, false);
|
---|
[fbaf6ac] | 671 |
|
---|
| 672 | atomic_dec(&old_cpu->nrdy);
|
---|
| 673 | atomic_inc(&CPU->nrdy);
|
---|
[06f81c4] | 674 | interrupts_restore(ipl);
|
---|
[fbaf6ac] | 675 | return thread;
|
---|
| 676 | }
|
---|
| 677 |
|
---|
[06f81c4] | 678 | irq_spinlock_unlock(&old_rq->lock, false);
|
---|
| 679 | interrupts_restore(ipl);
|
---|
[fbaf6ac] | 680 | return NULL;
|
---|
| 681 | }
|
---|
| 682 |
|
---|
[70527f1] | 683 | /** Load balancing thread
|
---|
| 684 | *
|
---|
| 685 | * SMP load balancing thread, supervising thread supplies
|
---|
| 686 | * for the CPU it's wired to.
|
---|
| 687 | *
|
---|
| 688 | * @param arg Generic thread argument (unused).
|
---|
| 689 | *
|
---|
[f761f1eb] | 690 | */
|
---|
| 691 | void kcpulb(void *arg)
|
---|
| 692 | {
|
---|
[3cfe2b8] | 693 | size_t average;
|
---|
| 694 | size_t rdy;
|
---|
[a35b458] | 695 |
|
---|
[f761f1eb] | 696 | loop:
|
---|
| 697 | /*
|
---|
[3260ada] | 698 | * Work in 1s intervals.
|
---|
[f761f1eb] | 699 | */
|
---|
[3260ada] | 700 | thread_sleep(1);
|
---|
[a35b458] | 701 |
|
---|
[f761f1eb] | 702 | not_satisfied:
|
---|
| 703 | /*
|
---|
| 704 | * Calculate the number of threads that will be migrated/stolen from
|
---|
| 705 | * other CPU's. Note that situation can have changed between two
|
---|
| 706 | * passes. Each time get the most up to date counts.
|
---|
[da1bafb] | 707 | *
|
---|
[f761f1eb] | 708 | */
|
---|
[036e97c] | 709 | average = atomic_load(&nrdy) / config.cpu_active + 1;
|
---|
| 710 | rdy = atomic_load(&CPU->nrdy);
|
---|
[a35b458] | 711 |
|
---|
[da1bafb] | 712 | if (average <= rdy)
|
---|
[f761f1eb] | 713 | goto satisfied;
|
---|
[a35b458] | 714 |
|
---|
[3cfe2b8] | 715 | size_t count = average - rdy;
|
---|
[a35b458] | 716 |
|
---|
[f761f1eb] | 717 | /*
|
---|
[4e33b6b] | 718 | * Searching least priority queues on all CPU's first and most priority
|
---|
| 719 | * queues on all CPU's last.
|
---|
[f761f1eb] | 720 | */
|
---|
[da1bafb] | 721 | size_t acpu;
|
---|
| 722 | int rq;
|
---|
[a35b458] | 723 |
|
---|
[da1bafb] | 724 | for (rq = RQ_COUNT - 1; rq >= 0; rq--) {
|
---|
| 725 | for (acpu = 0; acpu < config.cpu_active; acpu++) {
|
---|
[fbaf6ac] | 726 | cpu_t *cpu = &cpus[acpu];
|
---|
[a35b458] | 727 |
|
---|
[f761f1eb] | 728 | /*
|
---|
| 729 | * Not interested in ourselves.
|
---|
[4e33b6b] | 730 | * Doesn't require interrupt disabling for kcpulb has
|
---|
| 731 | * THREAD_FLAG_WIRED.
|
---|
[da1bafb] | 732 | *
|
---|
[f761f1eb] | 733 | */
|
---|
[43114c5] | 734 | if (CPU == cpu)
|
---|
[248fc1a] | 735 | continue;
|
---|
[a35b458] | 736 |
|
---|
[036e97c] | 737 | if (atomic_load(&cpu->nrdy) <= average)
|
---|
[248fc1a] | 738 | continue;
|
---|
[a35b458] | 739 |
|
---|
[fbaf6ac] | 740 | if (steal_thread_from(cpu, rq) && --count == 0)
|
---|
| 741 | goto satisfied;
|
---|
[f761f1eb] | 742 | }
|
---|
| 743 | }
|
---|
[a35b458] | 744 |
|
---|
[036e97c] | 745 | if (atomic_load(&CPU->nrdy)) {
|
---|
[f761f1eb] | 746 | /*
|
---|
| 747 | * Be a little bit light-weight and let migrated threads run.
|
---|
[da1bafb] | 748 | *
|
---|
[f761f1eb] | 749 | */
|
---|
[151c050] | 750 | thread_yield();
|
---|
[3260ada] | 751 | } else {
|
---|
[f761f1eb] | 752 | /*
|
---|
| 753 | * We failed to migrate a single thread.
|
---|
[3260ada] | 754 | * Give up this turn.
|
---|
[da1bafb] | 755 | *
|
---|
[f761f1eb] | 756 | */
|
---|
[3260ada] | 757 | goto loop;
|
---|
[f761f1eb] | 758 | }
|
---|
[a35b458] | 759 |
|
---|
[f761f1eb] | 760 | goto not_satisfied;
|
---|
[a35b458] | 761 |
|
---|
[f761f1eb] | 762 | satisfied:
|
---|
| 763 | goto loop;
|
---|
| 764 | }
|
---|
[5f85c91] | 765 | #endif /* CONFIG_SMP */
|
---|
[10e16a7] | 766 |
|
---|
[da1bafb] | 767 | /** Print information about threads & scheduler queues
|
---|
| 768 | *
|
---|
| 769 | */
|
---|
[10e16a7] | 770 | void sched_print_list(void)
|
---|
| 771 | {
|
---|
[da1bafb] | 772 | size_t cpu;
|
---|
[4184e76] | 773 | for (cpu = 0; cpu < config.cpu_count; cpu++) {
|
---|
[10e16a7] | 774 | if (!cpus[cpu].active)
|
---|
| 775 | continue;
|
---|
[a35b458] | 776 |
|
---|
[3b68542] | 777 | printf("cpu%u: address=%p, nrdy=%zu\n",
|
---|
| 778 | cpus[cpu].id, &cpus[cpu], atomic_load(&cpus[cpu].nrdy));
|
---|
[a35b458] | 779 |
|
---|
[da1bafb] | 780 | unsigned int i;
|
---|
[4e33b6b] | 781 | for (i = 0; i < RQ_COUNT; i++) {
|
---|
[da1bafb] | 782 | irq_spinlock_lock(&(cpus[cpu].rq[i].lock), false);
|
---|
| 783 | if (cpus[cpu].rq[i].n == 0) {
|
---|
| 784 | irq_spinlock_unlock(&(cpus[cpu].rq[i].lock), false);
|
---|
[10e16a7] | 785 | continue;
|
---|
| 786 | }
|
---|
[a35b458] | 787 |
|
---|
[5b86d10] | 788 | printf("\trq[%u]: ", i);
|
---|
[feeac0d] | 789 | list_foreach(cpus[cpu].rq[i].rq, rq_link, thread_t,
|
---|
| 790 | thread) {
|
---|
[da1bafb] | 791 | printf("%" PRIu64 "(%s) ", thread->tid,
|
---|
[41bfc64] | 792 | thread_states[atomic_get_unordered(&thread->state)]);
|
---|
[10e16a7] | 793 | }
|
---|
| 794 | printf("\n");
|
---|
[a35b458] | 795 |
|
---|
[da1bafb] | 796 | irq_spinlock_unlock(&(cpus[cpu].rq[i].lock), false);
|
---|
[10e16a7] | 797 | }
|
---|
| 798 | }
|
---|
| 799 | }
|
---|
[b45c443] | 800 |
|
---|
[cc73a8a1] | 801 | /** @}
|
---|
[b45c443] | 802 | */
|
---|