kernel - Add MONITOR/MWAIT support to the LWKT scheduler
[dragonfly.git] / sys / kern / lwkt_thread.c
1 /*
2  * Copyright (c) 2003-2010 The DragonFly Project.  All rights reserved.
3  *
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  */
34
35 /*
36  * Each cpu in a system has its own self-contained light weight kernel
37  * thread scheduler, which means that generally speaking we only need
38  * to use a critical section to avoid problems.  Foreign thread 
39  * scheduling is queued via (async) IPIs.
40  */
41
42 #include <sys/param.h>
43 #include <sys/systm.h>
44 #include <sys/kernel.h>
45 #include <sys/proc.h>
46 #include <sys/rtprio.h>
47 #include <sys/kinfo.h>
48 #include <sys/queue.h>
49 #include <sys/sysctl.h>
50 #include <sys/kthread.h>
51 #include <machine/cpu.h>
52 #include <sys/lock.h>
53 #include <sys/caps.h>
54 #include <sys/spinlock.h>
55 #include <sys/ktr.h>
56
57 #include <sys/thread2.h>
58 #include <sys/spinlock2.h>
59 #include <sys/mplock2.h>
60
61 #include <sys/dsched.h>
62
63 #include <vm/vm.h>
64 #include <vm/vm_param.h>
65 #include <vm/vm_kern.h>
66 #include <vm/vm_object.h>
67 #include <vm/vm_page.h>
68 #include <vm/vm_map.h>
69 #include <vm/vm_pager.h>
70 #include <vm/vm_extern.h>
71
72 #include <machine/stdarg.h>
73 #include <machine/smp.h>
74
75 #if !defined(KTR_CTXSW)
76 #define KTR_CTXSW KTR_ALL
77 #endif
78 KTR_INFO_MASTER(ctxsw);
79 KTR_INFO(KTR_CTXSW, ctxsw, sw, 0, "#cpu[%d].td = %p",
80          sizeof(int) + sizeof(struct thread *));
81 KTR_INFO(KTR_CTXSW, ctxsw, pre, 1, "#cpu[%d].td = %p",
82          sizeof(int) + sizeof(struct thread *));
83 KTR_INFO(KTR_CTXSW, ctxsw, newtd, 2, "#threads[%p].name = %s",
84          sizeof (struct thread *) + sizeof(char *));
85 KTR_INFO(KTR_CTXSW, ctxsw, deadtd, 3, "#threads[%p].name = <dead>", sizeof (struct thread *));
86
87 static MALLOC_DEFINE(M_THREAD, "thread", "lwkt threads");
88
89 #ifdef  INVARIANTS
90 static int panic_on_cscount = 0;
91 #endif
92 static __int64_t switch_count = 0;
93 static __int64_t preempt_hit = 0;
94 static __int64_t preempt_miss = 0;
95 static __int64_t preempt_weird = 0;
96 static __int64_t token_contention_count __debugvar = 0;
97 static int lwkt_use_spin_port;
98 static struct objcache *thread_cache;
99
100 #ifdef SMP
101 static void lwkt_schedule_remote(void *arg, int arg2, struct intrframe *frame);
102 #endif
103 static void lwkt_fairq_accumulate(globaldata_t gd, thread_t td);
104
105 extern void cpu_heavy_restore(void);
106 extern void cpu_lwkt_restore(void);
107 extern void cpu_kthread_restore(void);
108 extern void cpu_idle_restore(void);
109
110 /*
111  * We can make all thread ports use the spin backend instead of the thread
112  * backend.  This should only be set to debug the spin backend.
113  */
114 TUNABLE_INT("lwkt.use_spin_port", &lwkt_use_spin_port);
115
116 #ifdef  INVARIANTS
117 SYSCTL_INT(_lwkt, OID_AUTO, panic_on_cscount, CTLFLAG_RW, &panic_on_cscount, 0,
118     "Panic if attempting to switch lwkt's while mastering cpusync");
119 #endif
120 SYSCTL_QUAD(_lwkt, OID_AUTO, switch_count, CTLFLAG_RW, &switch_count, 0,
121     "Number of switched threads");
122 SYSCTL_QUAD(_lwkt, OID_AUTO, preempt_hit, CTLFLAG_RW, &preempt_hit, 0, 
123     "Successful preemption events");
124 SYSCTL_QUAD(_lwkt, OID_AUTO, preempt_miss, CTLFLAG_RW, &preempt_miss, 0, 
125     "Failed preemption events");
126 SYSCTL_QUAD(_lwkt, OID_AUTO, preempt_weird, CTLFLAG_RW, &preempt_weird, 0,
127     "Number of preempted threads.");
128 #ifdef  INVARIANTS
129 SYSCTL_QUAD(_lwkt, OID_AUTO, token_contention_count, CTLFLAG_RW,
130         &token_contention_count, 0, "spinning due to token contention");
131 #endif
132 static int fairq_enable = 1;
133 SYSCTL_INT(_lwkt, OID_AUTO, fairq_enable, CTLFLAG_RW,
134         &fairq_enable, 0, "Turn on fairq priority accumulators");
135 static int lwkt_spin_loops = 10;
136 SYSCTL_INT(_lwkt, OID_AUTO, spin_loops, CTLFLAG_RW,
137         &lwkt_spin_loops, 0, "");
138 static int lwkt_spin_delay = 1;
139 SYSCTL_INT(_lwkt, OID_AUTO, spin_delay, CTLFLAG_RW,
140         &lwkt_spin_delay, 0, "Scheduler spin delay in microseconds 0=auto");
141 static int lwkt_spin_method = 1;
142 SYSCTL_INT(_lwkt, OID_AUTO, spin_method, CTLFLAG_RW,
143         &lwkt_spin_method, 0, "LWKT scheduler behavior when contended");
144 static int preempt_enable = 1;
145 SYSCTL_INT(_lwkt, OID_AUTO, preempt_enable, CTLFLAG_RW,
146         &preempt_enable, 0, "Enable preemption");
147
148 static __cachealign int lwkt_cseq_rindex;
149 static __cachealign int lwkt_cseq_windex;
150
151 /*
152  * These helper procedures handle the runq, they can only be called from
153  * within a critical section.
154  *
155  * WARNING!  Prior to SMP being brought up it is possible to enqueue and
156  * dequeue threads belonging to other cpus, so be sure to use td->td_gd
157  * instead of 'mycpu' when referencing the globaldata structure.   Once
158  * SMP live enqueuing and dequeueing only occurs on the current cpu.
159  */
160 static __inline
161 void
162 _lwkt_dequeue(thread_t td)
163 {
164     if (td->td_flags & TDF_RUNQ) {
165         struct globaldata *gd = td->td_gd;
166
167         td->td_flags &= ~TDF_RUNQ;
168         TAILQ_REMOVE(&gd->gd_tdrunq, td, td_threadq);
169         gd->gd_fairq_total_pri -= td->td_pri;
170         if (TAILQ_FIRST(&gd->gd_tdrunq) == NULL)
171                 atomic_clear_int(&gd->gd_reqflags, RQF_RUNNING);
172     }
173 }
174
175 /*
176  * Priority enqueue.
177  *
178  * NOTE: There are a limited number of lwkt threads runnable since user
179  *       processes only schedule one at a time per cpu.
180  */
181 static __inline
182 void
183 _lwkt_enqueue(thread_t td)
184 {
185     thread_t xtd;
186
187     if ((td->td_flags & (TDF_RUNQ|TDF_MIGRATING|TDF_BLOCKQ)) == 0) {
188         struct globaldata *gd = td->td_gd;
189
190         td->td_flags |= TDF_RUNQ;
191         xtd = TAILQ_FIRST(&gd->gd_tdrunq);
192         if (xtd == NULL) {
193                 TAILQ_INSERT_TAIL(&gd->gd_tdrunq, td, td_threadq);
194                 atomic_set_int(&gd->gd_reqflags, RQF_RUNNING);
195         } else {
196                 while (xtd && xtd->td_pri > td->td_pri)
197                         xtd = TAILQ_NEXT(xtd, td_threadq);
198                 if (xtd)
199                         TAILQ_INSERT_BEFORE(xtd, td, td_threadq);
200                 else
201                         TAILQ_INSERT_TAIL(&gd->gd_tdrunq, td, td_threadq);
202         }
203         gd->gd_fairq_total_pri += td->td_pri;
204     }
205 }
206
207 static __boolean_t
208 _lwkt_thread_ctor(void *obj, void *privdata, int ocflags)
209 {
210         struct thread *td = (struct thread *)obj;
211
212         td->td_kstack = NULL;
213         td->td_kstack_size = 0;
214         td->td_flags = TDF_ALLOCATED_THREAD;
215         return (1);
216 }
217
218 static void
219 _lwkt_thread_dtor(void *obj, void *privdata)
220 {
221         struct thread *td = (struct thread *)obj;
222
223         KASSERT(td->td_flags & TDF_ALLOCATED_THREAD,
224             ("_lwkt_thread_dtor: not allocated from objcache"));
225         KASSERT((td->td_flags & TDF_ALLOCATED_STACK) && td->td_kstack &&
226                 td->td_kstack_size > 0,
227             ("_lwkt_thread_dtor: corrupted stack"));
228         kmem_free(&kernel_map, (vm_offset_t)td->td_kstack, td->td_kstack_size);
229 }
230
231 /*
232  * Initialize the lwkt s/system.
233  */
234 void
235 lwkt_init(void)
236 {
237     /* An objcache has 2 magazines per CPU so divide cache size by 2. */
238     thread_cache = objcache_create_mbacked(M_THREAD, sizeof(struct thread),
239                         NULL, CACHE_NTHREADS/2,
240                         _lwkt_thread_ctor, _lwkt_thread_dtor, NULL);
241 }
242
243 /*
244  * Schedule a thread to run.  As the current thread we can always safely
245  * schedule ourselves, and a shortcut procedure is provided for that
246  * function.
247  *
248  * (non-blocking, self contained on a per cpu basis)
249  */
250 void
251 lwkt_schedule_self(thread_t td)
252 {
253     crit_enter_quick(td);
254     KASSERT(td != &td->td_gd->gd_idlethread,
255             ("lwkt_schedule_self(): scheduling gd_idlethread is illegal!"));
256     KKASSERT(td->td_lwp == NULL || (td->td_lwp->lwp_flag & LWP_ONRUNQ) == 0);
257     _lwkt_enqueue(td);
258     crit_exit_quick(td);
259 }
260
261 /*
262  * Deschedule a thread.
263  *
264  * (non-blocking, self contained on a per cpu basis)
265  */
266 void
267 lwkt_deschedule_self(thread_t td)
268 {
269     crit_enter_quick(td);
270     _lwkt_dequeue(td);
271     crit_exit_quick(td);
272 }
273
274 /*
275  * LWKTs operate on a per-cpu basis
276  *
277  * WARNING!  Called from early boot, 'mycpu' may not work yet.
278  */
279 void
280 lwkt_gdinit(struct globaldata *gd)
281 {
282     TAILQ_INIT(&gd->gd_tdrunq);
283     TAILQ_INIT(&gd->gd_tdallq);
284 }
285
286 /*
287  * Create a new thread.  The thread must be associated with a process context
288  * or LWKT start address before it can be scheduled.  If the target cpu is
289  * -1 the thread will be created on the current cpu.
290  *
291  * If you intend to create a thread without a process context this function
292  * does everything except load the startup and switcher function.
293  */
294 thread_t
295 lwkt_alloc_thread(struct thread *td, int stksize, int cpu, int flags)
296 {
297     globaldata_t gd = mycpu;
298     void *stack;
299
300     /*
301      * If static thread storage is not supplied allocate a thread.  Reuse
302      * a cached free thread if possible.  gd_freetd is used to keep an exiting
303      * thread intact through the exit.
304      */
305     if (td == NULL) {
306         crit_enter_gd(gd);
307         if ((td = gd->gd_freetd) != NULL) {
308             KKASSERT((td->td_flags & (TDF_RUNNING|TDF_PREEMPT_LOCK|
309                                       TDF_RUNQ)) == 0);
310             gd->gd_freetd = NULL;
311         } else {
312             td = objcache_get(thread_cache, M_WAITOK);
313             KKASSERT((td->td_flags & (TDF_RUNNING|TDF_PREEMPT_LOCK|
314                                       TDF_RUNQ)) == 0);
315         }
316         crit_exit_gd(gd);
317         KASSERT((td->td_flags &
318                  (TDF_ALLOCATED_THREAD|TDF_RUNNING)) == TDF_ALLOCATED_THREAD,
319                 ("lwkt_alloc_thread: corrupted td flags 0x%X", td->td_flags));
320         flags |= td->td_flags & (TDF_ALLOCATED_THREAD|TDF_ALLOCATED_STACK);
321     }
322
323     /*
324      * Try to reuse cached stack.
325      */
326     if ((stack = td->td_kstack) != NULL && td->td_kstack_size != stksize) {
327         if (flags & TDF_ALLOCATED_STACK) {
328             kmem_free(&kernel_map, (vm_offset_t)stack, td->td_kstack_size);
329             stack = NULL;
330         }
331     }
332     if (stack == NULL) {
333         stack = (void *)kmem_alloc_stack(&kernel_map, stksize);
334         flags |= TDF_ALLOCATED_STACK;
335     }
336     if (cpu < 0)
337         lwkt_init_thread(td, stack, stksize, flags, gd);
338     else
339         lwkt_init_thread(td, stack, stksize, flags, globaldata_find(cpu));
340     return(td);
341 }
342
343 /*
344  * Initialize a preexisting thread structure.  This function is used by
345  * lwkt_alloc_thread() and also used to initialize the per-cpu idlethread.
346  *
347  * All threads start out in a critical section at a priority of
348  * TDPRI_KERN_DAEMON.  Higher level code will modify the priority as
349  * appropriate.  This function may send an IPI message when the 
350  * requested cpu is not the current cpu and consequently gd_tdallq may
351  * not be initialized synchronously from the point of view of the originating
352  * cpu.
353  *
354  * NOTE! we have to be careful in regards to creating threads for other cpus
355  * if SMP has not yet been activated.
356  */
357 #ifdef SMP
358
359 static void
360 lwkt_init_thread_remote(void *arg)
361 {
362     thread_t td = arg;
363
364     /*
365      * Protected by critical section held by IPI dispatch
366      */
367     TAILQ_INSERT_TAIL(&td->td_gd->gd_tdallq, td, td_allq);
368 }
369
370 #endif
371
372 /*
373  * lwkt core thread structural initialization.
374  *
375  * NOTE: All threads are initialized as mpsafe threads.
376  */
377 void
378 lwkt_init_thread(thread_t td, void *stack, int stksize, int flags,
379                 struct globaldata *gd)
380 {
381     globaldata_t mygd = mycpu;
382
383     bzero(td, sizeof(struct thread));
384     td->td_kstack = stack;
385     td->td_kstack_size = stksize;
386     td->td_flags = flags;
387     td->td_gd = gd;
388     td->td_pri = TDPRI_KERN_DAEMON;
389     td->td_critcount = 1;
390     td->td_toks_stop = &td->td_toks_base;
391     if (lwkt_use_spin_port)
392         lwkt_initport_spin(&td->td_msgport);
393     else
394         lwkt_initport_thread(&td->td_msgport, td);
395     pmap_init_thread(td);
396 #ifdef SMP
397     /*
398      * Normally initializing a thread for a remote cpu requires sending an
399      * IPI.  However, the idlethread is setup before the other cpus are
400      * activated so we have to treat it as a special case.  XXX manipulation
401      * of gd_tdallq requires the BGL.
402      */
403     if (gd == mygd || td == &gd->gd_idlethread) {
404         crit_enter_gd(mygd);
405         TAILQ_INSERT_TAIL(&gd->gd_tdallq, td, td_allq);
406         crit_exit_gd(mygd);
407     } else {
408         lwkt_send_ipiq(gd, lwkt_init_thread_remote, td);
409     }
410 #else
411     crit_enter_gd(mygd);
412     TAILQ_INSERT_TAIL(&gd->gd_tdallq, td, td_allq);
413     crit_exit_gd(mygd);
414 #endif
415
416     dsched_new_thread(td);
417 }
418
419 void
420 lwkt_set_comm(thread_t td, const char *ctl, ...)
421 {
422     __va_list va;
423
424     __va_start(va, ctl);
425     kvsnprintf(td->td_comm, sizeof(td->td_comm), ctl, va);
426     __va_end(va);
427     KTR_LOG(ctxsw_newtd, td, &td->td_comm[0]);
428 }
429
430 void
431 lwkt_hold(thread_t td)
432 {
433     ++td->td_refs;
434 }
435
436 void
437 lwkt_rele(thread_t td)
438 {
439     KKASSERT(td->td_refs > 0);
440     --td->td_refs;
441 }
442
443 void
444 lwkt_wait_free(thread_t td)
445 {
446     while (td->td_refs)
447         tsleep(td, 0, "tdreap", hz);
448 }
449
450 void
451 lwkt_free_thread(thread_t td)
452 {
453     KKASSERT((td->td_flags & (TDF_RUNNING|TDF_PREEMPT_LOCK|TDF_RUNQ)) == 0);
454     if (td->td_flags & TDF_ALLOCATED_THREAD) {
455         objcache_put(thread_cache, td);
456     } else if (td->td_flags & TDF_ALLOCATED_STACK) {
457         /* client-allocated struct with internally allocated stack */
458         KASSERT(td->td_kstack && td->td_kstack_size > 0,
459             ("lwkt_free_thread: corrupted stack"));
460         kmem_free(&kernel_map, (vm_offset_t)td->td_kstack, td->td_kstack_size);
461         td->td_kstack = NULL;
462         td->td_kstack_size = 0;
463     }
464     KTR_LOG(ctxsw_deadtd, td);
465 }
466
467
468 /*
469  * Switch to the next runnable lwkt.  If no LWKTs are runnable then 
470  * switch to the idlethread.  Switching must occur within a critical
471  * section to avoid races with the scheduling queue.
472  *
473  * We always have full control over our cpu's run queue.  Other cpus
474  * that wish to manipulate our queue must use the cpu_*msg() calls to
475  * talk to our cpu, so a critical section is all that is needed and
476  * the result is very, very fast thread switching.
477  *
478  * The LWKT scheduler uses a fixed priority model and round-robins at
479  * each priority level.  User process scheduling is a totally
480  * different beast and LWKT priorities should not be confused with
481  * user process priorities.
482  *
483  * Note that the td_switch() function cannot do anything that requires
484  * the MP lock since the MP lock will have already been setup for
485  * the target thread (not the current thread).  It's nice to have a scheduler
486  * that does not need the MP lock to work because it allows us to do some
487  * really cool high-performance MP lock optimizations.
488  *
489  * PREEMPTION NOTE: Preemption occurs via lwkt_preempt().  lwkt_switch()
490  * is not called by the current thread in the preemption case, only when
491  * the preempting thread blocks (in order to return to the original thread).
492  */
493 void
494 lwkt_switch(void)
495 {
496     globaldata_t gd = mycpu;
497     thread_t td = gd->gd_curthread;
498     thread_t ntd;
499     thread_t xtd;
500     int spinning = lwkt_spin_loops;     /* loops before HLTing */
501     int reqflags;
502     int cseq;
503     int oseq;
504
505     /*
506      * Switching from within a 'fast' (non thread switched) interrupt or IPI
507      * is illegal.  However, we may have to do it anyway if we hit a fatal
508      * kernel trap or we have paniced.
509      *
510      * If this case occurs save and restore the interrupt nesting level.
511      */
512     if (gd->gd_intr_nesting_level) {
513         int savegdnest;
514         int savegdtrap;
515
516         if (gd->gd_trap_nesting_level == 0 && panic_cpu_gd != mycpu) {
517             panic("lwkt_switch: Attempt to switch from a "
518                   "a fast interrupt, ipi, or hard code section, "
519                   "td %p\n",
520                   td);
521         } else {
522             savegdnest = gd->gd_intr_nesting_level;
523             savegdtrap = gd->gd_trap_nesting_level;
524             gd->gd_intr_nesting_level = 0;
525             gd->gd_trap_nesting_level = 0;
526             if ((td->td_flags & TDF_PANICWARN) == 0) {
527                 td->td_flags |= TDF_PANICWARN;
528                 kprintf("Warning: thread switch from interrupt, IPI, "
529                         "or hard code section.\n"
530                         "thread %p (%s)\n", td, td->td_comm);
531                 print_backtrace(-1);
532             }
533             lwkt_switch();
534             gd->gd_intr_nesting_level = savegdnest;
535             gd->gd_trap_nesting_level = savegdtrap;
536             return;
537         }
538     }
539
540     /*
541      * Passive release (used to transition from user to kernel mode
542      * when we block or switch rather then when we enter the kernel).
543      * This function is NOT called if we are switching into a preemption
544      * or returning from a preemption.  Typically this causes us to lose
545      * our current process designation (if we have one) and become a true
546      * LWKT thread, and may also hand the current process designation to
547      * another process and schedule thread.
548      */
549     if (td->td_release)
550             td->td_release(td);
551
552     crit_enter_gd(gd);
553     if (TD_TOKS_HELD(td))
554             lwkt_relalltokens(td);
555
556     /*
557      * We had better not be holding any spin locks, but don't get into an
558      * endless panic loop.
559      */
560     KASSERT(gd->gd_spinlocks_wr == 0 || panicstr != NULL, 
561             ("lwkt_switch: still holding %d exclusive spinlocks!",
562              gd->gd_spinlocks_wr));
563
564
565 #ifdef SMP
566 #ifdef  INVARIANTS
567     if (td->td_cscount) {
568         kprintf("Diagnostic: attempt to switch while mastering cpusync: %p\n",
569                 td);
570         if (panic_on_cscount)
571             panic("switching while mastering cpusync");
572     }
573 #endif
574 #endif
575
576     /*
577      * If we had preempted another thread on this cpu, resume the preempted
578      * thread.  This occurs transparently, whether the preempted thread
579      * was scheduled or not (it may have been preempted after descheduling
580      * itself).
581      *
582      * We have to setup the MP lock for the original thread after backing
583      * out the adjustment that was made to curthread when the original
584      * was preempted.
585      */
586     if ((ntd = td->td_preempted) != NULL) {
587         KKASSERT(ntd->td_flags & TDF_PREEMPT_LOCK);
588         ntd->td_flags |= TDF_PREEMPT_DONE;
589
590         /*
591          * The interrupt may have woken a thread up, we need to properly
592          * set the reschedule flag if the originally interrupted thread is
593          * at a lower priority.
594          */
595         if (TAILQ_FIRST(&gd->gd_tdrunq) &&
596             TAILQ_FIRST(&gd->gd_tdrunq)->td_pri > ntd->td_pri) {
597             need_lwkt_resched();
598         }
599         /* YYY release mp lock on switchback if original doesn't need it */
600         goto havethread_preempted;
601     }
602
603     /*
604      * Implement round-robin fairq with priority insertion.  The priority
605      * insertion is handled by _lwkt_enqueue()
606      *
607      * We have to adjust the MP lock for the target thread.  If we
608      * need the MP lock and cannot obtain it we try to locate a
609      * thread that does not need the MP lock.  If we cannot, we spin
610      * instead of HLT.
611      *
612      * A similar issue exists for the tokens held by the target thread.
613      * If we cannot obtain ownership of the tokens we cannot immediately
614      * schedule the thread.
615      */
616     for (;;) {
617         /*
618          * Clear RQF_AST_LWKT_RESCHED (we handle the reschedule request)
619          * and set RQF_WAKEUP (prevent unnecessary IPIs from being
620          * received).
621          */
622         for (;;) {
623             reqflags = gd->gd_reqflags;
624             if (atomic_cmpset_int(&gd->gd_reqflags, reqflags,
625                                   (reqflags & ~RQF_AST_LWKT_RESCHED) |
626                                   RQF_WAKEUP)) {
627                 break;
628             }
629         }
630
631         /*
632          * Hotpath - pull the head of the run queue and attempt to schedule
633          * it.  Fairq exhaustion moves the task to the end of the list.  If
634          * no threads are runnable we switch to the idle thread.
635          */
636         for (;;) {
637             ntd = TAILQ_FIRST(&gd->gd_tdrunq);
638
639             if (ntd == NULL) {
640                 /*
641                  * Runq is empty, switch to idle and clear RQF_WAKEUP
642                  * to allow it to halt.
643                  */
644                 ntd = &gd->gd_idlethread;
645 #ifdef SMP
646                 if (gd->gd_trap_nesting_level == 0 && panicstr == NULL)
647                     ASSERT_NO_TOKENS_HELD(ntd);
648 #endif
649                 cpu_time.cp_msg[0] = 0;
650                 cpu_time.cp_stallpc = 0;
651                 atomic_clear_int(&gd->gd_reqflags, RQF_WAKEUP);
652                 goto haveidle;
653             }
654
655             if (ntd->td_fairq_accum >= 0)
656                     break;
657
658             splz_check();
659             lwkt_fairq_accumulate(gd, ntd);
660             TAILQ_REMOVE(&gd->gd_tdrunq, ntd, td_threadq);
661             TAILQ_INSERT_TAIL(&gd->gd_tdrunq, ntd, td_threadq);
662         }
663
664         /*
665          * Hotpath - schedule ntd.  Leaves RQF_WAKEUP set to prevent
666          *           unwanted decontention IPIs.
667          *
668          * NOTE: For UP there is no mplock and lwkt_getalltokens()
669          *           always succeeds.
670          */
671         if (TD_TOKS_NOT_HELD(ntd) || lwkt_getalltokens(ntd))
672             goto havethread;
673
674         /*
675          * Coldpath (SMP only since tokens always succeed on UP)
676          *
677          * We had some contention on the thread we wanted to schedule.
678          * What we do now is try to find a thread that we can schedule
679          * in its stead until decontention reschedules on our cpu.
680          *
681          * The coldpath scan does NOT rearrange threads in the run list
682          * and it also ignores the accumulator.
683          *
684          * We do not immediately schedule a user priority thread, instead
685          * we record it in xtd and continue looking for kernel threads.
686          * A cpu can only have one user priority thread (normally) so just
687          * record the first one.
688          *
689          * NOTE: This scan will also include threads whos fairq's were
690          *       accumulated in the first loop.
691          */
692         ++token_contention_count;
693         xtd = NULL;
694         while ((ntd = TAILQ_NEXT(ntd, td_threadq)) != NULL) {
695             /*
696              * Try to switch to this thread.  If the thread is running at
697              * user priority we clear WAKEUP to allow decontention IPIs
698              * (since this thread is simply running until the one we wanted
699              * decontends), and we make sure that LWKT_RESCHED is not set.
700              *
701              * Otherwise for kernel threads we leave WAKEUP set to avoid
702              * unnecessary decontention IPIs.
703              */
704             if (ntd->td_pri < TDPRI_KERN_LPSCHED) {
705                 if (xtd == NULL)
706                     xtd = ntd;
707                 continue;
708             }
709
710             /*
711              * Do not let the fairq get too negative.  Even though we are
712              * ignoring it atm once the scheduler decontends a very negative
713              * thread will get moved to the end of the queue.
714              */
715             if (TD_TOKS_NOT_HELD(ntd) || lwkt_getalltokens(ntd)) {
716                 if (ntd->td_fairq_accum < -TDFAIRQ_MAX(gd))
717                     ntd->td_fairq_accum = -TDFAIRQ_MAX(gd);
718                 goto havethread;
719             }
720
721             /*
722              * Well fubar, this thread is contended as well, loop
723              */
724             /* */
725         }
726
727         /*
728          * We exhausted the run list but we may have recorded a user
729          * thread to try.  We have three choices based on
730          * lwkt.decontention_method.
731          *
732          * (0) Atomically clear RQF_WAKEUP in order to receive decontention
733          *     IPIs (to interrupt the user process) and test
734          *     RQF_AST_LWKT_RESCHED at the same time.
735          *
736          *     This results in significant decontention IPI traffic but may
737          *     be more responsive.
738          *
739          * (1) Leave RQF_WAKEUP set so we do not receive a decontention IPI.
740          *     An automatic LWKT reschedule will occur on the next hardclock
741          *     (typically 100hz).
742          *
743          *     This results in no decontention IPI traffic but may be less
744          *     responsive.  This is the default.
745          *
746          * (2) Refuse to schedule the user process at this time.
747          *
748          *     This is highly experimental and should not be used under
749          *     normal circumstances.  This can cause a user process to
750          *     get starved out in situations where kernel threads are
751          *     fighting each other for tokens.
752          */
753         if (xtd) {
754             ntd = xtd;
755
756             switch(lwkt_spin_method) {
757             case 0:
758                 for (;;) {
759                     reqflags = gd->gd_reqflags;
760                     if (atomic_cmpset_int(&gd->gd_reqflags,
761                                           reqflags,
762                                           reqflags & ~RQF_WAKEUP)) {
763                         break;
764                     }
765                 }
766                 break;
767             case 1:
768                 reqflags = gd->gd_reqflags;
769                 break;
770             default:
771                 goto skip;
772                 break;
773             }
774             if ((reqflags & RQF_AST_LWKT_RESCHED) == 0 &&
775                 (TD_TOKS_NOT_HELD(ntd) || lwkt_getalltokens(ntd))
776             ) {
777                 if (ntd->td_fairq_accum < -TDFAIRQ_MAX(gd))
778                     ntd->td_fairq_accum = -TDFAIRQ_MAX(gd);
779                 goto havethread;
780             }
781
782 skip:
783             /*
784              * Make sure RQF_WAKEUP is set if we failed to schedule the
785              * user thread to prevent the idle thread from halting.
786              */
787             atomic_set_int(&gd->gd_reqflags, RQF_WAKEUP);
788         }
789
790         /*
791          * We exhausted the run list, meaning that all runnable threads
792          * are contended.
793          */
794         cpu_pause();
795         ntd = &gd->gd_idlethread;
796 #ifdef SMP
797         if (gd->gd_trap_nesting_level == 0 && panicstr == NULL)
798             ASSERT_NO_TOKENS_HELD(ntd);
799         /* contention case, do not clear contention mask */
800 #endif
801
802         /*
803          * Ok, we might want to spin a few times as some tokens are held for
804          * very short periods of time and IPI overhead is 1uS or worse
805          * (meaning it is usually better to spin).  Regardless we have to
806          * call splz_check() to be sure to service any interrupts blocked
807          * by our critical section, otherwise we could livelock e.g. IPIs.
808          *
809          * The IPI mechanic is really a last resort.  In nearly all other
810          * cases RQF_WAKEUP is left set to prevent decontention IPIs.
811          *
812          * When we decide not to spin we clear RQF_WAKEUP and switch to
813          * the idle thread.  Clearing RQF_WEAKEUP allows the idle thread
814          * to halt and decontended tokens will issue an IPI to us.  The
815          * idle thread will check for pending reschedules already set
816          * (RQF_AST_LWKT_RESCHED) before actually halting so we don't have
817          * to here.
818          */
819         if (spinning <= 0) {
820             atomic_clear_int(&gd->gd_reqflags, RQF_WAKEUP);
821             goto haveidle;
822         }
823         --spinning;
824
825         /*
826          * When spinning a delay is required both to avoid livelocks from
827          * token order reversals (a thread may be trying to acquire multiple
828          * tokens), and also to reduce cpu cache management traffic.
829          *
830          * In order to scale to a large number of CPUs we use a time slot
831          * resequencer to force contending cpus into non-contending
832          * time-slots.  The scheduler may still contend with the lock holder
833          * but will not (generally) contend with all the other cpus trying
834          * trying to get the same token.
835          *
836          * The resequencer uses a FIFO counter mechanic.  The owner of the
837          * rindex at the head of the FIFO is allowed to pull itself off
838          * the FIFO and fetchadd is used to enter into the FIFO.  This bit
839          * of code is VERY cache friendly and forces all spinning schedulers
840          * into their own time slots.
841          *
842          * This code has been tested to 48-cpus and caps the cache
843          * contention load at ~1uS intervals regardless of the number of
844          * cpus.  Scaling beyond 64 cpus might require additional smarts
845          * (such as separate FIFOs for specific token cases).
846          *
847          * WARNING!  We can't call splz_check() or anything else here as
848          *           it could cause a deadlock.
849          */
850         cseq = atomic_fetchadd_int(&lwkt_cseq_windex, 1);
851         while ((oseq = lwkt_cseq_rindex) != cseq) {
852             cpu_ccfence();
853             if (cpu_mi_feature & CPU_MI_MONITOR) {
854                 cpu_mmw_pause_int(&lwkt_cseq_rindex, oseq);
855             } else {
856                 DELAY(1);
857                 cpu_lfence();
858             }
859         }
860         cseq = lwkt_spin_delay; /* don't trust the system operator */
861         cpu_ccfence();
862         if (cseq < 1)
863             cseq = 1;
864         if (cseq > 1000)
865             cseq = 1000;
866         DELAY(cseq);
867         atomic_add_int(&lwkt_cseq_rindex, 1);
868         splz_check();
869         /* highest level for(;;) loop */
870     }
871
872 havethread:
873     /*
874      * We must always decrement td_fairq_accum on non-idle threads just
875      * in case a thread never gets a tick due to being in a continuous
876      * critical section.  The page-zeroing code does this, for example.
877      *
878      * If the thread we came up with is a higher or equal priority verses
879      * the thread at the head of the queue we move our thread to the
880      * front.  This way we can always check the front of the queue.
881      */
882     ++gd->gd_cnt.v_swtch;
883     --ntd->td_fairq_accum;
884     ntd->td_wmesg = NULL;
885     xtd = TAILQ_FIRST(&gd->gd_tdrunq);
886     if (ntd != xtd && ntd->td_pri >= xtd->td_pri) {
887         TAILQ_REMOVE(&gd->gd_tdrunq, ntd, td_threadq);
888         TAILQ_INSERT_HEAD(&gd->gd_tdrunq, ntd, td_threadq);
889     }
890
891 havethread_preempted:
892     /*
893      * If the new target does not need the MP lock and we are holding it,
894      * release the MP lock.  If the new target requires the MP lock we have
895      * already acquired it for the target.
896      */
897     ;
898 haveidle:
899     KASSERT(ntd->td_critcount,
900             ("priority problem in lwkt_switch %d %d",
901             td->td_critcount, ntd->td_critcount));
902
903     if (td != ntd) {
904         ++switch_count;
905         KTR_LOG(ctxsw_sw, gd->gd_cpuid, ntd);
906         td->td_switch(ntd);
907     }
908     /* NOTE: current cpu may have changed after switch */
909     crit_exit_quick(td);
910 }
911
912 /*
913  * Request that the target thread preempt the current thread.  Preemption
914  * only works under a specific set of conditions:
915  *
916  *      - We are not preempting ourselves
917  *      - The target thread is owned by the current cpu
918  *      - We are not currently being preempted
919  *      - The target is not currently being preempted
920  *      - We are not holding any spin locks
921  *      - The target thread is not holding any tokens
922  *      - We are able to satisfy the target's MP lock requirements (if any).
923  *
924  * THE CALLER OF LWKT_PREEMPT() MUST BE IN A CRITICAL SECTION.  Typically
925  * this is called via lwkt_schedule() through the td_preemptable callback.
926  * critcount is the managed critical priority that we should ignore in order
927  * to determine whether preemption is possible (aka usually just the crit
928  * priority of lwkt_schedule() itself).
929  *
930  * XXX at the moment we run the target thread in a critical section during
931  * the preemption in order to prevent the target from taking interrupts
932  * that *WE* can't.  Preemption is strictly limited to interrupt threads
933  * and interrupt-like threads, outside of a critical section, and the
934  * preempted source thread will be resumed the instant the target blocks
935  * whether or not the source is scheduled (i.e. preemption is supposed to
936  * be as transparent as possible).
937  */
938 void
939 lwkt_preempt(thread_t ntd, int critcount)
940 {
941     struct globaldata *gd = mycpu;
942     thread_t td;
943     int save_gd_intr_nesting_level;
944
945     /*
946      * The caller has put us in a critical section.  We can only preempt
947      * if the caller of the caller was not in a critical section (basically
948      * a local interrupt), as determined by the 'critcount' parameter.  We
949      * also can't preempt if the caller is holding any spinlocks (even if
950      * he isn't in a critical section).  This also handles the tokens test.
951      *
952      * YYY The target thread must be in a critical section (else it must
953      * inherit our critical section?  I dunno yet).
954      *
955      * Set need_lwkt_resched() unconditionally for now YYY.
956      */
957     KASSERT(ntd->td_critcount, ("BADCRIT0 %d", ntd->td_pri));
958
959     if (preempt_enable == 0) {
960         ++preempt_miss;
961         return;
962     }
963
964     td = gd->gd_curthread;
965     if (ntd->td_pri <= td->td_pri) {
966         ++preempt_miss;
967         return;
968     }
969     if (td->td_critcount > critcount) {
970         ++preempt_miss;
971         need_lwkt_resched();
972         return;
973     }
974 #ifdef SMP
975     if (ntd->td_gd != gd) {
976         ++preempt_miss;
977         need_lwkt_resched();
978         return;
979     }
980 #endif
981     /*
982      * We don't have to check spinlocks here as they will also bump
983      * td_critcount.
984      *
985      * Do not try to preempt if the target thread is holding any tokens.
986      * We could try to acquire the tokens but this case is so rare there
987      * is no need to support it.
988      */
989     KKASSERT(gd->gd_spinlocks_wr == 0);
990
991     if (TD_TOKS_HELD(ntd)) {
992         ++preempt_miss;
993         need_lwkt_resched();
994         return;
995     }
996     if (td == ntd || ((td->td_flags | ntd->td_flags) & TDF_PREEMPT_LOCK)) {
997         ++preempt_weird;
998         need_lwkt_resched();
999         return;
1000     }
1001     if (ntd->td_preempted) {
1002         ++preempt_hit;
1003         need_lwkt_resched();
1004         return;
1005     }
1006
1007     /*
1008      * Since we are able to preempt the current thread, there is no need to
1009      * call need_lwkt_resched().
1010      *
1011      * We must temporarily clear gd_intr_nesting_level around the switch
1012      * since switchouts from the target thread are allowed (they will just
1013      * return to our thread), and since the target thread has its own stack.
1014      */
1015     ++preempt_hit;
1016     ntd->td_preempted = td;
1017     td->td_flags |= TDF_PREEMPT_LOCK;
1018     KTR_LOG(ctxsw_pre, gd->gd_cpuid, ntd);
1019     save_gd_intr_nesting_level = gd->gd_intr_nesting_level;
1020     gd->gd_intr_nesting_level = 0;
1021     td->td_switch(ntd);
1022     gd->gd_intr_nesting_level = save_gd_intr_nesting_level;
1023
1024     KKASSERT(ntd->td_preempted && (td->td_flags & TDF_PREEMPT_DONE));
1025     ntd->td_preempted = NULL;
1026     td->td_flags &= ~(TDF_PREEMPT_LOCK|TDF_PREEMPT_DONE);
1027 }
1028
1029 /*
1030  * Conditionally call splz() if gd_reqflags indicates work is pending.
1031  * This will work inside a critical section but not inside a hard code
1032  * section.
1033  *
1034  * (self contained on a per cpu basis)
1035  */
1036 void
1037 splz_check(void)
1038 {
1039     globaldata_t gd = mycpu;
1040     thread_t td = gd->gd_curthread;
1041
1042     if ((gd->gd_reqflags & RQF_IDLECHECK_MASK) &&
1043         gd->gd_intr_nesting_level == 0 &&
1044         td->td_nest_count < 2)
1045     {
1046         splz();
1047     }
1048 }
1049
1050 /*
1051  * This version is integrated into crit_exit, reqflags has already
1052  * been tested but td_critcount has not.
1053  *
1054  * We only want to execute the splz() on the 1->0 transition of
1055  * critcount and not in a hard code section or if too deeply nested.
1056  */
1057 void
1058 lwkt_maybe_splz(thread_t td)
1059 {
1060     globaldata_t gd = td->td_gd;
1061
1062     if (td->td_critcount == 0 &&
1063         gd->gd_intr_nesting_level == 0 &&
1064         td->td_nest_count < 2)
1065     {
1066         splz();
1067     }
1068 }
1069
1070 /*
1071  * This function is used to negotiate a passive release of the current
1072  * process/lwp designation with the user scheduler, allowing the user
1073  * scheduler to schedule another user thread.  The related kernel thread
1074  * (curthread) continues running in the released state.
1075  */
1076 void
1077 lwkt_passive_release(struct thread *td)
1078 {
1079     struct lwp *lp = td->td_lwp;
1080
1081     td->td_release = NULL;
1082     lwkt_setpri_self(TDPRI_KERN_USER);
1083     lp->lwp_proc->p_usched->release_curproc(lp);
1084 }
1085
1086
1087 /*
1088  * This implements a normal yield.  This routine is virtually a nop if
1089  * there is nothing to yield to but it will always run any pending interrupts
1090  * if called from a critical section.
1091  *
1092  * This yield is designed for kernel threads without a user context.
1093  *
1094  * (self contained on a per cpu basis)
1095  */
1096 void
1097 lwkt_yield(void)
1098 {
1099     globaldata_t gd = mycpu;
1100     thread_t td = gd->gd_curthread;
1101     thread_t xtd;
1102
1103     if ((gd->gd_reqflags & RQF_IDLECHECK_MASK) && td->td_nest_count < 2)
1104         splz();
1105     if (td->td_fairq_accum < 0) {
1106         lwkt_schedule_self(curthread);
1107         lwkt_switch();
1108     } else {
1109         xtd = TAILQ_FIRST(&gd->gd_tdrunq);
1110         if (xtd && xtd->td_pri > td->td_pri) {
1111             lwkt_schedule_self(curthread);
1112             lwkt_switch();
1113         }
1114     }
1115 }
1116
1117 /*
1118  * This yield is designed for kernel threads with a user context.
1119  *
1120  * The kernel acting on behalf of the user is potentially cpu-bound,
1121  * this function will efficiently allow other threads to run and also
1122  * switch to other processes by releasing.
1123  *
1124  * The lwkt_user_yield() function is designed to have very low overhead
1125  * if no yield is determined to be needed.
1126  */
1127 void
1128 lwkt_user_yield(void)
1129 {
1130     globaldata_t gd = mycpu;
1131     thread_t td = gd->gd_curthread;
1132
1133     /*
1134      * Always run any pending interrupts in case we are in a critical
1135      * section.
1136      */
1137     if ((gd->gd_reqflags & RQF_IDLECHECK_MASK) && td->td_nest_count < 2)
1138         splz();
1139
1140     /*
1141      * Switch (which forces a release) if another kernel thread needs
1142      * the cpu, if userland wants us to resched, or if our kernel
1143      * quantum has run out.
1144      */
1145     if (lwkt_resched_wanted() ||
1146         user_resched_wanted() ||
1147         td->td_fairq_accum < 0)
1148     {
1149         lwkt_switch();
1150     }
1151
1152 #if 0
1153     /*
1154      * Reacquire the current process if we are released.
1155      *
1156      * XXX not implemented atm.  The kernel may be holding locks and such,
1157      *     so we want the thread to continue to receive cpu.
1158      */
1159     if (td->td_release == NULL && lp) {
1160         lp->lwp_proc->p_usched->acquire_curproc(lp);
1161         td->td_release = lwkt_passive_release;
1162         lwkt_setpri_self(TDPRI_USER_NORM);
1163     }
1164 #endif
1165 }
1166
1167 /*
1168  * Generic schedule.  Possibly schedule threads belonging to other cpus and
1169  * deal with threads that might be blocked on a wait queue.
1170  *
1171  * We have a little helper inline function which does additional work after
1172  * the thread has been enqueued, including dealing with preemption and
1173  * setting need_lwkt_resched() (which prevents the kernel from returning
1174  * to userland until it has processed higher priority threads).
1175  *
1176  * It is possible for this routine to be called after a failed _enqueue
1177  * (due to the target thread migrating, sleeping, or otherwise blocked).
1178  * We have to check that the thread is actually on the run queue!
1179  *
1180  * reschedok is an optimized constant propagated from lwkt_schedule() or
1181  * lwkt_schedule_noresched().  By default it is non-zero, causing a
1182  * reschedule to be requested if the target thread has a higher priority.
1183  * The port messaging code will set MSG_NORESCHED and cause reschedok to
1184  * be 0, prevented undesired reschedules.
1185  */
1186 static __inline
1187 void
1188 _lwkt_schedule_post(globaldata_t gd, thread_t ntd, int ccount, int reschedok)
1189 {
1190     thread_t otd;
1191
1192     if (ntd->td_flags & TDF_RUNQ) {
1193         if (ntd->td_preemptable && reschedok) {
1194             ntd->td_preemptable(ntd, ccount);   /* YYY +token */
1195         } else if (reschedok) {
1196             otd = curthread;
1197             if (ntd->td_pri > otd->td_pri)
1198                 need_lwkt_resched();
1199         }
1200
1201         /*
1202          * Give the thread a little fair share scheduler bump if it
1203          * has been asleep for a while.  This is primarily to avoid
1204          * a degenerate case for interrupt threads where accumulator
1205          * crosses into negative territory unnecessarily.
1206          */
1207         if (ntd->td_fairq_lticks != ticks) {
1208             ntd->td_fairq_lticks = ticks;
1209             ntd->td_fairq_accum += gd->gd_fairq_total_pri;
1210             if (ntd->td_fairq_accum > TDFAIRQ_MAX(gd))
1211                     ntd->td_fairq_accum = TDFAIRQ_MAX(gd);
1212         }
1213     }
1214 }
1215
1216 static __inline
1217 void
1218 _lwkt_schedule(thread_t td, int reschedok)
1219 {
1220     globaldata_t mygd = mycpu;
1221
1222     KASSERT(td != &td->td_gd->gd_idlethread,
1223             ("lwkt_schedule(): scheduling gd_idlethread is illegal!"));
1224     crit_enter_gd(mygd);
1225     KKASSERT(td->td_lwp == NULL || (td->td_lwp->lwp_flag & LWP_ONRUNQ) == 0);
1226     if (td == mygd->gd_curthread) {
1227         _lwkt_enqueue(td);
1228     } else {
1229         /*
1230          * If we own the thread, there is no race (since we are in a
1231          * critical section).  If we do not own the thread there might
1232          * be a race but the target cpu will deal with it.
1233          */
1234 #ifdef SMP
1235         if (td->td_gd == mygd) {
1236             _lwkt_enqueue(td);
1237             _lwkt_schedule_post(mygd, td, 1, reschedok);
1238         } else {
1239             lwkt_send_ipiq3(td->td_gd, lwkt_schedule_remote, td, 0);
1240         }
1241 #else
1242         _lwkt_enqueue(td);
1243         _lwkt_schedule_post(mygd, td, 1, reschedok);
1244 #endif
1245     }
1246     crit_exit_gd(mygd);
1247 }
1248
1249 void
1250 lwkt_schedule(thread_t td)
1251 {
1252     _lwkt_schedule(td, 1);
1253 }
1254
1255 void
1256 lwkt_schedule_noresched(thread_t td)
1257 {
1258     _lwkt_schedule(td, 0);
1259 }
1260
1261 #ifdef SMP
1262
1263 /*
1264  * When scheduled remotely if frame != NULL the IPIQ is being
1265  * run via doreti or an interrupt then preemption can be allowed.
1266  *
1267  * To allow preemption we have to drop the critical section so only
1268  * one is present in _lwkt_schedule_post.
1269  */
1270 static void
1271 lwkt_schedule_remote(void *arg, int arg2, struct intrframe *frame)
1272 {
1273     thread_t td = curthread;
1274     thread_t ntd = arg;
1275
1276     if (frame && ntd->td_preemptable) {
1277         crit_exit_noyield(td);
1278         _lwkt_schedule(ntd, 1);
1279         crit_enter_quick(td);
1280     } else {
1281         _lwkt_schedule(ntd, 1);
1282     }
1283 }
1284
1285 /*
1286  * Thread migration using a 'Pull' method.  The thread may or may not be
1287  * the current thread.  It MUST be descheduled and in a stable state.
1288  * lwkt_giveaway() must be called on the cpu owning the thread.
1289  *
1290  * At any point after lwkt_giveaway() is called, the target cpu may
1291  * 'pull' the thread by calling lwkt_acquire().
1292  *
1293  * We have to make sure the thread is not sitting on a per-cpu tsleep
1294  * queue or it will blow up when it moves to another cpu.
1295  *
1296  * MPSAFE - must be called under very specific conditions.
1297  */
1298 void
1299 lwkt_giveaway(thread_t td)
1300 {
1301     globaldata_t gd = mycpu;
1302
1303     crit_enter_gd(gd);
1304     if (td->td_flags & TDF_TSLEEPQ)
1305         tsleep_remove(td);
1306     KKASSERT(td->td_gd == gd);
1307     TAILQ_REMOVE(&gd->gd_tdallq, td, td_allq);
1308     td->td_flags |= TDF_MIGRATING;
1309     crit_exit_gd(gd);
1310 }
1311
1312 void
1313 lwkt_acquire(thread_t td)
1314 {
1315     globaldata_t gd;
1316     globaldata_t mygd;
1317
1318     KKASSERT(td->td_flags & TDF_MIGRATING);
1319     gd = td->td_gd;
1320     mygd = mycpu;
1321     if (gd != mycpu) {
1322         cpu_lfence();
1323         KKASSERT((td->td_flags & TDF_RUNQ) == 0);
1324         crit_enter_gd(mygd);
1325         while (td->td_flags & (TDF_RUNNING|TDF_PREEMPT_LOCK)) {
1326 #ifdef SMP
1327             lwkt_process_ipiq();
1328 #endif
1329             cpu_lfence();
1330         }
1331         cpu_mfence();
1332         td->td_gd = mygd;
1333         TAILQ_INSERT_TAIL(&mygd->gd_tdallq, td, td_allq);
1334         td->td_flags &= ~TDF_MIGRATING;
1335         crit_exit_gd(mygd);
1336     } else {
1337         crit_enter_gd(mygd);
1338         TAILQ_INSERT_TAIL(&mygd->gd_tdallq, td, td_allq);
1339         td->td_flags &= ~TDF_MIGRATING;
1340         crit_exit_gd(mygd);
1341     }
1342 }
1343
1344 #endif
1345
1346 /*
1347  * Generic deschedule.  Descheduling threads other then your own should be
1348  * done only in carefully controlled circumstances.  Descheduling is 
1349  * asynchronous.  
1350  *
1351  * This function may block if the cpu has run out of messages.
1352  */
1353 void
1354 lwkt_deschedule(thread_t td)
1355 {
1356     crit_enter();
1357 #ifdef SMP
1358     if (td == curthread) {
1359         _lwkt_dequeue(td);
1360     } else {
1361         if (td->td_gd == mycpu) {
1362             _lwkt_dequeue(td);
1363         } else {
1364             lwkt_send_ipiq(td->td_gd, (ipifunc1_t)lwkt_deschedule, td);
1365         }
1366     }
1367 #else
1368     _lwkt_dequeue(td);
1369 #endif
1370     crit_exit();
1371 }
1372
1373 /*
1374  * Set the target thread's priority.  This routine does not automatically
1375  * switch to a higher priority thread, LWKT threads are not designed for
1376  * continuous priority changes.  Yield if you want to switch.
1377  */
1378 void
1379 lwkt_setpri(thread_t td, int pri)
1380 {
1381     KKASSERT(td->td_gd == mycpu);
1382     if (td->td_pri != pri) {
1383         KKASSERT(pri >= 0);
1384         crit_enter();
1385         if (td->td_flags & TDF_RUNQ) {
1386             _lwkt_dequeue(td);
1387             td->td_pri = pri;
1388             _lwkt_enqueue(td);
1389         } else {
1390             td->td_pri = pri;
1391         }
1392         crit_exit();
1393     }
1394 }
1395
1396 /*
1397  * Set the initial priority for a thread prior to it being scheduled for
1398  * the first time.  The thread MUST NOT be scheduled before or during
1399  * this call.  The thread may be assigned to a cpu other then the current
1400  * cpu.
1401  *
1402  * Typically used after a thread has been created with TDF_STOPPREQ,
1403  * and before the thread is initially scheduled.
1404  */
1405 void
1406 lwkt_setpri_initial(thread_t td, int pri)
1407 {
1408     KKASSERT(pri >= 0);
1409     KKASSERT((td->td_flags & TDF_RUNQ) == 0);
1410     td->td_pri = pri;
1411 }
1412
1413 void
1414 lwkt_setpri_self(int pri)
1415 {
1416     thread_t td = curthread;
1417
1418     KKASSERT(pri >= 0 && pri <= TDPRI_MAX);
1419     crit_enter();
1420     if (td->td_flags & TDF_RUNQ) {
1421         _lwkt_dequeue(td);
1422         td->td_pri = pri;
1423         _lwkt_enqueue(td);
1424     } else {
1425         td->td_pri = pri;
1426     }
1427     crit_exit();
1428 }
1429
1430 /*
1431  * 1/hz tick (typically 10ms) x TDFAIRQ_SCALE (typ 8) = 80ms full cycle.
1432  *
1433  * Example: two competing threads, same priority N.  decrement by (2*N)
1434  * increment by N*8, each thread will get 4 ticks.
1435  */
1436 void
1437 lwkt_fairq_schedulerclock(thread_t td)
1438 {
1439     globaldata_t gd;
1440
1441     if (fairq_enable) {
1442         while (td) {
1443             gd = td->td_gd;
1444             if (td != &gd->gd_idlethread) {
1445                 td->td_fairq_accum -= gd->gd_fairq_total_pri;
1446                 if (td->td_fairq_accum < -TDFAIRQ_MAX(gd))
1447                         td->td_fairq_accum = -TDFAIRQ_MAX(gd);
1448                 if (td->td_fairq_accum < 0)
1449                         need_lwkt_resched();
1450                 td->td_fairq_lticks = ticks;
1451             }
1452             td = td->td_preempted;
1453         }
1454     }
1455 }
1456
1457 static void
1458 lwkt_fairq_accumulate(globaldata_t gd, thread_t td)
1459 {
1460         td->td_fairq_accum += td->td_pri * TDFAIRQ_SCALE;
1461         if (td->td_fairq_accum > TDFAIRQ_MAX(td->td_gd))
1462                 td->td_fairq_accum = TDFAIRQ_MAX(td->td_gd);
1463 }
1464
1465 /*
1466  * Migrate the current thread to the specified cpu. 
1467  *
1468  * This is accomplished by descheduling ourselves from the current cpu,
1469  * moving our thread to the tdallq of the target cpu, IPI messaging the
1470  * target cpu, and switching out.  TDF_MIGRATING prevents scheduling
1471  * races while the thread is being migrated.
1472  *
1473  * We must be sure to remove ourselves from the current cpu's tsleepq
1474  * before potentially moving to another queue.  The thread can be on
1475  * a tsleepq due to a left-over tsleep_interlock().
1476  */
1477 #ifdef SMP
1478 static void lwkt_setcpu_remote(void *arg);
1479 #endif
1480
1481 void
1482 lwkt_setcpu_self(globaldata_t rgd)
1483 {
1484 #ifdef SMP
1485     thread_t td = curthread;
1486
1487     if (td->td_gd != rgd) {
1488         crit_enter_quick(td);
1489         if (td->td_flags & TDF_TSLEEPQ)
1490             tsleep_remove(td);
1491         td->td_flags |= TDF_MIGRATING;
1492         lwkt_deschedule_self(td);
1493         TAILQ_REMOVE(&td->td_gd->gd_tdallq, td, td_allq);
1494         lwkt_send_ipiq(rgd, (ipifunc1_t)lwkt_setcpu_remote, td);
1495         lwkt_switch();
1496         /* we are now on the target cpu */
1497         TAILQ_INSERT_TAIL(&rgd->gd_tdallq, td, td_allq);
1498         crit_exit_quick(td);
1499     }
1500 #endif
1501 }
1502
1503 void
1504 lwkt_migratecpu(int cpuid)
1505 {
1506 #ifdef SMP
1507         globaldata_t rgd;
1508
1509         rgd = globaldata_find(cpuid);
1510         lwkt_setcpu_self(rgd);
1511 #endif
1512 }
1513
1514 /*
1515  * Remote IPI for cpu migration (called while in a critical section so we
1516  * do not have to enter another one).  The thread has already been moved to
1517  * our cpu's allq, but we must wait for the thread to be completely switched
1518  * out on the originating cpu before we schedule it on ours or the stack
1519  * state may be corrupt.  We clear TDF_MIGRATING after flushing the GD
1520  * change to main memory.
1521  *
1522  * XXX The use of TDF_MIGRATING might not be sufficient to avoid races
1523  * against wakeups.  It is best if this interface is used only when there
1524  * are no pending events that might try to schedule the thread.
1525  */
1526 #ifdef SMP
1527 static void
1528 lwkt_setcpu_remote(void *arg)
1529 {
1530     thread_t td = arg;
1531     globaldata_t gd = mycpu;
1532
1533     while (td->td_flags & (TDF_RUNNING|TDF_PREEMPT_LOCK)) {
1534 #ifdef SMP
1535         lwkt_process_ipiq();
1536 #endif
1537         cpu_lfence();
1538         cpu_pause();
1539     }
1540     td->td_gd = gd;
1541     cpu_mfence();
1542     td->td_flags &= ~TDF_MIGRATING;
1543     KKASSERT(td->td_lwp == NULL || (td->td_lwp->lwp_flag & LWP_ONRUNQ) == 0);
1544     _lwkt_enqueue(td);
1545 }
1546 #endif
1547
1548 struct lwp *
1549 lwkt_preempted_proc(void)
1550 {
1551     thread_t td = curthread;
1552     while (td->td_preempted)
1553         td = td->td_preempted;
1554     return(td->td_lwp);
1555 }
1556
1557 /*
1558  * Create a kernel process/thread/whatever.  It shares it's address space
1559  * with proc0 - ie: kernel only.
1560  *
1561  * NOTE!  By default new threads are created with the MP lock held.  A 
1562  * thread which does not require the MP lock should release it by calling
1563  * rel_mplock() at the start of the new thread.
1564  */
1565 int
1566 lwkt_create(void (*func)(void *), void *arg, struct thread **tdp,
1567             thread_t template, int tdflags, int cpu, const char *fmt, ...)
1568 {
1569     thread_t td;
1570     __va_list ap;
1571
1572     td = lwkt_alloc_thread(template, LWKT_THREAD_STACK, cpu,
1573                            tdflags);
1574     if (tdp)
1575         *tdp = td;
1576     cpu_set_thread_handler(td, lwkt_exit, func, arg);
1577
1578     /*
1579      * Set up arg0 for 'ps' etc
1580      */
1581     __va_start(ap, fmt);
1582     kvsnprintf(td->td_comm, sizeof(td->td_comm), fmt, ap);
1583     __va_end(ap);
1584
1585     /*
1586      * Schedule the thread to run
1587      */
1588     if ((td->td_flags & TDF_STOPREQ) == 0)
1589         lwkt_schedule(td);
1590     else
1591         td->td_flags &= ~TDF_STOPREQ;
1592     return 0;
1593 }
1594
1595 /*
1596  * Destroy an LWKT thread.   Warning!  This function is not called when
1597  * a process exits, cpu_proc_exit() directly calls cpu_thread_exit() and
1598  * uses a different reaping mechanism.
1599  */
1600 void
1601 lwkt_exit(void)
1602 {
1603     thread_t td = curthread;
1604     thread_t std;
1605     globaldata_t gd;
1606
1607     /*
1608      * Do any cleanup that might block here
1609      */
1610     if (td->td_flags & TDF_VERBOSE)
1611         kprintf("kthread %p %s has exited\n", td, td->td_comm);
1612     caps_exit(td);
1613     biosched_done(td);
1614     dsched_exit_thread(td);
1615
1616     /*
1617      * Get us into a critical section to interlock gd_freetd and loop
1618      * until we can get it freed.
1619      *
1620      * We have to cache the current td in gd_freetd because objcache_put()ing
1621      * it would rip it out from under us while our thread is still active.
1622      */
1623     gd = mycpu;
1624     crit_enter_quick(td);
1625     while ((std = gd->gd_freetd) != NULL) {
1626         KKASSERT((std->td_flags & (TDF_RUNNING|TDF_PREEMPT_LOCK)) == 0);
1627         gd->gd_freetd = NULL;
1628         objcache_put(thread_cache, std);
1629     }
1630
1631     /*
1632      * Remove thread resources from kernel lists and deschedule us for
1633      * the last time.  We cannot block after this point or we may end
1634      * up with a stale td on the tsleepq.
1635      */
1636     if (td->td_flags & TDF_TSLEEPQ)
1637         tsleep_remove(td);
1638     lwkt_deschedule_self(td);
1639     lwkt_remove_tdallq(td);
1640
1641     /*
1642      * Final cleanup
1643      */
1644     KKASSERT(gd->gd_freetd == NULL);
1645     if (td->td_flags & TDF_ALLOCATED_THREAD)
1646         gd->gd_freetd = td;
1647     cpu_thread_exit();
1648 }
1649
1650 void
1651 lwkt_remove_tdallq(thread_t td)
1652 {
1653     KKASSERT(td->td_gd == mycpu);
1654     TAILQ_REMOVE(&td->td_gd->gd_tdallq, td, td_allq);
1655 }
1656
1657 /*
1658  * Code reduction and branch prediction improvements.  Call/return
1659  * overhead on modern cpus often degenerates into 0 cycles due to
1660  * the cpu's branch prediction hardware and return pc cache.  We
1661  * can take advantage of this by not inlining medium-complexity
1662  * functions and we can also reduce the branch prediction impact
1663  * by collapsing perfectly predictable branches into a single
1664  * procedure instead of duplicating it.
1665  *
1666  * Is any of this noticeable?  Probably not, so I'll take the
1667  * smaller code size.
1668  */
1669 void
1670 crit_exit_wrapper(__DEBUG_CRIT_ARG__)
1671 {
1672     _crit_exit(mycpu __DEBUG_CRIT_PASS_ARG__);
1673 }
1674
1675 void
1676 crit_panic(void)
1677 {
1678     thread_t td = curthread;
1679     int lcrit = td->td_critcount;
1680
1681     td->td_critcount = 0;
1682     panic("td_critcount is/would-go negative! %p %d", td, lcrit);
1683     /* NOT REACHED */
1684 }
1685
1686 #ifdef SMP
1687
1688 /*
1689  * Called from debugger/panic on cpus which have been stopped.  We must still
1690  * process the IPIQ while stopped, even if we were stopped while in a critical
1691  * section (XXX).
1692  *
1693  * If we are dumping also try to process any pending interrupts.  This may
1694  * or may not work depending on the state of the cpu at the point it was
1695  * stopped.
1696  */
1697 void
1698 lwkt_smp_stopped(void)
1699 {
1700     globaldata_t gd = mycpu;
1701
1702     crit_enter_gd(gd);
1703     if (dumping) {
1704         lwkt_process_ipiq();
1705         splz();
1706     } else {
1707         lwkt_process_ipiq();
1708     }
1709     crit_exit_gd(gd);
1710 }
1711
1712 #endif