19454b2d8SWarner Losh /*- 2d5a08a60SJake Burkholder * Copyright (c) 2001 Jake Burkholder <jake@FreeBSD.org> 3d5a08a60SJake Burkholder * All rights reserved. 4dba6c5a6SPeter Wemm * 5dba6c5a6SPeter Wemm * Redistribution and use in source and binary forms, with or without 6dba6c5a6SPeter Wemm * modification, are permitted provided that the following conditions 7dba6c5a6SPeter Wemm * are met: 8dba6c5a6SPeter Wemm * 1. Redistributions of source code must retain the above copyright 9dba6c5a6SPeter Wemm * notice, this list of conditions and the following disclaimer. 10dba6c5a6SPeter Wemm * 2. Redistributions in binary form must reproduce the above copyright 11dba6c5a6SPeter Wemm * notice, this list of conditions and the following disclaimer in the 12dba6c5a6SPeter Wemm * documentation and/or other materials provided with the distribution. 13dba6c5a6SPeter Wemm * 14dba6c5a6SPeter Wemm * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15dba6c5a6SPeter Wemm * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16dba6c5a6SPeter Wemm * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17dba6c5a6SPeter Wemm * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18dba6c5a6SPeter Wemm * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19dba6c5a6SPeter Wemm * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20dba6c5a6SPeter Wemm * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21dba6c5a6SPeter Wemm * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22dba6c5a6SPeter Wemm * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23dba6c5a6SPeter Wemm * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24dba6c5a6SPeter Wemm * SUCH DAMAGE. 25dba6c5a6SPeter Wemm */ 26dba6c5a6SPeter Wemm 27e602ba25SJulian Elischer /*** 28e602ba25SJulian Elischer Here is the logic.. 29e602ba25SJulian Elischer 30e602ba25SJulian Elischer If there are N processors, then there are at most N KSEs (kernel 31e602ba25SJulian Elischer schedulable entities) working to process threads that belong to a 3209a4a69cSRobert Watson KSEGROUP (kg). If there are X of these KSEs actually running at the 33e602ba25SJulian Elischer moment in question, then there are at most M (N-X) of these KSEs on 34e602ba25SJulian Elischer the run queue, as running KSEs are not on the queue. 35e602ba25SJulian Elischer 36e602ba25SJulian Elischer Runnable threads are queued off the KSEGROUP in priority order. 37e602ba25SJulian Elischer If there are M or more threads runnable, the top M threads 38e602ba25SJulian Elischer (by priority) are 'preassigned' to the M KSEs not running. The KSEs take 39e602ba25SJulian Elischer their priority from those threads and are put on the run queue. 40e602ba25SJulian Elischer 41e602ba25SJulian Elischer The last thread that had a priority high enough to have a KSE associated 42e602ba25SJulian Elischer with it, AND IS ON THE RUN QUEUE is pointed to by 43e602ba25SJulian Elischer kg->kg_last_assigned. If no threads queued off the KSEGROUP have KSEs 44e602ba25SJulian Elischer assigned as all the available KSEs are activly running, or because there 45e602ba25SJulian Elischer are no threads queued, that pointer is NULL. 46e602ba25SJulian Elischer 47e602ba25SJulian Elischer When a KSE is removed from the run queue to become runnable, we know 48e602ba25SJulian Elischer it was associated with the highest priority thread in the queue (at the head 49e602ba25SJulian Elischer of the queue). If it is also the last assigned we know M was 1 and must 50e602ba25SJulian Elischer now be 0. Since the thread is no longer queued that pointer must be 51e602ba25SJulian Elischer removed from it. Since we know there were no more KSEs available, 52e602ba25SJulian Elischer (M was 1 and is now 0) and since we are not FREEING our KSE 53e602ba25SJulian Elischer but using it, we know there are STILL no more KSEs available, we can prove 54e602ba25SJulian Elischer that the next thread in the ksegrp list will not have a KSE to assign to 55e602ba25SJulian Elischer it, so we can show that the pointer must be made 'invalid' (NULL). 56e602ba25SJulian Elischer 57e602ba25SJulian Elischer The pointer exists so that when a new thread is made runnable, it can 58e602ba25SJulian Elischer have its priority compared with the last assigned thread to see if 59e602ba25SJulian Elischer it should 'steal' its KSE or not.. i.e. is it 'earlier' 60e602ba25SJulian Elischer on the list than that thread or later.. If it's earlier, then the KSE is 61e602ba25SJulian Elischer removed from the last assigned (which is now not assigned a KSE) 62e602ba25SJulian Elischer and reassigned to the new thread, which is placed earlier in the list. 63e602ba25SJulian Elischer The pointer is then backed up to the previous thread (which may or may not 64e602ba25SJulian Elischer be the new thread). 65e602ba25SJulian Elischer 66e602ba25SJulian Elischer When a thread sleeps or is removed, the KSE becomes available and if there 67e602ba25SJulian Elischer are queued threads that are not assigned KSEs, the highest priority one of 68e602ba25SJulian Elischer them is assigned the KSE, which is then placed back on the run queue at 69e602ba25SJulian Elischer the approipriate place, and the kg->kg_last_assigned pointer is adjusted down 70e602ba25SJulian Elischer to point to it. 71e602ba25SJulian Elischer 72e602ba25SJulian Elischer The following diagram shows 2 KSEs and 3 threads from a single process. 73e602ba25SJulian Elischer 74e602ba25SJulian Elischer RUNQ: --->KSE---KSE--... (KSEs queued at priorities from threads) 75e602ba25SJulian Elischer \ \____ 76e602ba25SJulian Elischer \ \ 77e602ba25SJulian Elischer KSEGROUP---thread--thread--thread (queued in priority order) 78e602ba25SJulian Elischer \ / 79e602ba25SJulian Elischer \_______________/ 80e602ba25SJulian Elischer (last_assigned) 81e602ba25SJulian Elischer 82e602ba25SJulian Elischer The result of this scheme is that the M available KSEs are always 83e602ba25SJulian Elischer queued at the priorities they have inherrited from the M highest priority 84e602ba25SJulian Elischer threads for that KSEGROUP. If this situation changes, the KSEs are 85e602ba25SJulian Elischer reassigned to keep this true. 86677b542eSDavid E. O'Brien ***/ 87e602ba25SJulian Elischer 88677b542eSDavid E. O'Brien #include <sys/cdefs.h> 89677b542eSDavid E. O'Brien __FBSDID("$FreeBSD$"); 90e602ba25SJulian Elischer 916804a3abSJulian Elischer #include "opt_sched.h" 920c0b25aeSJohn Baldwin 93ed062c8dSJulian Elischer #ifndef KERN_SWITCH_INCLUDE 94dba6c5a6SPeter Wemm #include <sys/param.h> 95dba6c5a6SPeter Wemm #include <sys/systm.h> 962d50560aSMarcel Moolenaar #include <sys/kdb.h> 97dba6c5a6SPeter Wemm #include <sys/kernel.h> 980384fff8SJason Evans #include <sys/ktr.h> 99f34fa851SJohn Baldwin #include <sys/lock.h> 10035e0e5b3SJohn Baldwin #include <sys/mutex.h> 101dba6c5a6SPeter Wemm #include <sys/proc.h> 102dba6c5a6SPeter Wemm #include <sys/queue.h> 103b43179fbSJeff Roberson #include <sys/sched.h> 104ed062c8dSJulian Elischer #else /* KERN_SWITCH_INCLUDE */ 1050d2a2989SPeter Wemm #if defined(SMP) && (defined(__i386__) || defined(__amd64__)) 106cc66ebe2SPeter Wemm #include <sys/smp.h> 107cc66ebe2SPeter Wemm #endif 1086804a3abSJulian Elischer #if defined(SMP) && defined(SCHED_4BSD) 1096804a3abSJulian Elischer #include <sys/sysctl.h> 1106804a3abSJulian Elischer #endif 1116804a3abSJulian Elischer 1129923b511SScott Long #ifdef FULL_PREEMPTION 1139923b511SScott Long #ifndef PREEMPTION 1149923b511SScott Long #error "The FULL_PREEMPTION option requires the PREEMPTION option" 1159923b511SScott Long #endif 1169923b511SScott Long #endif 117dba6c5a6SPeter Wemm 118d2ac2316SJake Burkholder CTASSERT((RQB_BPW * RQB_LEN) == RQ_NQS); 119d2ac2316SJake Burkholder 120ed062c8dSJulian Elischer #define td_kse td_sched 121ed062c8dSJulian Elischer 1226220dcbaSRobert Watson /* 1236220dcbaSRobert Watson * kern.sched.preemption allows user space to determine if preemption support 1246220dcbaSRobert Watson * is compiled in or not. It is not currently a boot or runtime flag that 1256220dcbaSRobert Watson * can be changed. 1266220dcbaSRobert Watson */ 1276220dcbaSRobert Watson #ifdef PREEMPTION 1286220dcbaSRobert Watson static int kern_sched_preemption = 1; 1296220dcbaSRobert Watson #else 1306220dcbaSRobert Watson static int kern_sched_preemption = 0; 1316220dcbaSRobert Watson #endif 1326220dcbaSRobert Watson SYSCTL_INT(_kern_sched, OID_AUTO, preemption, CTLFLAG_RD, 1336220dcbaSRobert Watson &kern_sched_preemption, 0, "Kernel preemption enabled"); 1346220dcbaSRobert Watson 135e602ba25SJulian Elischer /************************************************************************ 136e602ba25SJulian Elischer * Functions that manipulate runnability from a thread perspective. * 137e602ba25SJulian Elischer ************************************************************************/ 138e602ba25SJulian Elischer /* 1395215b187SJeff Roberson * Select the KSE that will be run next. From that find the thread, and 140e602ba25SJulian Elischer * remove it from the KSEGRP's run queue. If there is thread clustering, 141e602ba25SJulian Elischer * this will be what does it. 142e602ba25SJulian Elischer */ 143b40ce416SJulian Elischer struct thread * 144b40ce416SJulian Elischer choosethread(void) 145dba6c5a6SPeter Wemm { 146e602ba25SJulian Elischer struct kse *ke; 147e602ba25SJulian Elischer struct thread *td; 148e602ba25SJulian Elischer struct ksegrp *kg; 149e602ba25SJulian Elischer 1500d2a2989SPeter Wemm #if defined(SMP) && (defined(__i386__) || defined(__amd64__)) 151cc66ebe2SPeter Wemm if (smp_active == 0 && PCPU_GET(cpuid) != 0) { 152cc66ebe2SPeter Wemm /* Shutting down, run idlethread on AP's */ 153cc66ebe2SPeter Wemm td = PCPU_GET(idlethread); 154cc66ebe2SPeter Wemm ke = td->td_kse; 155cc66ebe2SPeter Wemm CTR1(KTR_RUNQ, "choosethread: td=%p (idle)", td); 156cc66ebe2SPeter Wemm ke->ke_flags |= KEF_DIDRUN; 157cc66ebe2SPeter Wemm TD_SET_RUNNING(td); 158cc66ebe2SPeter Wemm return (td); 159cc66ebe2SPeter Wemm } 160cc66ebe2SPeter Wemm #endif 161cc66ebe2SPeter Wemm 162fe799533SAndrew Gallatin retry: 163cc66ebe2SPeter Wemm ke = sched_choose(); 164cc66ebe2SPeter Wemm if (ke) { 165e602ba25SJulian Elischer td = ke->ke_thread; 166e602ba25SJulian Elischer KASSERT((td->td_kse == ke), ("kse/thread mismatch")); 167e602ba25SJulian Elischer kg = ke->ke_ksegrp; 168ed062c8dSJulian Elischer if (td->td_proc->p_flag & P_HADTHREADS) { 16933c06e1dSJulian Elischer if (kg->kg_last_assigned == td) { 170e602ba25SJulian Elischer kg->kg_last_assigned = TAILQ_PREV(td, 171e602ba25SJulian Elischer threadqueue, td_runq); 17233c06e1dSJulian Elischer } 173d03c79eeSDavid Xu TAILQ_REMOVE(&kg->kg_runq, td, td_runq); 1741a5cd27bSJulian Elischer } 175e602ba25SJulian Elischer CTR2(KTR_RUNQ, "choosethread: td=%p pri=%d", 176e602ba25SJulian Elischer td, td->td_priority); 177e602ba25SJulian Elischer } else { 17840e55026SJulian Elischer /* Simulate runq_choose() having returned the idle thread */ 179e602ba25SJulian Elischer td = PCPU_GET(idlethread); 180472be958SJulian Elischer ke = td->td_kse; 181e602ba25SJulian Elischer CTR1(KTR_RUNQ, "choosethread: td=%p (idle)", td); 182e602ba25SJulian Elischer } 183472be958SJulian Elischer ke->ke_flags |= KEF_DIDRUN; 18493a7aa79SJulian Elischer 18593a7aa79SJulian Elischer /* 186faaa20f6SJulian Elischer * If we are in panic, only allow system threads, 187faaa20f6SJulian Elischer * plus the one we are running in, to be run. 18893a7aa79SJulian Elischer */ 189fe799533SAndrew Gallatin if (panicstr && ((td->td_proc->p_flag & P_SYSTEM) == 0 && 190faaa20f6SJulian Elischer (td->td_flags & TDF_INPANIC) == 0)) { 191faaa20f6SJulian Elischer /* note that it is no longer on the run queue */ 192faaa20f6SJulian Elischer TD_SET_CAN_RUN(td); 193fe799533SAndrew Gallatin goto retry; 194faaa20f6SJulian Elischer } 19593a7aa79SJulian Elischer 19671fad9fdSJulian Elischer TD_SET_RUNNING(td); 197e602ba25SJulian Elischer return (td); 198e602ba25SJulian Elischer } 199e602ba25SJulian Elischer 200e602ba25SJulian Elischer /* 201ed062c8dSJulian Elischer * Given a surplus system slot, try assign a new runnable thread to it. 202ed062c8dSJulian Elischer * Called from: 203ed062c8dSJulian Elischer * sched_thread_exit() (local) 204ed062c8dSJulian Elischer * sched_switch() (local) 205ed062c8dSJulian Elischer * sched_thread_exit() (local) 20614f0e2e9SJulian Elischer * remrunqueue() (local) (not at the moment) 207e602ba25SJulian Elischer */ 208ed062c8dSJulian Elischer static void 209ed062c8dSJulian Elischer slot_fill(struct ksegrp *kg) 210e602ba25SJulian Elischer { 211e602ba25SJulian Elischer struct thread *td; 212e602ba25SJulian Elischer 21333c06e1dSJulian Elischer mtx_assert(&sched_lock, MA_OWNED); 214ed062c8dSJulian Elischer while (kg->kg_avail_opennings > 0) { 215e602ba25SJulian Elischer /* 2166f8132a8SJulian Elischer * Find the first unassigned thread 2176f8132a8SJulian Elischer */ 2185215b187SJeff Roberson if ((td = kg->kg_last_assigned) != NULL) 2196f8132a8SJulian Elischer td = TAILQ_NEXT(td, td_runq); 2205215b187SJeff Roberson else 2216f8132a8SJulian Elischer td = TAILQ_FIRST(&kg->kg_runq); 2226f8132a8SJulian Elischer 2236f8132a8SJulian Elischer /* 224ed062c8dSJulian Elischer * If we found one, send it to the system scheduler. 225e602ba25SJulian Elischer */ 226e602ba25SJulian Elischer if (td) { 227e602ba25SJulian Elischer kg->kg_last_assigned = td; 22884f9d4b1SStephan Uphoff sched_add(td, SRQ_YIELDING); 229ed062c8dSJulian Elischer CTR2(KTR_RUNQ, "slot_fill: td%p -> kg%p", td, kg); 230ed062c8dSJulian Elischer } else { 231ed062c8dSJulian Elischer /* no threads to use up the slots. quit now */ 232ed062c8dSJulian Elischer break; 23348bfcdddSJulian Elischer } 234ed062c8dSJulian Elischer } 235d5a08a60SJake Burkholder } 236d5a08a60SJake Burkholder 237e8807f22SJulian Elischer #ifdef SCHED_4BSD 238e602ba25SJulian Elischer /* 239e602ba25SJulian Elischer * Remove a thread from its KSEGRP's run queue. 240e602ba25SJulian Elischer * This in turn may remove it from a KSE if it was already assigned 241e602ba25SJulian Elischer * to one, possibly causing a new thread to be assigned to the KSE 2425215b187SJeff Roberson * and the KSE getting a new priority. 243e602ba25SJulian Elischer */ 2441f955e2dSJulian Elischer static void 245b40ce416SJulian Elischer remrunqueue(struct thread *td) 246d5a08a60SJake Burkholder { 24748bfcdddSJulian Elischer struct thread *td2, *td3; 248e602ba25SJulian Elischer struct ksegrp *kg; 249e602ba25SJulian Elischer struct kse *ke; 250e602ba25SJulian Elischer 251e602ba25SJulian Elischer mtx_assert(&sched_lock, MA_OWNED); 25271fad9fdSJulian Elischer KASSERT((TD_ON_RUNQ(td)), ("remrunqueue: Bad state on run queue")); 253e602ba25SJulian Elischer kg = td->td_ksegrp; 254e602ba25SJulian Elischer ke = td->td_kse; 255e602ba25SJulian Elischer CTR1(KTR_RUNQ, "remrunqueue: td%p", td); 25671fad9fdSJulian Elischer TD_SET_CAN_RUN(td); 2575215b187SJeff Roberson /* 2585215b187SJeff Roberson * If it is not a threaded process, take the shortcut. 2595215b187SJeff Roberson */ 260ed062c8dSJulian Elischer if ((td->td_proc->p_flag & P_HADTHREADS) == 0) { 2613389af30SJulian Elischer /* remve from sys run queue and free up a slot */ 2627cf90fb3SJeff Roberson sched_rem(td); 263c3b98db0SJulian Elischer ke->ke_state = KES_THREAD; 264e602ba25SJulian Elischer return; 265d5a08a60SJake Burkholder } 26648bfcdddSJulian Elischer td3 = TAILQ_PREV(td, threadqueue, td_runq); 26748bfcdddSJulian Elischer TAILQ_REMOVE(&kg->kg_runq, td, td_runq); 268ed062c8dSJulian Elischer if (ke->ke_state == KES_ONRUNQ) { 269e602ba25SJulian Elischer /* 2703389af30SJulian Elischer * This thread has been assigned to the system run queue. 271e602ba25SJulian Elischer * We need to dissociate it and try assign the 272e602ba25SJulian Elischer * KSE to the next available thread. Then, we should 273e602ba25SJulian Elischer * see if we need to move the KSE in the run queues. 274e602ba25SJulian Elischer */ 2757cf90fb3SJeff Roberson sched_rem(td); 27693a7aa79SJulian Elischer ke->ke_state = KES_THREAD; 277e602ba25SJulian Elischer td2 = kg->kg_last_assigned; 278e602ba25SJulian Elischer KASSERT((td2 != NULL), ("last assigned has wrong value")); 27948bfcdddSJulian Elischer if (td2 == td) 280e602ba25SJulian Elischer kg->kg_last_assigned = td3; 2813389af30SJulian Elischer /* slot_fill(kg); */ /* will replace it with another */ 282e602ba25SJulian Elischer } 283e602ba25SJulian Elischer } 284e8807f22SJulian Elischer #endif 2851f955e2dSJulian Elischer 2861f955e2dSJulian Elischer /* 2871f955e2dSJulian Elischer * Change the priority of a thread that is on the run queue. 2881f955e2dSJulian Elischer */ 2891f955e2dSJulian Elischer void 2901f955e2dSJulian Elischer adjustrunqueue( struct thread *td, int newpri) 2911f955e2dSJulian Elischer { 2921f955e2dSJulian Elischer struct ksegrp *kg; 2931f955e2dSJulian Elischer struct kse *ke; 2941f955e2dSJulian Elischer 2951f955e2dSJulian Elischer mtx_assert(&sched_lock, MA_OWNED); 2961f955e2dSJulian Elischer KASSERT((TD_ON_RUNQ(td)), ("adjustrunqueue: Bad state on run queue")); 2975215b187SJeff Roberson 2981f955e2dSJulian Elischer ke = td->td_kse; 2991f955e2dSJulian Elischer CTR1(KTR_RUNQ, "adjustrunqueue: td%p", td); 3005215b187SJeff Roberson /* 3015215b187SJeff Roberson * If it is not a threaded process, take the shortcut. 3025215b187SJeff Roberson */ 303ed062c8dSJulian Elischer if ((td->td_proc->p_flag & P_HADTHREADS) == 0) { 3041f955e2dSJulian Elischer /* We only care about the kse in the run queue. */ 30524c5baaeSJulian Elischer td->td_priority = newpri; 3061f955e2dSJulian Elischer if (ke->ke_rqindex != (newpri / RQ_PPQ)) { 3077cf90fb3SJeff Roberson sched_rem(td); 3082630e4c9SJulian Elischer sched_add(td, SRQ_BORING); 3091f955e2dSJulian Elischer } 3101f955e2dSJulian Elischer return; 3111f955e2dSJulian Elischer } 3125215b187SJeff Roberson 3135215b187SJeff Roberson /* It is a threaded process */ 3141f955e2dSJulian Elischer kg = td->td_ksegrp; 315ed062c8dSJulian Elischer if (ke->ke_state == KES_ONRUNQ) { 3161f955e2dSJulian Elischer if (kg->kg_last_assigned == td) { 3171f955e2dSJulian Elischer kg->kg_last_assigned = 3181f955e2dSJulian Elischer TAILQ_PREV(td, threadqueue, td_runq); 3191f955e2dSJulian Elischer } 3207cf90fb3SJeff Roberson sched_rem(td); 3211f955e2dSJulian Elischer } 3221f955e2dSJulian Elischer TAILQ_REMOVE(&kg->kg_runq, td, td_runq); 32314f0e2e9SJulian Elischer TD_SET_CAN_RUN(td); 3241f955e2dSJulian Elischer td->td_priority = newpri; 3252630e4c9SJulian Elischer setrunqueue(td, SRQ_BORING); 3261f955e2dSJulian Elischer } 32784f9d4b1SStephan Uphoff 32884f9d4b1SStephan Uphoff /* 32984f9d4b1SStephan Uphoff * This function is called when a thread is about to be put on a 33084f9d4b1SStephan Uphoff * ksegrp run queue because it has been made runnable or its 33184f9d4b1SStephan Uphoff * priority has been adjusted and the ksegrp does not have a 33284f9d4b1SStephan Uphoff * free kse slot. It determines if a thread from the same ksegrp 33384f9d4b1SStephan Uphoff * should be preempted. If so, it tries to switch threads 33484f9d4b1SStephan Uphoff * if the thread is on the same cpu or notifies another cpu that 33584f9d4b1SStephan Uphoff * it should switch threads. 33684f9d4b1SStephan Uphoff */ 33784f9d4b1SStephan Uphoff 33884f9d4b1SStephan Uphoff static void 33984f9d4b1SStephan Uphoff maybe_preempt_in_ksegrp(struct thread *td) 3407c71b645SStephan Uphoff #if !defined(SMP) 34184f9d4b1SStephan Uphoff { 34213e7430fSPoul-Henning Kamp struct thread *running_thread; 3437c71b645SStephan Uphoff 3447c71b645SStephan Uphoff #ifndef FULL_PREEMPTION 3457c71b645SStephan Uphoff int pri; 3467c71b645SStephan Uphoff pri = td->td_priority; 3477c71b645SStephan Uphoff if (!(pri >= PRI_MIN_ITHD && pri <= PRI_MAX_ITHD)) 3487c71b645SStephan Uphoff return; 3497c71b645SStephan Uphoff #endif 3507c71b645SStephan Uphoff mtx_assert(&sched_lock, MA_OWNED); 3517c71b645SStephan Uphoff running_thread = curthread; 3527c71b645SStephan Uphoff 3537c71b645SStephan Uphoff if (running_thread->td_ksegrp != td->td_ksegrp) 3547c71b645SStephan Uphoff return; 3557c71b645SStephan Uphoff 356503c2ea3SStephan Uphoff if (td->td_priority >= running_thread->td_priority) 3577c71b645SStephan Uphoff return; 3587c71b645SStephan Uphoff #ifdef PREEMPTION 3597c71b645SStephan Uphoff if (running_thread->td_critnest > 1) 36077918643SStephan Uphoff running_thread->td_owepreempt = 1; 3617c71b645SStephan Uphoff else 3627c71b645SStephan Uphoff mi_switch(SW_INVOL, NULL); 3637c71b645SStephan Uphoff 3647c71b645SStephan Uphoff #else 3657c71b645SStephan Uphoff running_thread->td_flags |= TDF_NEEDRESCHED; 3667c71b645SStephan Uphoff #endif 3677c71b645SStephan Uphoff return; 3687c71b645SStephan Uphoff } 3697c71b645SStephan Uphoff 3707c71b645SStephan Uphoff #else /* SMP */ 3717c71b645SStephan Uphoff { 3727c71b645SStephan Uphoff struct thread *running_thread; 37384f9d4b1SStephan Uphoff int worst_pri; 37484f9d4b1SStephan Uphoff struct ksegrp *kg; 37584f9d4b1SStephan Uphoff cpumask_t cpumask,dontuse; 37684f9d4b1SStephan Uphoff struct pcpu *pc; 37784f9d4b1SStephan Uphoff struct pcpu *best_pcpu; 37884f9d4b1SStephan Uphoff struct thread *cputhread; 37984f9d4b1SStephan Uphoff 38084f9d4b1SStephan Uphoff #ifndef FULL_PREEMPTION 38184f9d4b1SStephan Uphoff int pri; 38284f9d4b1SStephan Uphoff pri = td->td_priority; 38384f9d4b1SStephan Uphoff if (!(pri >= PRI_MIN_ITHD && pri <= PRI_MAX_ITHD)) 38484f9d4b1SStephan Uphoff return; 38584f9d4b1SStephan Uphoff #endif 38684f9d4b1SStephan Uphoff 38784f9d4b1SStephan Uphoff mtx_assert(&sched_lock, MA_OWNED); 38884f9d4b1SStephan Uphoff 38984f9d4b1SStephan Uphoff running_thread = curthread; 39084f9d4b1SStephan Uphoff 39184f9d4b1SStephan Uphoff #if !defined(KSEG_PEEMPT_BEST_CPU) 39284f9d4b1SStephan Uphoff if (running_thread->td_ksegrp != td->td_ksegrp) { 39384f9d4b1SStephan Uphoff #endif 39484f9d4b1SStephan Uphoff kg = td->td_ksegrp; 39584f9d4b1SStephan Uphoff 39684f9d4b1SStephan Uphoff /* if someone is ahead of this thread, wait our turn */ 39784f9d4b1SStephan Uphoff if (td != TAILQ_FIRST(&kg->kg_runq)) 39884f9d4b1SStephan Uphoff return; 39984f9d4b1SStephan Uphoff 40084f9d4b1SStephan Uphoff worst_pri = td->td_priority; 40184f9d4b1SStephan Uphoff best_pcpu = NULL; 40284f9d4b1SStephan Uphoff dontuse = stopped_cpus | idle_cpus_mask; 40384f9d4b1SStephan Uphoff 40484f9d4b1SStephan Uphoff /* 40584f9d4b1SStephan Uphoff * Find a cpu with the worst priority that runs at thread from 40684f9d4b1SStephan Uphoff * the same ksegrp - if multiple exist give first the last run 40784f9d4b1SStephan Uphoff * cpu and then the current cpu priority 40884f9d4b1SStephan Uphoff */ 40984f9d4b1SStephan Uphoff 41084f9d4b1SStephan Uphoff SLIST_FOREACH(pc, &cpuhead, pc_allcpu) { 41184f9d4b1SStephan Uphoff cpumask = pc->pc_cpumask; 41284f9d4b1SStephan Uphoff cputhread = pc->pc_curthread; 41384f9d4b1SStephan Uphoff 41484f9d4b1SStephan Uphoff if ((cpumask & dontuse) || 41584f9d4b1SStephan Uphoff cputhread->td_ksegrp != kg) 41684f9d4b1SStephan Uphoff continue; 41784f9d4b1SStephan Uphoff 41884f9d4b1SStephan Uphoff if (cputhread->td_priority > worst_pri) { 41984f9d4b1SStephan Uphoff worst_pri = cputhread->td_priority; 42084f9d4b1SStephan Uphoff best_pcpu = pc; 42184f9d4b1SStephan Uphoff continue; 42284f9d4b1SStephan Uphoff } 42384f9d4b1SStephan Uphoff 42484f9d4b1SStephan Uphoff if (cputhread->td_priority == worst_pri && 42584f9d4b1SStephan Uphoff best_pcpu != NULL && 42684f9d4b1SStephan Uphoff (td->td_lastcpu == pc->pc_cpuid || 42784f9d4b1SStephan Uphoff (PCPU_GET(cpumask) == cpumask && 42884f9d4b1SStephan Uphoff td->td_lastcpu != best_pcpu->pc_cpuid))) 42984f9d4b1SStephan Uphoff best_pcpu = pc; 43084f9d4b1SStephan Uphoff } 43184f9d4b1SStephan Uphoff 43284f9d4b1SStephan Uphoff /* Check if we need to preempt someone */ 43384f9d4b1SStephan Uphoff if (best_pcpu == NULL) 43484f9d4b1SStephan Uphoff return; 43584f9d4b1SStephan Uphoff 43684f9d4b1SStephan Uphoff if (PCPU_GET(cpuid) != best_pcpu->pc_cpuid) { 43784f9d4b1SStephan Uphoff best_pcpu->pc_curthread->td_flags |= TDF_NEEDRESCHED; 43884f9d4b1SStephan Uphoff ipi_selected(best_pcpu->pc_cpumask, IPI_AST); 43984f9d4b1SStephan Uphoff return; 44084f9d4b1SStephan Uphoff } 44184f9d4b1SStephan Uphoff #if !defined(KSEG_PEEMPT_BEST_CPU) 44284f9d4b1SStephan Uphoff } 44384f9d4b1SStephan Uphoff #endif 44484f9d4b1SStephan Uphoff 445503c2ea3SStephan Uphoff if (td->td_priority >= running_thread->td_priority) 44684f9d4b1SStephan Uphoff return; 44784f9d4b1SStephan Uphoff #ifdef PREEMPTION 44884f9d4b1SStephan Uphoff if (running_thread->td_critnest > 1) 44977918643SStephan Uphoff running_thread->td_owepreempt = 1; 45084f9d4b1SStephan Uphoff else 45184f9d4b1SStephan Uphoff mi_switch(SW_INVOL, NULL); 45284f9d4b1SStephan Uphoff 45384f9d4b1SStephan Uphoff #else 45484f9d4b1SStephan Uphoff running_thread->td_flags |= TDF_NEEDRESCHED; 45584f9d4b1SStephan Uphoff #endif 45684f9d4b1SStephan Uphoff return; 45784f9d4b1SStephan Uphoff } 4587c71b645SStephan Uphoff #endif /* !SMP */ 4597c71b645SStephan Uphoff 46084f9d4b1SStephan Uphoff 461ed062c8dSJulian Elischer int limitcount; 462d5a08a60SJake Burkholder void 4632630e4c9SJulian Elischer setrunqueue(struct thread *td, int flags) 464d5a08a60SJake Burkholder { 465e602ba25SJulian Elischer struct ksegrp *kg; 466e602ba25SJulian Elischer struct thread *td2; 467e602ba25SJulian Elischer struct thread *tda; 468e602ba25SJulian Elischer 469ed062c8dSJulian Elischer CTR3(KTR_RUNQ, "setrunqueue: td:%p kg:%p pid:%d", 470ed062c8dSJulian Elischer td, td->td_ksegrp, td->td_proc->p_pid); 47185da7a56SJeff Roberson CTR5(KTR_SCHED, "setrunqueue: %p(%s) prio %d by %p(%s)", 47285da7a56SJeff Roberson td, td->td_proc->p_comm, td->td_priority, curthread, 47385da7a56SJeff Roberson curthread->td_proc->p_comm); 474e602ba25SJulian Elischer mtx_assert(&sched_lock, MA_OWNED); 475b2578c6cSJulian Elischer KASSERT((td->td_inhibitors == 0), 476b2578c6cSJulian Elischer ("setrunqueue: trying to run inhibitted thread")); 47771fad9fdSJulian Elischer KASSERT((TD_CAN_RUN(td) || TD_IS_RUNNING(td)), 47871fad9fdSJulian Elischer ("setrunqueue: bad thread state")); 47971fad9fdSJulian Elischer TD_SET_RUNQ(td); 480e602ba25SJulian Elischer kg = td->td_ksegrp; 481ed062c8dSJulian Elischer if ((td->td_proc->p_flag & P_HADTHREADS) == 0) { 48248bfcdddSJulian Elischer /* 48348bfcdddSJulian Elischer * Common path optimisation: Only one of everything 48448bfcdddSJulian Elischer * and the KSE is always already attached. 48548bfcdddSJulian Elischer * Totally ignore the ksegrp run queue. 48648bfcdddSJulian Elischer */ 487ed062c8dSJulian Elischer if (kg->kg_avail_opennings != 1) { 48854983505SJulian Elischer if (limitcount < 1) { 489ed062c8dSJulian Elischer limitcount++; 49054983505SJulian Elischer printf("pid %d: corrected slot count (%d->1)\n", 491ed062c8dSJulian Elischer td->td_proc->p_pid, kg->kg_avail_opennings); 492ed062c8dSJulian Elischer 493ed062c8dSJulian Elischer } 494ed062c8dSJulian Elischer kg->kg_avail_opennings = 1; 495ed062c8dSJulian Elischer } 4962630e4c9SJulian Elischer sched_add(td, flags); 49748bfcdddSJulian Elischer return; 49848bfcdddSJulian Elischer } 49948bfcdddSJulian Elischer 50014f0e2e9SJulian Elischer /* 50114f0e2e9SJulian Elischer * If the concurrency has reduced, and we would go in the 50214f0e2e9SJulian Elischer * assigned section, then keep removing entries from the 50314f0e2e9SJulian Elischer * system run queue, until we are not in that section 50414f0e2e9SJulian Elischer * or there is room for us to be put in that section. 50514f0e2e9SJulian Elischer * What we MUST avoid is the case where there are threads of less 50614f0e2e9SJulian Elischer * priority than the new one scheduled, but it can not 50714f0e2e9SJulian Elischer * be scheduled itself. That would lead to a non contiguous set 50814f0e2e9SJulian Elischer * of scheduled threads, and everything would break. 50914f0e2e9SJulian Elischer */ 510e602ba25SJulian Elischer tda = kg->kg_last_assigned; 51114f0e2e9SJulian Elischer while ((kg->kg_avail_opennings <= 0) && 512ed062c8dSJulian Elischer (tda && (tda->td_priority > td->td_priority))) { 513e602ba25SJulian Elischer /* 514e602ba25SJulian Elischer * None free, but there is one we can commandeer. 515e602ba25SJulian Elischer */ 516ed062c8dSJulian Elischer CTR2(KTR_RUNQ, 517ed062c8dSJulian Elischer "setrunqueue: kg:%p: take slot from td: %p", kg, tda); 51894816f6dSJeff Roberson sched_rem(tda); 519e602ba25SJulian Elischer tda = kg->kg_last_assigned = 520e602ba25SJulian Elischer TAILQ_PREV(tda, threadqueue, td_runq); 521d5a08a60SJake Burkholder } 522d5a08a60SJake Burkholder 523e602ba25SJulian Elischer /* 524e602ba25SJulian Elischer * Add the thread to the ksegrp's run queue at 525e602ba25SJulian Elischer * the appropriate place. 526e602ba25SJulian Elischer */ 527e602ba25SJulian Elischer TAILQ_FOREACH(td2, &kg->kg_runq, td_runq) { 528e602ba25SJulian Elischer if (td2->td_priority > td->td_priority) { 529e602ba25SJulian Elischer TAILQ_INSERT_BEFORE(td2, td, td_runq); 530e602ba25SJulian Elischer break; 531e602ba25SJulian Elischer } 532e602ba25SJulian Elischer } 533e602ba25SJulian Elischer if (td2 == NULL) { 534e602ba25SJulian Elischer /* We ran off the end of the TAILQ or it was empty. */ 535e602ba25SJulian Elischer TAILQ_INSERT_TAIL(&kg->kg_runq, td, td_runq); 536e602ba25SJulian Elischer } 537e602ba25SJulian Elischer 538e602ba25SJulian Elischer /* 539ed062c8dSJulian Elischer * If we have a slot to use, then put the thread on the system 540ed062c8dSJulian Elischer * run queue and if needed, readjust the last_assigned pointer. 54114f0e2e9SJulian Elischer * it may be that we need to schedule something anyhow 54214f0e2e9SJulian Elischer * even if the availabel slots are -ve so that 54314f0e2e9SJulian Elischer * all the items < last_assigned are scheduled. 544e602ba25SJulian Elischer */ 545ed062c8dSJulian Elischer if (kg->kg_avail_opennings > 0) { 546e602ba25SJulian Elischer if (tda == NULL) { 547e602ba25SJulian Elischer /* 548e602ba25SJulian Elischer * No pre-existing last assigned so whoever is first 54914f0e2e9SJulian Elischer * gets the slot.. (maybe us) 550e602ba25SJulian Elischer */ 551e602ba25SJulian Elischer td2 = TAILQ_FIRST(&kg->kg_runq); 552e602ba25SJulian Elischer kg->kg_last_assigned = td2; 553e602ba25SJulian Elischer } else if (tda->td_priority > td->td_priority) { 554ed062c8dSJulian Elischer td2 = td; 555e602ba25SJulian Elischer } else { 556e602ba25SJulian Elischer /* 557e602ba25SJulian Elischer * We are past last_assigned, so 55814f0e2e9SJulian Elischer * give the next slot to whatever is next, 559e602ba25SJulian Elischer * which may or may not be us. 560e602ba25SJulian Elischer */ 561e602ba25SJulian Elischer td2 = TAILQ_NEXT(tda, td_runq); 562e602ba25SJulian Elischer kg->kg_last_assigned = td2; 563e602ba25SJulian Elischer } 564ed062c8dSJulian Elischer sched_add(td2, flags); 565732d9528SJulian Elischer } else { 566732d9528SJulian Elischer CTR3(KTR_RUNQ, "setrunqueue: held: td%p kg%p pid%d", 567732d9528SJulian Elischer td, td->td_ksegrp, td->td_proc->p_pid); 56884f9d4b1SStephan Uphoff if ((flags & SRQ_YIELDING) == 0) 56984f9d4b1SStephan Uphoff maybe_preempt_in_ksegrp(td); 570e602ba25SJulian Elischer } 571e602ba25SJulian Elischer } 572e602ba25SJulian Elischer 5730c0b25aeSJohn Baldwin /* 5740c0b25aeSJohn Baldwin * Kernel thread preemption implementation. Critical sections mark 5750c0b25aeSJohn Baldwin * regions of code in which preemptions are not allowed. 5760c0b25aeSJohn Baldwin */ 5777e1f6dfeSJohn Baldwin void 5787e1f6dfeSJohn Baldwin critical_enter(void) 5797e1f6dfeSJohn Baldwin { 5807e1f6dfeSJohn Baldwin struct thread *td; 5817e1f6dfeSJohn Baldwin 5827e1f6dfeSJohn Baldwin td = curthread; 5837e1f6dfeSJohn Baldwin td->td_critnest++; 584f42a43faSRobert Watson CTR4(KTR_CRITICAL, "critical_enter by thread %p (%ld, %s) to %d", td, 585f42a43faSRobert Watson (long)td->td_proc->p_pid, td->td_proc->p_comm, td->td_critnest); 5867e1f6dfeSJohn Baldwin } 5877e1f6dfeSJohn Baldwin 5887e1f6dfeSJohn Baldwin void 5897e1f6dfeSJohn Baldwin critical_exit(void) 5907e1f6dfeSJohn Baldwin { 5917e1f6dfeSJohn Baldwin struct thread *td; 5927e1f6dfeSJohn Baldwin 5937e1f6dfeSJohn Baldwin td = curthread; 594b209e5e3SJeff Roberson KASSERT(td->td_critnest != 0, 595b209e5e3SJeff Roberson ("critical_exit: td_critnest == 0")); 5960c0b25aeSJohn Baldwin #ifdef PREEMPTION 597d13ec713SStephan Uphoff if (td->td_critnest == 1) { 598d13ec713SStephan Uphoff td->td_critnest = 0; 59952eb8464SJohn Baldwin mtx_assert(&sched_lock, MA_NOTOWNED); 60077918643SStephan Uphoff if (td->td_owepreempt) { 60177918643SStephan Uphoff td->td_critnest = 1; 6020c0b25aeSJohn Baldwin mtx_lock_spin(&sched_lock); 60377918643SStephan Uphoff td->td_critnest--; 6040c0b25aeSJohn Baldwin mi_switch(SW_INVOL, NULL); 6050c0b25aeSJohn Baldwin mtx_unlock_spin(&sched_lock); 6060c0b25aeSJohn Baldwin } 607d13ec713SStephan Uphoff } else 6080c0b25aeSJohn Baldwin #endif 6097e1f6dfeSJohn Baldwin td->td_critnest--; 610d13ec713SStephan Uphoff 611d13ec713SStephan Uphoff 612f42a43faSRobert Watson CTR4(KTR_CRITICAL, "critical_exit by thread %p (%ld, %s) to %d", td, 613f42a43faSRobert Watson (long)td->td_proc->p_pid, td->td_proc->p_comm, td->td_critnest); 614d74ac681SMatthew Dillon } 6157e1f6dfeSJohn Baldwin 6160c0b25aeSJohn Baldwin /* 6170c0b25aeSJohn Baldwin * This function is called when a thread is about to be put on run queue 6180c0b25aeSJohn Baldwin * because it has been made runnable or its priority has been adjusted. It 6190c0b25aeSJohn Baldwin * determines if the new thread should be immediately preempted to. If so, 6200c0b25aeSJohn Baldwin * it switches to it and eventually returns true. If not, it returns false 6210c0b25aeSJohn Baldwin * so that the caller may place the thread on an appropriate run queue. 6220c0b25aeSJohn Baldwin */ 6230c0b25aeSJohn Baldwin int 6240c0b25aeSJohn Baldwin maybe_preempt(struct thread *td) 6250c0b25aeSJohn Baldwin { 6268b44a2e2SMarcel Moolenaar #ifdef PREEMPTION 6270c0b25aeSJohn Baldwin struct thread *ctd; 6280c0b25aeSJohn Baldwin int cpri, pri; 6298b44a2e2SMarcel Moolenaar #endif 6300c0b25aeSJohn Baldwin 6310c0b25aeSJohn Baldwin mtx_assert(&sched_lock, MA_OWNED); 6320c0b25aeSJohn Baldwin #ifdef PREEMPTION 6330c0b25aeSJohn Baldwin /* 6340c0b25aeSJohn Baldwin * The new thread should not preempt the current thread if any of the 6350c0b25aeSJohn Baldwin * following conditions are true: 6360c0b25aeSJohn Baldwin * 637bc608306SRobert Watson * - The kernel is in the throes of crashing (panicstr). 63852eb8464SJohn Baldwin * - The current thread has a higher (numerically lower) or 63952eb8464SJohn Baldwin * equivalent priority. Note that this prevents curthread from 64052eb8464SJohn Baldwin * trying to preempt to itself. 6410c0b25aeSJohn Baldwin * - It is too early in the boot for context switches (cold is set). 6420c0b25aeSJohn Baldwin * - The current thread has an inhibitor set or is in the process of 6430c0b25aeSJohn Baldwin * exiting. In this case, the current thread is about to switch 6440c0b25aeSJohn Baldwin * out anyways, so there's no point in preempting. If we did, 6450c0b25aeSJohn Baldwin * the current thread would not be properly resumed as well, so 6460c0b25aeSJohn Baldwin * just avoid that whole landmine. 6470c0b25aeSJohn Baldwin * - If the new thread's priority is not a realtime priority and 6480c0b25aeSJohn Baldwin * the current thread's priority is not an idle priority and 6490c0b25aeSJohn Baldwin * FULL_PREEMPTION is disabled. 6500c0b25aeSJohn Baldwin * 6510c0b25aeSJohn Baldwin * If all of these conditions are false, but the current thread is in 6520c0b25aeSJohn Baldwin * a nested critical section, then we have to defer the preemption 6530c0b25aeSJohn Baldwin * until we exit the critical section. Otherwise, switch immediately 6540c0b25aeSJohn Baldwin * to the new thread. 6550c0b25aeSJohn Baldwin */ 6560c0b25aeSJohn Baldwin ctd = curthread; 6576a574b2aSJulian Elischer KASSERT ((ctd->td_kse != NULL && ctd->td_kse->ke_thread == ctd), 6586a574b2aSJulian Elischer ("thread has no (or wrong) sched-private part.")); 659b2578c6cSJulian Elischer KASSERT((td->td_inhibitors == 0), 660b2578c6cSJulian Elischer ("maybe_preempt: trying to run inhibitted thread")); 6610c0b25aeSJohn Baldwin pri = td->td_priority; 6620c0b25aeSJohn Baldwin cpri = ctd->td_priority; 663bc608306SRobert Watson if (panicstr != NULL || pri >= cpri || cold /* || dumping */ || 664bc608306SRobert Watson TD_IS_INHIBITED(ctd) || td->td_kse->ke_state != KES_THREAD) 6650c0b25aeSJohn Baldwin return (0); 6660c0b25aeSJohn Baldwin #ifndef FULL_PREEMPTION 6670c0b25aeSJohn Baldwin if (!(pri >= PRI_MIN_ITHD && pri <= PRI_MAX_ITHD) && 6680c0b25aeSJohn Baldwin !(cpri >= PRI_MIN_IDLE)) 6690c0b25aeSJohn Baldwin return (0); 6700c0b25aeSJohn Baldwin #endif 6710c0b25aeSJohn Baldwin if (ctd->td_critnest > 1) { 6720c0b25aeSJohn Baldwin CTR1(KTR_PROC, "maybe_preempt: in critical section %d", 6730c0b25aeSJohn Baldwin ctd->td_critnest); 67477918643SStephan Uphoff ctd->td_owepreempt = 1; 6750c0b25aeSJohn Baldwin return (0); 6760c0b25aeSJohn Baldwin } 6770c0b25aeSJohn Baldwin 6780c0b25aeSJohn Baldwin /* 679c20c691bSJulian Elischer * Thread is runnable but not yet put on system run queue. 6800c0b25aeSJohn Baldwin */ 6810c0b25aeSJohn Baldwin MPASS(TD_ON_RUNQ(td)); 6821f9f5df6SJulian Elischer MPASS(td->td_sched->ke_state != KES_ONRUNQ); 6831f9f5df6SJulian Elischer if (td->td_proc->p_flag & P_HADTHREADS) { 6841f9f5df6SJulian Elischer /* 6851f9f5df6SJulian Elischer * If this is a threaded process we actually ARE on the 6861f9f5df6SJulian Elischer * ksegrp run queue so take it off that first. 6879da3e923SJulian Elischer * Also undo any damage done to the last_assigned pointer. 6889da3e923SJulian Elischer * XXX Fix setrunqueue so this isn't needed 6891f9f5df6SJulian Elischer */ 6909da3e923SJulian Elischer struct ksegrp *kg; 6919da3e923SJulian Elischer 6929da3e923SJulian Elischer kg = td->td_ksegrp; 6939da3e923SJulian Elischer if (kg->kg_last_assigned == td) 6949da3e923SJulian Elischer kg->kg_last_assigned = 6959da3e923SJulian Elischer TAILQ_PREV(td, threadqueue, td_runq); 6969da3e923SJulian Elischer TAILQ_REMOVE(&kg->kg_runq, td, td_runq); 6971f9f5df6SJulian Elischer } 6981f9f5df6SJulian Elischer 6990c0b25aeSJohn Baldwin TD_SET_RUNNING(td); 7000c0b25aeSJohn Baldwin CTR3(KTR_PROC, "preempting to thread %p (pid %d, %s)\n", td, 7010c0b25aeSJohn Baldwin td->td_proc->p_pid, td->td_proc->p_comm); 702c20c691bSJulian Elischer mi_switch(SW_INVOL|SW_PREEMPT, td); 7030c0b25aeSJohn Baldwin return (1); 7040c0b25aeSJohn Baldwin #else 7050c0b25aeSJohn Baldwin return (0); 7060c0b25aeSJohn Baldwin #endif 7070c0b25aeSJohn Baldwin } 7080c0b25aeSJohn Baldwin 70944fe3c1fSJohn Baldwin #if 0 7100c0b25aeSJohn Baldwin #ifndef PREEMPTION 7110c0b25aeSJohn Baldwin /* XXX: There should be a non-static version of this. */ 7120c0b25aeSJohn Baldwin static void 7130c0b25aeSJohn Baldwin printf_caddr_t(void *data) 7140c0b25aeSJohn Baldwin { 7150c0b25aeSJohn Baldwin printf("%s", (char *)data); 7160c0b25aeSJohn Baldwin } 7170c0b25aeSJohn Baldwin static char preempt_warning[] = 7180c0b25aeSJohn Baldwin "WARNING: Kernel preemption is disabled, expect reduced performance.\n"; 7190c0b25aeSJohn Baldwin SYSINIT(preempt_warning, SI_SUB_COPYRIGHT, SI_ORDER_ANY, printf_caddr_t, 7200c0b25aeSJohn Baldwin preempt_warning) 7210c0b25aeSJohn Baldwin #endif 72244fe3c1fSJohn Baldwin #endif 723e602ba25SJulian Elischer 724e602ba25SJulian Elischer /************************************************************************ 725e602ba25SJulian Elischer * SYSTEM RUN QUEUE manipulations and tests * 726e602ba25SJulian Elischer ************************************************************************/ 727e602ba25SJulian Elischer /* 728e602ba25SJulian Elischer * Initialize a run structure. 729e602ba25SJulian Elischer */ 730e602ba25SJulian Elischer void 731e602ba25SJulian Elischer runq_init(struct runq *rq) 732e602ba25SJulian Elischer { 733e602ba25SJulian Elischer int i; 734e602ba25SJulian Elischer 735e602ba25SJulian Elischer bzero(rq, sizeof *rq); 736e602ba25SJulian Elischer for (i = 0; i < RQ_NQS; i++) 737e602ba25SJulian Elischer TAILQ_INIT(&rq->rq_queues[i]); 738e602ba25SJulian Elischer } 739e602ba25SJulian Elischer 740d5a08a60SJake Burkholder /* 741d5a08a60SJake Burkholder * Clear the status bit of the queue corresponding to priority level pri, 742d5a08a60SJake Burkholder * indicating that it is empty. 743d5a08a60SJake Burkholder */ 744d5a08a60SJake Burkholder static __inline void 745d5a08a60SJake Burkholder runq_clrbit(struct runq *rq, int pri) 746d5a08a60SJake Burkholder { 747d5a08a60SJake Burkholder struct rqbits *rqb; 748d5a08a60SJake Burkholder 749d5a08a60SJake Burkholder rqb = &rq->rq_status; 750d5a08a60SJake Burkholder CTR4(KTR_RUNQ, "runq_clrbit: bits=%#x %#x bit=%#x word=%d", 751d5a08a60SJake Burkholder rqb->rqb_bits[RQB_WORD(pri)], 752d5a08a60SJake Burkholder rqb->rqb_bits[RQB_WORD(pri)] & ~RQB_BIT(pri), 753d5a08a60SJake Burkholder RQB_BIT(pri), RQB_WORD(pri)); 754d5a08a60SJake Burkholder rqb->rqb_bits[RQB_WORD(pri)] &= ~RQB_BIT(pri); 755d5a08a60SJake Burkholder } 756d5a08a60SJake Burkholder 757d5a08a60SJake Burkholder /* 758d5a08a60SJake Burkholder * Find the index of the first non-empty run queue. This is done by 759d5a08a60SJake Burkholder * scanning the status bits, a set bit indicates a non-empty queue. 760d5a08a60SJake Burkholder */ 761d5a08a60SJake Burkholder static __inline int 762d5a08a60SJake Burkholder runq_findbit(struct runq *rq) 763d5a08a60SJake Burkholder { 764d5a08a60SJake Burkholder struct rqbits *rqb; 765d5a08a60SJake Burkholder int pri; 766d5a08a60SJake Burkholder int i; 767d5a08a60SJake Burkholder 768d5a08a60SJake Burkholder rqb = &rq->rq_status; 769d5a08a60SJake Burkholder for (i = 0; i < RQB_LEN; i++) 770d5a08a60SJake Burkholder if (rqb->rqb_bits[i]) { 7712f9267ecSPeter Wemm pri = RQB_FFS(rqb->rqb_bits[i]) + (i << RQB_L2BPW); 772d5a08a60SJake Burkholder CTR3(KTR_RUNQ, "runq_findbit: bits=%#x i=%d pri=%d", 773d5a08a60SJake Burkholder rqb->rqb_bits[i], i, pri); 774d5a08a60SJake Burkholder return (pri); 775d5a08a60SJake Burkholder } 776d5a08a60SJake Burkholder 777d5a08a60SJake Burkholder return (-1); 778d5a08a60SJake Burkholder } 779d5a08a60SJake Burkholder 780d5a08a60SJake Burkholder /* 781d5a08a60SJake Burkholder * Set the status bit of the queue corresponding to priority level pri, 782d5a08a60SJake Burkholder * indicating that it is non-empty. 783d5a08a60SJake Burkholder */ 784d5a08a60SJake Burkholder static __inline void 785d5a08a60SJake Burkholder runq_setbit(struct runq *rq, int pri) 786d5a08a60SJake Burkholder { 787d5a08a60SJake Burkholder struct rqbits *rqb; 788d5a08a60SJake Burkholder 789d5a08a60SJake Burkholder rqb = &rq->rq_status; 790d5a08a60SJake Burkholder CTR4(KTR_RUNQ, "runq_setbit: bits=%#x %#x bit=%#x word=%d", 791d5a08a60SJake Burkholder rqb->rqb_bits[RQB_WORD(pri)], 792d5a08a60SJake Burkholder rqb->rqb_bits[RQB_WORD(pri)] | RQB_BIT(pri), 793d5a08a60SJake Burkholder RQB_BIT(pri), RQB_WORD(pri)); 794d5a08a60SJake Burkholder rqb->rqb_bits[RQB_WORD(pri)] |= RQB_BIT(pri); 795d5a08a60SJake Burkholder } 796d5a08a60SJake Burkholder 797d5a08a60SJake Burkholder /* 798e602ba25SJulian Elischer * Add the KSE to the queue specified by its priority, and set the 799d5a08a60SJake Burkholder * corresponding status bit. 800d5a08a60SJake Burkholder */ 801d5a08a60SJake Burkholder void 802c20c691bSJulian Elischer runq_add(struct runq *rq, struct kse *ke, int flags) 803d5a08a60SJake Burkholder { 804d5a08a60SJake Burkholder struct rqhead *rqh; 805d5a08a60SJake Burkholder int pri; 806dba6c5a6SPeter Wemm 8072c100766SJulian Elischer pri = ke->ke_thread->td_priority / RQ_PPQ; 808b40ce416SJulian Elischer ke->ke_rqindex = pri; 809d5a08a60SJake Burkholder runq_setbit(rq, pri); 810d5a08a60SJake Burkholder rqh = &rq->rq_queues[pri]; 811732d9528SJulian Elischer CTR5(KTR_RUNQ, "runq_add: td=%p ke=%p pri=%d %d rqh=%p", 812732d9528SJulian Elischer ke->ke_thread, ke, ke->ke_thread->td_priority, pri, rqh); 813c20c691bSJulian Elischer if (flags & SRQ_PREEMPTED) { 814c20c691bSJulian Elischer TAILQ_INSERT_HEAD(rqh, ke, ke_procq); 815c20c691bSJulian Elischer } else { 816b40ce416SJulian Elischer TAILQ_INSERT_TAIL(rqh, ke, ke_procq); 817dba6c5a6SPeter Wemm } 818c20c691bSJulian Elischer } 819d5a08a60SJake Burkholder 820d5a08a60SJake Burkholder /* 821d5a08a60SJake Burkholder * Return true if there are runnable processes of any priority on the run 822d5a08a60SJake Burkholder * queue, false otherwise. Has no side effects, does not modify the run 823d5a08a60SJake Burkholder * queue structure. 824d5a08a60SJake Burkholder */ 825d5a08a60SJake Burkholder int 826d5a08a60SJake Burkholder runq_check(struct runq *rq) 827d5a08a60SJake Burkholder { 828d5a08a60SJake Burkholder struct rqbits *rqb; 829d5a08a60SJake Burkholder int i; 830d5a08a60SJake Burkholder 831d5a08a60SJake Burkholder rqb = &rq->rq_status; 832d5a08a60SJake Burkholder for (i = 0; i < RQB_LEN; i++) 833d5a08a60SJake Burkholder if (rqb->rqb_bits[i]) { 834d5a08a60SJake Burkholder CTR2(KTR_RUNQ, "runq_check: bits=%#x i=%d", 835d5a08a60SJake Burkholder rqb->rqb_bits[i], i); 836d5a08a60SJake Burkholder return (1); 837dba6c5a6SPeter Wemm } 838d5a08a60SJake Burkholder CTR0(KTR_RUNQ, "runq_check: empty"); 839d5a08a60SJake Burkholder 840d5a08a60SJake Burkholder return (0); 841dba6c5a6SPeter Wemm } 842d5a08a60SJake Burkholder 8436804a3abSJulian Elischer #if defined(SMP) && defined(SCHED_4BSD) 8446804a3abSJulian Elischer int runq_fuzz = 1; 8456804a3abSJulian Elischer SYSCTL_INT(_kern_sched, OID_AUTO, runq_fuzz, CTLFLAG_RW, &runq_fuzz, 0, ""); 8466804a3abSJulian Elischer #endif 8476804a3abSJulian Elischer 848d5a08a60SJake Burkholder /* 849b43179fbSJeff Roberson * Find the highest priority process on the run queue. 850d5a08a60SJake Burkholder */ 851b40ce416SJulian Elischer struct kse * 852d5a08a60SJake Burkholder runq_choose(struct runq *rq) 853d5a08a60SJake Burkholder { 854d5a08a60SJake Burkholder struct rqhead *rqh; 855b40ce416SJulian Elischer struct kse *ke; 856d5a08a60SJake Burkholder int pri; 857d5a08a60SJake Burkholder 858d5a08a60SJake Burkholder mtx_assert(&sched_lock, MA_OWNED); 859e602ba25SJulian Elischer while ((pri = runq_findbit(rq)) != -1) { 860d5a08a60SJake Burkholder rqh = &rq->rq_queues[pri]; 8616804a3abSJulian Elischer #if defined(SMP) && defined(SCHED_4BSD) 8626804a3abSJulian Elischer /* fuzz == 1 is normal.. 0 or less are ignored */ 8636804a3abSJulian Elischer if (runq_fuzz > 1) { 8646804a3abSJulian Elischer /* 8656804a3abSJulian Elischer * In the first couple of entries, check if 8666804a3abSJulian Elischer * there is one for our CPU as a preference. 8676804a3abSJulian Elischer */ 8686804a3abSJulian Elischer int count = runq_fuzz; 8696804a3abSJulian Elischer int cpu = PCPU_GET(cpuid); 8706804a3abSJulian Elischer struct kse *ke2; 8716804a3abSJulian Elischer ke2 = ke = TAILQ_FIRST(rqh); 8726804a3abSJulian Elischer 8736804a3abSJulian Elischer while (count-- && ke2) { 8746804a3abSJulian Elischer if (ke->ke_thread->td_lastcpu == cpu) { 8756804a3abSJulian Elischer ke = ke2; 8766804a3abSJulian Elischer break; 8776804a3abSJulian Elischer } 8786804a3abSJulian Elischer ke2 = TAILQ_NEXT(ke2, ke_procq); 8796804a3abSJulian Elischer } 8806804a3abSJulian Elischer } else 8816804a3abSJulian Elischer #endif 882b40ce416SJulian Elischer ke = TAILQ_FIRST(rqh); 883b40ce416SJulian Elischer KASSERT(ke != NULL, ("runq_choose: no proc on busy queue")); 884e602ba25SJulian Elischer CTR3(KTR_RUNQ, 885e602ba25SJulian Elischer "runq_choose: pri=%d kse=%p rqh=%p", pri, ke, rqh); 886b40ce416SJulian Elischer return (ke); 887d5a08a60SJake Burkholder } 888d5a08a60SJake Burkholder CTR1(KTR_RUNQ, "runq_choose: idleproc pri=%d", pri); 889d5a08a60SJake Burkholder 890e602ba25SJulian Elischer return (NULL); 891d5a08a60SJake Burkholder } 892d5a08a60SJake Burkholder 893d5a08a60SJake Burkholder /* 894e602ba25SJulian Elischer * Remove the KSE from the queue specified by its priority, and clear the 895d5a08a60SJake Burkholder * corresponding status bit if the queue becomes empty. 896e602ba25SJulian Elischer * Caller must set ke->ke_state afterwards. 897d5a08a60SJake Burkholder */ 898d5a08a60SJake Burkholder void 899b40ce416SJulian Elischer runq_remove(struct runq *rq, struct kse *ke) 900d5a08a60SJake Burkholder { 901d5a08a60SJake Burkholder struct rqhead *rqh; 902d5a08a60SJake Burkholder int pri; 903d5a08a60SJake Burkholder 9049eb881f8SSeigo Tanimura KASSERT(ke->ke_proc->p_sflag & PS_INMEM, 9059eb881f8SSeigo Tanimura ("runq_remove: process swapped out")); 906b40ce416SJulian Elischer pri = ke->ke_rqindex; 907d5a08a60SJake Burkholder rqh = &rq->rq_queues[pri]; 908732d9528SJulian Elischer CTR5(KTR_RUNQ, "runq_remove: td=%p, ke=%p pri=%d %d rqh=%p", 909732d9528SJulian Elischer ke->ke_thread, ke, ke->ke_thread->td_priority, pri, rqh); 910b40ce416SJulian Elischer KASSERT(ke != NULL, ("runq_remove: no proc on busy queue")); 911b40ce416SJulian Elischer TAILQ_REMOVE(rqh, ke, ke_procq); 912d5a08a60SJake Burkholder if (TAILQ_EMPTY(rqh)) { 913d5a08a60SJake Burkholder CTR0(KTR_RUNQ, "runq_remove: empty"); 914d5a08a60SJake Burkholder runq_clrbit(rq, pri); 915d5a08a60SJake Burkholder } 916dba6c5a6SPeter Wemm } 917e602ba25SJulian Elischer 918ed062c8dSJulian Elischer /****** functions that are temporarily here ***********/ 919ed062c8dSJulian Elischer #include <vm/uma.h> 920ed062c8dSJulian Elischer extern struct mtx kse_zombie_lock; 921ed062c8dSJulian Elischer 922ed062c8dSJulian Elischer /* 923ed062c8dSJulian Elischer * Allocate scheduler specific per-process resources. 924ed062c8dSJulian Elischer * The thread and ksegrp have already been linked in. 925ed062c8dSJulian Elischer * In this case just set the default concurrency value. 926ed062c8dSJulian Elischer * 927ed062c8dSJulian Elischer * Called from: 928ed062c8dSJulian Elischer * proc_init() (UMA init method) 929ed062c8dSJulian Elischer */ 930ed062c8dSJulian Elischer void 931ed062c8dSJulian Elischer sched_newproc(struct proc *p, struct ksegrp *kg, struct thread *td) 932ed062c8dSJulian Elischer { 933ed062c8dSJulian Elischer 934ed062c8dSJulian Elischer /* This can go in sched_fork */ 935ed062c8dSJulian Elischer sched_init_concurrency(kg); 936ed062c8dSJulian Elischer } 937ed062c8dSJulian Elischer 938ed062c8dSJulian Elischer /* 939ed062c8dSJulian Elischer * thread is being either created or recycled. 940ed062c8dSJulian Elischer * Fix up the per-scheduler resources associated with it. 941ed062c8dSJulian Elischer * Called from: 942ed062c8dSJulian Elischer * sched_fork_thread() 943ed062c8dSJulian Elischer * thread_dtor() (*may go away) 944ed062c8dSJulian Elischer * thread_init() (*may go away) 945ed062c8dSJulian Elischer */ 946ed062c8dSJulian Elischer void 947ed062c8dSJulian Elischer sched_newthread(struct thread *td) 948ed062c8dSJulian Elischer { 949ed062c8dSJulian Elischer struct td_sched *ke; 950ed062c8dSJulian Elischer 951ed062c8dSJulian Elischer ke = (struct td_sched *) (td + 1); 952ed062c8dSJulian Elischer bzero(ke, sizeof(*ke)); 953ed062c8dSJulian Elischer td->td_sched = ke; 954ed062c8dSJulian Elischer ke->ke_thread = td; 955ed062c8dSJulian Elischer ke->ke_state = KES_THREAD; 956ed062c8dSJulian Elischer } 957ed062c8dSJulian Elischer 958ed062c8dSJulian Elischer /* 959ed062c8dSJulian Elischer * Set up an initial concurrency of 1 960ed062c8dSJulian Elischer * and set the given thread (if given) to be using that 961ed062c8dSJulian Elischer * concurrency slot. 962ed062c8dSJulian Elischer * May be used "offline"..before the ksegrp is attached to the world 963ed062c8dSJulian Elischer * and thus wouldn't need schedlock in that case. 964ed062c8dSJulian Elischer * Called from: 965ed062c8dSJulian Elischer * thr_create() 966ed062c8dSJulian Elischer * proc_init() (UMA) via sched_newproc() 967ed062c8dSJulian Elischer */ 968ed062c8dSJulian Elischer void 969ed062c8dSJulian Elischer sched_init_concurrency(struct ksegrp *kg) 970ed062c8dSJulian Elischer { 971ed062c8dSJulian Elischer 972d39063f2SJulian Elischer CTR1(KTR_RUNQ,"kg %p init slots and concurrency to 1", kg); 973ed062c8dSJulian Elischer kg->kg_concurrency = 1; 974ed062c8dSJulian Elischer kg->kg_avail_opennings = 1; 975ed062c8dSJulian Elischer } 976ed062c8dSJulian Elischer 977ed062c8dSJulian Elischer /* 978ed062c8dSJulian Elischer * Change the concurrency of an existing ksegrp to N 979ed062c8dSJulian Elischer * Called from: 980ed062c8dSJulian Elischer * kse_create() 981ed062c8dSJulian Elischer * kse_exit() 982ed062c8dSJulian Elischer * thread_exit() 983ed062c8dSJulian Elischer * thread_single() 984ed062c8dSJulian Elischer */ 985ed062c8dSJulian Elischer void 986ed062c8dSJulian Elischer sched_set_concurrency(struct ksegrp *kg, int concurrency) 987ed062c8dSJulian Elischer { 988ed062c8dSJulian Elischer 989d39063f2SJulian Elischer CTR4(KTR_RUNQ,"kg %p set concurrency to %d, slots %d -> %d", 990d39063f2SJulian Elischer kg, 991d39063f2SJulian Elischer concurrency, 992d39063f2SJulian Elischer kg->kg_avail_opennings, 993d39063f2SJulian Elischer kg->kg_avail_opennings + (concurrency - kg->kg_concurrency)); 994ed062c8dSJulian Elischer kg->kg_avail_opennings += (concurrency - kg->kg_concurrency); 995ed062c8dSJulian Elischer kg->kg_concurrency = concurrency; 996ed062c8dSJulian Elischer } 997ed062c8dSJulian Elischer 998ed062c8dSJulian Elischer /* 999ed062c8dSJulian Elischer * Called from thread_exit() for all exiting thread 1000ed062c8dSJulian Elischer * 1001ed062c8dSJulian Elischer * Not to be confused with sched_exit_thread() 1002ed062c8dSJulian Elischer * that is only called from thread_exit() for threads exiting 1003ed062c8dSJulian Elischer * without the rest of the process exiting because it is also called from 1004ed062c8dSJulian Elischer * sched_exit() and we wouldn't want to call it twice. 1005ed062c8dSJulian Elischer * XXX This can probably be fixed. 1006ed062c8dSJulian Elischer */ 1007ed062c8dSJulian Elischer void 1008ed062c8dSJulian Elischer sched_thread_exit(struct thread *td) 1009ed062c8dSJulian Elischer { 1010ed062c8dSJulian Elischer 1011d39063f2SJulian Elischer SLOT_RELEASE(td->td_ksegrp); 1012ed062c8dSJulian Elischer slot_fill(td->td_ksegrp); 1013ed062c8dSJulian Elischer } 1014ed062c8dSJulian Elischer 1015ed062c8dSJulian Elischer #endif /* KERN_SWITCH_INCLUDE */ 1016