DEV messaging stage 2/4: In this stage all DEV commands are now being
[dragonfly.git] / sys / kern / lwkt_thread.c
1 /*
2  * Copyright (c) 2003 Matthew Dillon <dillon@backplane.com>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  *      Each cpu in a system has its own self-contained light weight kernel
27  *      thread scheduler, which means that generally speaking we only need
28  *      to use a critical section to avoid problems.  Foreign thread 
29  *      scheduling is queued via (async) IPIs.
30  *
31  * $DragonFly: src/sys/kern/lwkt_thread.c,v 1.26 2003/07/20 07:46:18 dillon Exp $
32  */
33
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/kernel.h>
37 #include <sys/proc.h>
38 #include <sys/rtprio.h>
39 #include <sys/queue.h>
40 #include <sys/thread2.h>
41 #include <sys/sysctl.h>
42 #include <sys/kthread.h>
43 #include <machine/cpu.h>
44 #include <sys/lock.h>
45
46 #include <vm/vm.h>
47 #include <vm/vm_param.h>
48 #include <vm/vm_kern.h>
49 #include <vm/vm_object.h>
50 #include <vm/vm_page.h>
51 #include <vm/vm_map.h>
52 #include <vm/vm_pager.h>
53 #include <vm/vm_extern.h>
54 #include <vm/vm_zone.h>
55
56 #include <machine/stdarg.h>
57 #include <machine/ipl.h>
58 #ifdef SMP
59 #include <machine/smp.h>
60 #endif
61
62 static int untimely_switch = 0;
63 SYSCTL_INT(_lwkt, OID_AUTO, untimely_switch, CTLFLAG_RW, &untimely_switch, 0, "");
64 #ifdef INVARIANTS
65 static int token_debug = 0;
66 SYSCTL_INT(_lwkt, OID_AUTO, token_debug, CTLFLAG_RW, &token_debug, 0, "");
67 #endif
68 static quad_t switch_count = 0;
69 SYSCTL_QUAD(_lwkt, OID_AUTO, switch_count, CTLFLAG_RW, &switch_count, 0, "");
70 static quad_t preempt_hit = 0;
71 SYSCTL_QUAD(_lwkt, OID_AUTO, preempt_hit, CTLFLAG_RW, &preempt_hit, 0, "");
72 static quad_t preempt_miss = 0;
73 SYSCTL_QUAD(_lwkt, OID_AUTO, preempt_miss, CTLFLAG_RW, &preempt_miss, 0, "");
74 static quad_t preempt_weird = 0;
75 SYSCTL_QUAD(_lwkt, OID_AUTO, preempt_weird, CTLFLAG_RW, &preempt_weird, 0, "");
76 static quad_t ipiq_count = 0;
77 SYSCTL_QUAD(_lwkt, OID_AUTO, ipiq_count, CTLFLAG_RW, &ipiq_count, 0, "");
78 static quad_t ipiq_fifofull = 0;
79 SYSCTL_QUAD(_lwkt, OID_AUTO, ipiq_fifofull, CTLFLAG_RW, &ipiq_fifofull, 0, "");
80
81 /*
82  * These helper procedures handle the runq, they can only be called from
83  * within a critical section.
84  */
85 static __inline
86 void
87 _lwkt_dequeue(thread_t td)
88 {
89     if (td->td_flags & TDF_RUNQ) {
90         int nq = td->td_pri & TDPRI_MASK;
91         struct globaldata *gd = mycpu;
92
93         td->td_flags &= ~TDF_RUNQ;
94         TAILQ_REMOVE(&gd->gd_tdrunq[nq], td, td_threadq);
95         /* runqmask is passively cleaned up by the switcher */
96     }
97 }
98
99 static __inline
100 void
101 _lwkt_enqueue(thread_t td)
102 {
103     if ((td->td_flags & TDF_RUNQ) == 0) {
104         int nq = td->td_pri & TDPRI_MASK;
105         struct globaldata *gd = mycpu;
106
107         td->td_flags |= TDF_RUNQ;
108         TAILQ_INSERT_TAIL(&gd->gd_tdrunq[nq], td, td_threadq);
109         gd->gd_runqmask |= 1 << nq;
110     }
111 }
112
113 static __inline
114 int
115 _lwkt_wantresched(thread_t ntd, thread_t cur)
116 {
117     return((ntd->td_pri & TDPRI_MASK) > (cur->td_pri & TDPRI_MASK));
118 }
119
120 /*
121  * LWKTs operate on a per-cpu basis
122  *
123  * WARNING!  Called from early boot, 'mycpu' may not work yet.
124  */
125 void
126 lwkt_gdinit(struct globaldata *gd)
127 {
128     int i;
129
130     for (i = 0; i < sizeof(gd->gd_tdrunq)/sizeof(gd->gd_tdrunq[0]); ++i)
131         TAILQ_INIT(&gd->gd_tdrunq[i]);
132     gd->gd_runqmask = 0;
133     TAILQ_INIT(&gd->gd_tdallq);
134 }
135
136 /*
137  * Initialize a thread wait structure prior to first use.
138  *
139  * NOTE!  called from low level boot code, we cannot do anything fancy!
140  */
141 void
142 lwkt_init_wait(lwkt_wait_t w)
143 {
144     TAILQ_INIT(&w->wa_waitq);
145 }
146
147 /*
148  * Create a new thread.  The thread must be associated with a process context
149  * or LWKT start address before it can be scheduled.
150  *
151  * If you intend to create a thread without a process context this function
152  * does everything except load the startup and switcher function.
153  */
154 thread_t
155 lwkt_alloc_thread(struct thread *td)
156 {
157     void *stack;
158     int flags = 0;
159
160     if (td == NULL) {
161         crit_enter();
162         if (mycpu->gd_tdfreecount > 0) {
163             --mycpu->gd_tdfreecount;
164             td = TAILQ_FIRST(&mycpu->gd_tdfreeq);
165             KASSERT(td != NULL && (td->td_flags & TDF_RUNNING) == 0,
166                 ("lwkt_alloc_thread: unexpected NULL or corrupted td"));
167             TAILQ_REMOVE(&mycpu->gd_tdfreeq, td, td_threadq);
168             crit_exit();
169             stack = td->td_kstack;
170             flags = td->td_flags & (TDF_ALLOCATED_STACK|TDF_ALLOCATED_THREAD);
171         } else {
172             crit_exit();
173             td = zalloc(thread_zone);
174             td->td_kstack = NULL;
175             flags |= TDF_ALLOCATED_THREAD;
176         }
177     }
178     if ((stack = td->td_kstack) == NULL) {
179         stack = (void *)kmem_alloc(kernel_map, UPAGES * PAGE_SIZE);
180         flags |= TDF_ALLOCATED_STACK;
181     }
182     lwkt_init_thread(td, stack, flags, mycpu);
183     return(td);
184 }
185
186 /*
187  * Initialize a preexisting thread structure.  This function is used by
188  * lwkt_alloc_thread() and also used to initialize the per-cpu idlethread.
189  *
190  * NOTE!  called from low level boot code, we cannot do anything fancy!
191  */
192 void
193 lwkt_init_thread(thread_t td, void *stack, int flags, struct globaldata *gd)
194 {
195     bzero(td, sizeof(struct thread));
196     td->td_kstack = stack;
197     td->td_flags |= flags;
198     td->td_gd = gd;
199     td->td_pri = TDPRI_CRIT;
200     td->td_cpu = gd->gd_cpuid;  /* YYY don't really need this if have td_gd */
201     lwkt_init_port(&td->td_msgport, td);
202     pmap_init_thread(td);
203     crit_enter();
204     TAILQ_INSERT_TAIL(&mycpu->gd_tdallq, td, td_allq);
205     crit_exit();
206 }
207
208 void
209 lwkt_set_comm(thread_t td, const char *ctl, ...)
210 {
211     va_list va;
212
213     va_start(va, ctl);
214     vsnprintf(td->td_comm, sizeof(td->td_comm), ctl, va);
215     va_end(va);
216 }
217
218 void
219 lwkt_hold(thread_t td)
220 {
221     ++td->td_refs;
222 }
223
224 void
225 lwkt_rele(thread_t td)
226 {
227     KKASSERT(td->td_refs > 0);
228     --td->td_refs;
229 }
230
231 void
232 lwkt_wait_free(thread_t td)
233 {
234     while (td->td_refs)
235         tsleep(td, 0, "tdreap", hz);
236 }
237
238 void
239 lwkt_free_thread(thread_t td)
240 {
241     struct globaldata *gd = mycpu;
242
243     KASSERT((td->td_flags & TDF_RUNNING) == 0,
244         ("lwkt_free_thread: did not exit! %p", td));
245
246     crit_enter();
247     TAILQ_REMOVE(&gd->gd_tdallq, td, td_allq);
248     if (gd->gd_tdfreecount < CACHE_NTHREADS &&
249         (td->td_flags & TDF_ALLOCATED_THREAD)
250     ) {
251         ++gd->gd_tdfreecount;
252         TAILQ_INSERT_HEAD(&gd->gd_tdfreeq, td, td_threadq);
253         crit_exit();
254     } else {
255         crit_exit();
256         if (td->td_kstack && (td->td_flags & TDF_ALLOCATED_STACK)) {
257             kmem_free(kernel_map,
258                     (vm_offset_t)td->td_kstack, UPAGES * PAGE_SIZE);
259             /* gd invalid */
260             td->td_kstack = NULL;
261         }
262         if (td->td_flags & TDF_ALLOCATED_THREAD)
263             zfree(thread_zone, td);
264     }
265 }
266
267
268 /*
269  * Switch to the next runnable lwkt.  If no LWKTs are runnable then 
270  * switch to the idlethread.  Switching must occur within a critical
271  * section to avoid races with the scheduling queue.
272  *
273  * We always have full control over our cpu's run queue.  Other cpus
274  * that wish to manipulate our queue must use the cpu_*msg() calls to
275  * talk to our cpu, so a critical section is all that is needed and
276  * the result is very, very fast thread switching.
277  *
278  * The LWKT scheduler uses a fixed priority model and round-robins at
279  * each priority level.  User process scheduling is a totally
280  * different beast and LWKT priorities should not be confused with
281  * user process priorities.
282  *
283  * The MP lock may be out of sync with the thread's td_mpcount.  lwkt_switch()
284  * cleans it up.  Note that the td_switch() function cannot do anything that
285  * requires the MP lock since the MP lock will have already been setup for
286  * the target thread (not the current thread).
287  */
288
289 void
290 lwkt_switch(void)
291 {
292     struct globaldata *gd;
293     thread_t td = curthread;
294     thread_t ntd;
295 #ifdef SMP
296     int mpheld;
297 #endif
298
299     if (mycpu->gd_intr_nesting_level && 
300         td->td_preempted == NULL && panicstr == NULL
301     ) {
302         panic("lwkt_switch: cannot switch from within an interrupt, yet\n");
303     }
304
305     /*
306      * Passive release (used to transition from user to kernel mode
307      * when we block or switch rather then when we enter the kernel).
308      * This function is NOT called if we are switching into a preemption
309      * or returning from a preemption.  Typically this causes us to lose
310      * our P_CURPROC designation (if we have one) and become a true LWKT
311      * thread, and may also hand P_CURPROC to another process and schedule
312      * its thread.
313      */
314     if (td->td_release)
315             td->td_release(td);
316
317     crit_enter();
318     ++switch_count;
319
320 #ifdef SMP
321     /*
322      * td_mpcount cannot be used to determine if we currently hold the
323      * MP lock because get_mplock() will increment it prior to attempting
324      * to get the lock, and switch out if it can't.  Look at the actual lock.
325      */
326     mpheld = MP_LOCK_HELD();
327 #endif
328     if ((ntd = td->td_preempted) != NULL) {
329         /*
330          * We had preempted another thread on this cpu, resume the preempted
331          * thread.  This occurs transparently, whether the preempted thread
332          * was scheduled or not (it may have been preempted after descheduling
333          * itself). 
334          *
335          * We have to setup the MP lock for the original thread after backing
336          * out the adjustment that was made to curthread when the original
337          * was preempted.
338          */
339         KKASSERT(ntd->td_flags & TDF_PREEMPT_LOCK);
340 #ifdef SMP
341         if (ntd->td_mpcount && mpheld == 0) {
342             panic("MPLOCK NOT HELD ON RETURN: %p %p %d %d\n",
343                td, ntd, td->td_mpcount, ntd->td_mpcount);
344         }
345         if (ntd->td_mpcount) {
346             td->td_mpcount -= ntd->td_mpcount;
347             KKASSERT(td->td_mpcount >= 0);
348         }
349 #endif
350         ntd->td_flags |= TDF_PREEMPT_DONE;
351         /* YYY release mp lock on switchback if original doesn't need it */
352     } else {
353         /*
354          * Priority queue / round-robin at each priority.  Note that user
355          * processes run at a fixed, low priority and the user process
356          * scheduler deals with interactions between user processes
357          * by scheduling and descheduling them from the LWKT queue as
358          * necessary.
359          *
360          * We have to adjust the MP lock for the target thread.  If we 
361          * need the MP lock and cannot obtain it we try to locate a
362          * thread that does not need the MP lock.
363          */
364         gd = mycpu;
365 again:
366         if (gd->gd_runqmask) {
367             int nq = bsrl(gd->gd_runqmask);
368             if ((ntd = TAILQ_FIRST(&gd->gd_tdrunq[nq])) == NULL) {
369                 gd->gd_runqmask &= ~(1 << nq);
370                 goto again;
371             }
372 #ifdef SMP
373             if (ntd->td_mpcount && mpheld == 0 && !cpu_try_mplock()) {
374                 /*
375                  * Target needs MP lock and we couldn't get it, try
376                  * to locate a thread which does not need the MP lock
377                  * to run.  If we cannot locate a thread spin in idle.
378                  */
379                 u_int32_t rqmask = gd->gd_runqmask;
380                 while (rqmask) {
381                     TAILQ_FOREACH(ntd, &gd->gd_tdrunq[nq], td_threadq) {
382                         if (ntd->td_mpcount == 0)
383                             break;
384                     }
385                     if (ntd)
386                         break;
387                     rqmask &= ~(1 << nq);
388                     nq = bsrl(rqmask);
389                 }
390                 if (ntd == NULL) {
391                     ntd = &gd->gd_idlethread;
392                     ntd->td_flags |= TDF_IDLE_NOHLT;
393                 } else {
394                     TAILQ_REMOVE(&gd->gd_tdrunq[nq], ntd, td_threadq);
395                     TAILQ_INSERT_TAIL(&gd->gd_tdrunq[nq], ntd, td_threadq);
396                 }
397             } else {
398                 TAILQ_REMOVE(&gd->gd_tdrunq[nq], ntd, td_threadq);
399                 TAILQ_INSERT_TAIL(&gd->gd_tdrunq[nq], ntd, td_threadq);
400             }
401 #else
402             TAILQ_REMOVE(&gd->gd_tdrunq[nq], ntd, td_threadq);
403             TAILQ_INSERT_TAIL(&gd->gd_tdrunq[nq], ntd, td_threadq);
404 #endif
405         } else {
406             /*
407              * Nothing to run but we may still need the BGL to deal with
408              * pending interrupts, spin in idle if so.
409              */
410             ntd = &gd->gd_idlethread;
411             if (gd->gd_reqflags)
412                 ntd->td_flags |= TDF_IDLE_NOHLT;
413         }
414     }
415     KASSERT(ntd->td_pri >= TDPRI_CRIT,
416         ("priority problem in lwkt_switch %d %d", td->td_pri, ntd->td_pri));
417
418     /*
419      * Do the actual switch.  If the new target does not need the MP lock
420      * and we are holding it, release the MP lock.  If the new target requires
421      * the MP lock we have already acquired it for the target.
422      */
423 #ifdef SMP
424     if (ntd->td_mpcount == 0 ) {
425         if (MP_LOCK_HELD())
426             cpu_rel_mplock();
427     } else {
428         ASSERT_MP_LOCK_HELD();
429     }
430 #endif
431     if (td != ntd) {
432         td->td_switch(ntd);
433     }
434
435     crit_exit();
436 }
437
438 /*
439  * Switch if another thread has a higher priority.  Do not switch to other
440  * threads at the same priority.
441  */
442 void
443 lwkt_maybe_switch()
444 {
445     struct globaldata *gd = mycpu;
446     struct thread *td = gd->gd_curthread;
447
448     if ((td->td_pri & TDPRI_MASK) < bsrl(gd->gd_runqmask)) {
449         lwkt_switch();
450     }
451 }
452
453 /*
454  * Request that the target thread preempt the current thread.  Preemption
455  * only works under a specific set of conditions:
456  *
457  *      - We are not preempting ourselves
458  *      - The target thread is owned by the current cpu
459  *      - We are not currently being preempted
460  *      - The target is not currently being preempted
461  *      - We are able to satisfy the target's MP lock requirements (if any).
462  *
463  * THE CALLER OF LWKT_PREEMPT() MUST BE IN A CRITICAL SECTION.  Typically
464  * this is called via lwkt_schedule() through the td_preemptable callback.
465  * critpri is the managed critical priority that we should ignore in order
466  * to determine whether preemption is possible (aka usually just the crit
467  * priority of lwkt_schedule() itself).
468  *
469  * XXX at the moment we run the target thread in a critical section during
470  * the preemption in order to prevent the target from taking interrupts
471  * that *WE* can't.  Preemption is strictly limited to interrupt threads
472  * and interrupt-like threads, outside of a critical section, and the
473  * preempted source thread will be resumed the instant the target blocks
474  * whether or not the source is scheduled (i.e. preemption is supposed to
475  * be as transparent as possible).
476  *
477  * The target thread inherits our MP count (added to its own) for the
478  * duration of the preemption in order to preserve the atomicy of the
479  * MP lock during the preemption.  Therefore, any preempting targets must be
480  * careful in regards to MP assertions.  Note that the MP count may be
481  * out of sync with the physical mp_lock.  If we preempt we have to preserve
482  * the expected situation.
483  */
484 void
485 lwkt_preempt(thread_t ntd, int critpri)
486 {
487     thread_t td = curthread;
488 #ifdef SMP
489     int mpheld;
490     int savecnt;
491 #endif
492
493     /*
494      * The caller has put us in a critical section.  We can only preempt
495      * if the caller of the caller was not in a critical section (basically
496      * a local interrupt), as determined by the 'critpri' parameter.   If
497      * we are unable to preempt 
498      *
499      * YYY The target thread must be in a critical section (else it must
500      * inherit our critical section?  I dunno yet).
501      */
502     KASSERT(ntd->td_pri >= TDPRI_CRIT, ("BADCRIT0 %d", ntd->td_pri));
503
504     need_resched();
505     if (!_lwkt_wantresched(ntd, td)) {
506         ++preempt_miss;
507         return;
508     }
509     if ((td->td_pri & ~TDPRI_MASK) > critpri) {
510         ++preempt_miss;
511         return;
512     }
513 #ifdef SMP
514     if (ntd->td_cpu != mycpu->gd_cpuid) {
515         ++preempt_miss;
516         return;
517     }
518 #endif
519     if (td == ntd || ((td->td_flags | ntd->td_flags) & TDF_PREEMPT_LOCK)) {
520         ++preempt_weird;
521         return;
522     }
523     if (ntd->td_preempted) {
524         ++preempt_hit;
525         return;
526     }
527 #ifdef SMP
528     /*
529      * note: an interrupt might have occured just as we were transitioning
530      * to the MP lock.  In this case td_mpcount will be pre-disposed but
531      * not actually synchronized with the actual state of the lock.  We
532      * can use it to imply an MP lock requirement for the preemption but
533      * we cannot use it to test whether we hold the MP lock or not.
534      */
535     mpheld = MP_LOCK_HELD();
536     if (mpheld && td->td_mpcount == 0)
537         panic("lwkt_preempt(): held and no count");
538     savecnt = td->td_mpcount;
539     ntd->td_mpcount += td->td_mpcount;
540     if (mpheld == 0 && ntd->td_mpcount && !cpu_try_mplock()) {
541         ntd->td_mpcount -= td->td_mpcount;
542         ++preempt_miss;
543         return;
544     }
545 #endif
546
547     ++preempt_hit;
548     ntd->td_preempted = td;
549     td->td_flags |= TDF_PREEMPT_LOCK;
550     td->td_switch(ntd);
551     KKASSERT(ntd->td_preempted && (td->td_flags & TDF_PREEMPT_DONE));
552 #ifdef SMP
553     KKASSERT(savecnt == td->td_mpcount);
554     if (mpheld == 0 && MP_LOCK_HELD())
555         cpu_rel_mplock();
556     else if (mpheld && !MP_LOCK_HELD())
557         panic("lwkt_preempt(): MP lock was not held through");
558 #endif
559     ntd->td_preempted = NULL;
560     td->td_flags &= ~(TDF_PREEMPT_LOCK|TDF_PREEMPT_DONE);
561 }
562
563 /*
564  * Yield our thread while higher priority threads are pending.  This is
565  * typically called when we leave a critical section but it can be safely
566  * called while we are in a critical section.
567  *
568  * This function will not generally yield to equal priority threads but it
569  * can occur as a side effect.  Note that lwkt_switch() is called from
570  * inside the critical section to pervent its own crit_exit() from reentering
571  * lwkt_yield_quick().
572  *
573  * gd_reqflags indicates that *something* changed, e.g. an interrupt or softint
574  * came along but was blocked and made pending.
575  *
576  * (self contained on a per cpu basis)
577  */
578 void
579 lwkt_yield_quick(void)
580 {
581     thread_t td = curthread;
582
583     /*
584      * gd_reqflags is cleared in splz if the cpl is 0.  If we were to clear
585      * it with a non-zero cpl then we might not wind up calling splz after
586      * a task switch when the critical section is exited even though the
587      * new task could accept the interrupt.  YYY alternative is to have
588      * lwkt_switch() just call splz unconditionally.
589      *
590      * XXX from crit_exit() only called after last crit section is released.
591      * If called directly will run splz() even if in a critical section.
592      */
593     if (mycpu->gd_reqflags)
594         splz();
595
596     /*
597      * YYY enabling will cause wakeup() to task-switch, which really
598      * confused the old 4.x code.  This is a good way to simulate
599      * preemption and MP without actually doing preemption or MP, because a
600      * lot of code assumes that wakeup() does not block.
601      */
602     if (untimely_switch && mycpu->gd_intr_nesting_level == 0) {
603         crit_enter();
604         /*
605          * YYY temporary hacks until we disassociate the userland scheduler
606          * from the LWKT scheduler.
607          */
608         if (td->td_flags & TDF_RUNQ) {
609             lwkt_switch();              /* will not reenter yield function */
610         } else {
611             lwkt_schedule_self();       /* make sure we are scheduled */
612             lwkt_switch();              /* will not reenter yield function */
613             lwkt_deschedule_self();     /* make sure we are descheduled */
614         }
615         crit_exit_noyield();
616     }
617 }
618
619 /*
620  * This implements a normal yield which, unlike _quick, will yield to equal
621  * priority threads as well.  Note that gd_reqflags tests will be handled by
622  * the crit_exit() call in lwkt_switch().
623  *
624  * (self contained on a per cpu basis)
625  */
626 void
627 lwkt_yield(void)
628 {
629     lwkt_schedule_self();
630     lwkt_switch();
631 }
632
633 /*
634  * Schedule a thread to run.  As the current thread we can always safely
635  * schedule ourselves, and a shortcut procedure is provided for that
636  * function.
637  *
638  * (non-blocking, self contained on a per cpu basis)
639  */
640 void
641 lwkt_schedule_self(void)
642 {
643     thread_t td = curthread;
644
645     crit_enter();
646     KASSERT(td->td_wait == NULL, ("lwkt_schedule_self(): td_wait not NULL!"));
647     _lwkt_enqueue(td);
648     if (td->td_proc && td->td_proc->p_stat == SSLEEP)
649         panic("SCHED SELF PANIC");
650     crit_exit();
651 }
652
653 /*
654  * Generic schedule.  Possibly schedule threads belonging to other cpus and
655  * deal with threads that might be blocked on a wait queue.
656  *
657  * YYY this is one of the best places to implement load balancing code.
658  * Load balancing can be accomplished by requesting other sorts of actions
659  * for the thread in question.
660  */
661 void
662 lwkt_schedule(thread_t td)
663 {
664 #ifdef  INVARIANTS
665     if ((td->td_flags & TDF_PREEMPT_LOCK) == 0 && td->td_proc 
666         && td->td_proc->p_stat == SSLEEP
667     ) {
668         printf("PANIC schedule curtd = %p (%d %d) target %p (%d %d)\n",
669             curthread,
670             curthread->td_proc ? curthread->td_proc->p_pid : -1,
671             curthread->td_proc ? curthread->td_proc->p_stat : -1,
672             td,
673             td->td_proc ? curthread->td_proc->p_pid : -1,
674             td->td_proc ? curthread->td_proc->p_stat : -1
675         );
676         panic("SCHED PANIC");
677     }
678 #endif
679     crit_enter();
680     if (td == curthread) {
681         _lwkt_enqueue(td);
682     } else {
683         lwkt_wait_t w;
684
685         /*
686          * If the thread is on a wait list we have to send our scheduling
687          * request to the owner of the wait structure.  Otherwise we send
688          * the scheduling request to the cpu owning the thread.  Races
689          * are ok, the target will forward the message as necessary (the
690          * message may chase the thread around before it finally gets
691          * acted upon).
692          *
693          * (remember, wait structures use stable storage)
694          */
695         if ((w = td->td_wait) != NULL) {
696             if (lwkt_trytoken(&w->wa_token)) {
697                 TAILQ_REMOVE(&w->wa_waitq, td, td_threadq);
698                 --w->wa_count;
699                 td->td_wait = NULL;
700                 if (td->td_cpu == mycpu->gd_cpuid) {
701                     _lwkt_enqueue(td);
702                     if (td->td_preemptable) {
703                         td->td_preemptable(td, TDPRI_CRIT*2); /* YYY +token */
704                     } else if (_lwkt_wantresched(td, curthread)) {
705                         need_resched();
706                     }
707                 } else {
708                     lwkt_send_ipiq(td->td_cpu, (ipifunc_t)lwkt_schedule, td);
709                 }
710                 lwkt_reltoken(&w->wa_token);
711             } else {
712                 lwkt_send_ipiq(w->wa_token.t_cpu, (ipifunc_t)lwkt_schedule, td);
713             }
714         } else {
715             /*
716              * If the wait structure is NULL and we own the thread, there
717              * is no race (since we are in a critical section).  If we
718              * do not own the thread there might be a race but the
719              * target cpu will deal with it.
720              */
721             if (td->td_cpu == mycpu->gd_cpuid) {
722                 _lwkt_enqueue(td);
723                 if (td->td_preemptable) {
724                     td->td_preemptable(td, TDPRI_CRIT);
725                 } else if (_lwkt_wantresched(td, curthread)) {
726                     need_resched();
727                 }
728             } else {
729                 lwkt_send_ipiq(td->td_cpu, (ipifunc_t)lwkt_schedule, td);
730             }
731         }
732     }
733     crit_exit();
734 }
735
736 /*
737  * Managed acquisition.  This code assumes that the MP lock is held for
738  * the tdallq operation and that the thread has been descheduled from its
739  * original cpu.  We also have to wait for the thread to be entirely switched
740  * out on its original cpu (this is usually fast enough that we never loop)
741  * since the LWKT system does not have to hold the MP lock while switching
742  * and the target may have released it before switching.
743  */
744 void
745 lwkt_acquire(thread_t td)
746 {
747     struct globaldata *gd;
748     int ocpu;
749
750     gd = td->td_gd;
751     KKASSERT((td->td_flags & TDF_RUNQ) == 0);
752     while (td->td_flags & TDF_RUNNING)  /* XXX spin */
753         ;
754     if (gd != mycpu) {
755         ocpu = td->td_cpu;
756         crit_enter();
757         TAILQ_REMOVE(&gd->gd_tdallq, td, td_allq);      /* protected by BGL */
758         gd = mycpu;
759         td->td_gd = gd;
760         td->td_cpu = gd->gd_cpuid;
761         TAILQ_INSERT_TAIL(&gd->gd_tdallq, td, td_allq); /* protected by BGL */
762         crit_exit();
763     }
764 }
765
766 /*
767  * Deschedule a thread.
768  *
769  * (non-blocking, self contained on a per cpu basis)
770  */
771 void
772 lwkt_deschedule_self(void)
773 {
774     thread_t td = curthread;
775
776     crit_enter();
777     KASSERT(td->td_wait == NULL, ("lwkt_schedule_self(): td_wait not NULL!"));
778     _lwkt_dequeue(td);
779     crit_exit();
780 }
781
782 /*
783  * Generic deschedule.  Descheduling threads other then your own should be
784  * done only in carefully controlled circumstances.  Descheduling is 
785  * asynchronous.  
786  *
787  * This function may block if the cpu has run out of messages.
788  */
789 void
790 lwkt_deschedule(thread_t td)
791 {
792     crit_enter();
793     if (td == curthread) {
794         _lwkt_dequeue(td);
795     } else {
796         if (td->td_cpu == mycpu->gd_cpuid) {
797             _lwkt_dequeue(td);
798         } else {
799             lwkt_send_ipiq(td->td_cpu, (ipifunc_t)lwkt_deschedule, td);
800         }
801     }
802     crit_exit();
803 }
804
805 /*
806  * Set the target thread's priority.  This routine does not automatically
807  * switch to a higher priority thread, LWKT threads are not designed for
808  * continuous priority changes.  Yield if you want to switch.
809  *
810  * We have to retain the critical section count which uses the high bits
811  * of the td_pri field.  The specified priority may also indicate zero or
812  * more critical sections by adding TDPRI_CRIT*N.
813  */
814 void
815 lwkt_setpri(thread_t td, int pri)
816 {
817     KKASSERT(pri >= 0);
818     KKASSERT(td->td_cpu == mycpu->gd_cpuid);
819     crit_enter();
820     if (td->td_flags & TDF_RUNQ) {
821         _lwkt_dequeue(td);
822         td->td_pri = (td->td_pri & ~TDPRI_MASK) + pri;
823         _lwkt_enqueue(td);
824     } else {
825         td->td_pri = (td->td_pri & ~TDPRI_MASK) + pri;
826     }
827     crit_exit();
828 }
829
830 void
831 lwkt_setpri_self(int pri)
832 {
833     thread_t td = curthread;
834
835     KKASSERT(pri >= 0 && pri <= TDPRI_MAX);
836     crit_enter();
837     if (td->td_flags & TDF_RUNQ) {
838         _lwkt_dequeue(td);
839         td->td_pri = (td->td_pri & ~TDPRI_MASK) + pri;
840         _lwkt_enqueue(td);
841     } else {
842         td->td_pri = (td->td_pri & ~TDPRI_MASK) + pri;
843     }
844     crit_exit();
845 }
846
847 struct proc *
848 lwkt_preempted_proc(void)
849 {
850     thread_t td = curthread;
851     while (td->td_preempted)
852         td = td->td_preempted;
853     return(td->td_proc);
854 }
855
856 typedef struct lwkt_gettoken_req {
857     lwkt_token_t tok;
858     int cpu;
859 } lwkt_gettoken_req;
860
861 #if 0
862
863 /*
864  * This function deschedules the current thread and blocks on the specified
865  * wait queue.  We obtain ownership of the wait queue in order to block
866  * on it.  A generation number is used to interlock the wait queue in case
867  * it gets signalled while we are blocked waiting on the token.
868  *
869  * Note: alternatively we could dequeue our thread and then message the
870  * target cpu owning the wait queue.  YYY implement as sysctl.
871  *
872  * Note: wait queue signals normally ping-pong the cpu as an optimization.
873  */
874
875 void
876 lwkt_block(lwkt_wait_t w, const char *wmesg, int *gen)
877 {
878     thread_t td = curthread;
879
880     lwkt_gettoken(&w->wa_token);
881     if (w->wa_gen == *gen) {
882         _lwkt_dequeue(td);
883         TAILQ_INSERT_TAIL(&w->wa_waitq, td, td_threadq);
884         ++w->wa_count;
885         td->td_wait = w;
886         td->td_wmesg = wmesg;
887 again:
888         lwkt_switch();
889         lwkt_regettoken(&w->wa_token);
890         if (td->td_wmesg != NULL) {
891             _lwkt_dequeue(td);
892             goto again;
893         }
894     }
895     /* token might be lost, doesn't matter for gen update */
896     *gen = w->wa_gen;
897     lwkt_reltoken(&w->wa_token);
898 }
899
900 /*
901  * Signal a wait queue.  We gain ownership of the wait queue in order to
902  * signal it.  Once a thread is removed from the wait queue we have to
903  * deal with the cpu owning the thread.
904  *
905  * Note: alternatively we could message the target cpu owning the wait
906  * queue.  YYY implement as sysctl.
907  */
908 void
909 lwkt_signal(lwkt_wait_t w, int count)
910 {
911     thread_t td;
912     int count;
913
914     lwkt_gettoken(&w->wa_token);
915     ++w->wa_gen;
916     if (count < 0)
917         count = w->wa_count;
918     while ((td = TAILQ_FIRST(&w->wa_waitq)) != NULL && count) {
919         --count;
920         --w->wa_count;
921         TAILQ_REMOVE(&w->wa_waitq, td, td_threadq);
922         td->td_wait = NULL;
923         td->td_wmesg = NULL;
924         if (td->td_cpu == mycpu->gd_cpuid) {
925             _lwkt_enqueue(td);
926         } else {
927             lwkt_send_ipiq(td->td_cpu, (ipifunc_t)lwkt_schedule, td);
928         }
929         lwkt_regettoken(&w->wa_token);
930     }
931     lwkt_reltoken(&w->wa_token);
932 }
933
934 #endif
935
936 /*
937  * Acquire ownership of a token
938  *
939  * Acquire ownership of a token.  The token may have spl and/or critical
940  * section side effects, depending on its purpose.  These side effects
941  * guarentee that you will maintain ownership of the token as long as you
942  * do not block.  If you block you may lose access to the token (but you
943  * must still release it even if you lose your access to it).
944  *
945  * YYY for now we use a critical section to prevent IPIs from taking away
946  * a token, but do we really only need to disable IPIs ?
947  *
948  * YYY certain tokens could be made to act like mutexes when performance
949  * would be better (e.g. t_cpu == -1).  This is not yet implemented.
950  *
951  * YYY the tokens replace 4.x's simplelocks for the most part, but this
952  * means that 4.x does not expect a switch so for now we cannot switch
953  * when waiting for an IPI to be returned.  
954  *
955  * YYY If the token is owned by another cpu we may have to send an IPI to
956  * it and then block.   The IPI causes the token to be given away to the
957  * requesting cpu, unless it has already changed hands.  Since only the
958  * current cpu can give away a token it owns we do not need a memory barrier.
959  * This needs serious optimization.
960  */
961
962 #ifdef SMP
963
964 static
965 void
966 lwkt_gettoken_remote(void *arg)
967 {
968     lwkt_gettoken_req *req = arg;
969     if (req->tok->t_cpu == mycpu->gd_cpuid) {
970 #ifdef INVARIANTS
971         if (token_debug)
972             printf("GT(%d,%d) ", req->tok->t_cpu, req->cpu);
973 #endif
974         req->tok->t_cpu = req->cpu;
975         req->tok->t_reqcpu = req->cpu;  /* YYY leave owned by target cpu */
976         /* else set reqcpu to point to current cpu for release */
977     }
978 }
979
980 #endif
981
982 int
983 lwkt_gettoken(lwkt_token_t tok)
984 {
985     /*
986      * Prevent preemption so the token can't be taken away from us once
987      * we gain ownership of it.  Use a synchronous request which might
988      * block.  The request will be forwarded as necessary playing catchup
989      * to the token.
990      */
991
992     crit_enter();
993 #ifdef INVARIANTS
994     if (curthread->td_pri > 2000) {
995         curthread->td_pri = 1000;
996         panic("too HIGH!");
997     }
998 #endif
999 #ifdef SMP
1000     while (tok->t_cpu != mycpu->gd_cpuid) {
1001         struct lwkt_gettoken_req req;
1002         int seq;
1003         int dcpu;
1004
1005         req.cpu = mycpu->gd_cpuid;
1006         req.tok = tok;
1007         dcpu = (volatile int)tok->t_cpu;
1008         KKASSERT(dcpu >= 0 && dcpu < ncpus);
1009 #ifdef INVARIANTS
1010         if (token_debug)
1011             printf("REQT%d ", dcpu);
1012 #endif
1013         seq = lwkt_send_ipiq(dcpu, lwkt_gettoken_remote, &req);
1014         lwkt_wait_ipiq(dcpu, seq);
1015 #ifdef INVARIANTS
1016         if (token_debug)
1017             printf("REQR%d ", tok->t_cpu);
1018 #endif
1019     }
1020 #endif
1021     /*
1022      * leave us in a critical section on return.  This will be undone
1023      * by lwkt_reltoken().  Bump the generation number.
1024      */
1025     return(++tok->t_gen);
1026 }
1027
1028 /*
1029  * Attempt to acquire ownership of a token.  Returns 1 on success, 0 on
1030  * failure.
1031  */
1032 int
1033 lwkt_trytoken(lwkt_token_t tok)
1034 {
1035     crit_enter();
1036 #ifdef SMP
1037     if (tok->t_cpu != mycpu->gd_cpuid) {
1038         return(0);
1039     } 
1040 #endif
1041     /* leave us in the critical section */
1042     ++tok->t_gen;
1043     return(1);
1044 }
1045
1046 /*
1047  * Release your ownership of a token.  Releases must occur in reverse
1048  * order to aquisitions, eventually so priorities can be unwound properly
1049  * like SPLs.  At the moment the actual implemention doesn't care.
1050  *
1051  * We can safely hand a token that we own to another cpu without notifying
1052  * it, but once we do we can't get it back without requesting it (unless
1053  * the other cpu hands it back to us before we check).
1054  *
1055  * We might have lost the token, so check that.
1056  */
1057 void
1058 lwkt_reltoken(lwkt_token_t tok)
1059 {
1060     if (tok->t_cpu == mycpu->gd_cpuid) {
1061         tok->t_cpu = tok->t_reqcpu;
1062     }
1063     crit_exit();
1064 }
1065
1066 /*
1067  * Reacquire a token that might have been lost and compare and update the
1068  * generation number.  0 is returned if the generation has not changed
1069  * (nobody else obtained the token while we were blocked, on this cpu or
1070  * any other cpu).
1071  *
1072  * This function returns with the token re-held whether the generation
1073  * number changed or not.
1074  */
1075 int
1076 lwkt_gentoken(lwkt_token_t tok, int *gen)
1077 {
1078     if (lwkt_regettoken(tok) == *gen) {
1079         return(0);
1080     } else {
1081         *gen = tok->t_gen;
1082         return(-1);
1083     }
1084 }
1085
1086
1087 /*
1088  * Re-acquire a token that might have been lost.  Returns the generation 
1089  * number of the token.
1090  */
1091 int
1092 lwkt_regettoken(lwkt_token_t tok)
1093 {
1094     /* assert we are in a critical section */
1095     if (tok->t_cpu != mycpu->gd_cpuid) {
1096 #ifdef SMP
1097         while (tok->t_cpu != mycpu->gd_cpuid) {
1098             struct lwkt_gettoken_req req;
1099             int seq;
1100             int dcpu;
1101
1102             req.cpu = mycpu->gd_cpuid;
1103             req.tok = tok;
1104             dcpu = (volatile int)tok->t_cpu;
1105             KKASSERT(dcpu >= 0 && dcpu < ncpus);
1106 #ifdef INVARIANTS
1107             if (token_debug)
1108                 printf("REQT%d ", dcpu);
1109 #endif
1110             seq = lwkt_send_ipiq(dcpu, lwkt_gettoken_remote, &req);
1111             lwkt_wait_ipiq(dcpu, seq);
1112 #ifdef INVARIATNS
1113             if (token_debug)
1114                 printf("REQR%d ", tok->t_cpu);
1115 #endif
1116         }
1117 #endif
1118         ++tok->t_gen;
1119     }
1120     return(tok->t_gen);
1121 }
1122
1123 void
1124 lwkt_inittoken(lwkt_token_t tok)
1125 {
1126     /*
1127      * Zero structure and set cpu owner and reqcpu to cpu 0.
1128      */
1129     bzero(tok, sizeof(*tok));
1130 }
1131
1132 /*
1133  * Create a kernel process/thread/whatever.  It shares it's address space
1134  * with proc0 - ie: kernel only.
1135  *
1136  * XXX should be renamed to lwkt_create()
1137  *
1138  * The thread will be entered with the MP lock held.
1139  */
1140 int
1141 lwkt_create(void (*func)(void *), void *arg,
1142     struct thread **tdp, thread_t template, int tdflags,
1143     const char *fmt, ...)
1144 {
1145     thread_t td;
1146     va_list ap;
1147
1148     td = lwkt_alloc_thread(template);
1149     if (tdp)
1150         *tdp = td;
1151     cpu_set_thread_handler(td, kthread_exit, func, arg);
1152     td->td_flags |= TDF_VERBOSE | tdflags;
1153 #ifdef SMP
1154     td->td_mpcount = 1;
1155 #endif
1156
1157     /*
1158      * Set up arg0 for 'ps' etc
1159      */
1160     va_start(ap, fmt);
1161     vsnprintf(td->td_comm, sizeof(td->td_comm), fmt, ap);
1162     va_end(ap);
1163
1164     /*
1165      * Schedule the thread to run
1166      */
1167     if ((td->td_flags & TDF_STOPREQ) == 0)
1168         lwkt_schedule(td);
1169     else
1170         td->td_flags &= ~TDF_STOPREQ;
1171     return 0;
1172 }
1173
1174 /*
1175  * Destroy an LWKT thread.   Warning!  This function is not called when
1176  * a process exits, cpu_proc_exit() directly calls cpu_thread_exit() and
1177  * uses a different reaping mechanism.
1178  */
1179 void
1180 lwkt_exit(void)
1181 {
1182     thread_t td = curthread;
1183
1184     if (td->td_flags & TDF_VERBOSE)
1185         printf("kthread %p %s has exited\n", td, td->td_comm);
1186     crit_enter();
1187     lwkt_deschedule_self();
1188     ++mycpu->gd_tdfreecount;
1189     TAILQ_INSERT_TAIL(&mycpu->gd_tdfreeq, td, td_threadq);
1190     cpu_thread_exit();
1191 }
1192
1193 /*
1194  * Create a kernel process/thread/whatever.  It shares it's address space
1195  * with proc0 - ie: kernel only.  5.x compatible.
1196  */
1197 int
1198 kthread_create(void (*func)(void *), void *arg,
1199     struct thread **tdp, const char *fmt, ...)
1200 {
1201     thread_t td;
1202     va_list ap;
1203
1204     td = lwkt_alloc_thread(NULL);
1205     if (tdp)
1206         *tdp = td;
1207     cpu_set_thread_handler(td, kthread_exit, func, arg);
1208     td->td_flags |= TDF_VERBOSE;
1209 #ifdef SMP
1210     td->td_mpcount = 1;
1211 #endif
1212
1213     /*
1214      * Set up arg0 for 'ps' etc
1215      */
1216     va_start(ap, fmt);
1217     vsnprintf(td->td_comm, sizeof(td->td_comm), fmt, ap);
1218     va_end(ap);
1219
1220     /*
1221      * Schedule the thread to run
1222      */
1223     lwkt_schedule(td);
1224     return 0;
1225 }
1226
1227 void
1228 crit_panic(void)
1229 {
1230     thread_t td = curthread;
1231     int lpri = td->td_pri;
1232
1233     td->td_pri = 0;
1234     panic("td_pri is/would-go negative! %p %d", td, lpri);
1235 }
1236
1237 /*
1238  * Destroy an LWKT thread.   Warning!  This function is not called when
1239  * a process exits, cpu_proc_exit() directly calls cpu_thread_exit() and
1240  * uses a different reaping mechanism.
1241  *
1242  * XXX duplicates lwkt_exit()
1243  */
1244 void
1245 kthread_exit(void)
1246 {
1247     lwkt_exit();
1248 }
1249
1250 #ifdef SMP
1251
1252 /*
1253  * Send a function execution request to another cpu.  The request is queued
1254  * on the cpu<->cpu ipiq matrix.  Each cpu owns a unique ipiq FIFO for every
1255  * possible target cpu.  The FIFO can be written.
1256  *
1257  * YYY If the FIFO fills up we have to enable interrupts and process the
1258  * IPIQ while waiting for it to empty or we may deadlock with another cpu.
1259  * Create a CPU_*() function to do this!
1260  *
1261  * Must be called from a critical section.
1262  */
1263 int
1264 lwkt_send_ipiq(int dcpu, ipifunc_t func, void *arg)
1265 {
1266     lwkt_ipiq_t ip;
1267     int windex;
1268     struct globaldata *gd = mycpu;
1269
1270     if (dcpu == gd->gd_cpuid) {
1271         func(arg);
1272         return(0);
1273     } 
1274     crit_enter();
1275     ++gd->gd_intr_nesting_level;
1276 #ifdef INVARIANTS
1277     if (gd->gd_intr_nesting_level > 20)
1278         panic("lwkt_send_ipiq: TOO HEAVILY NESTED!");
1279 #endif
1280     KKASSERT(curthread->td_pri >= TDPRI_CRIT);
1281     KKASSERT(dcpu >= 0 && dcpu < ncpus);
1282     ++ipiq_count;
1283     ip = &gd->gd_ipiq[dcpu];
1284
1285     /*
1286      * We always drain before the FIFO becomes full so it should never
1287      * become full.  We need to leave enough entries to deal with 
1288      * reentrancy.
1289      */
1290     KKASSERT(ip->ip_windex - ip->ip_rindex != MAXCPUFIFO);
1291     windex = ip->ip_windex & MAXCPUFIFO_MASK;
1292     ip->ip_func[windex] = func;
1293     ip->ip_arg[windex] = arg;
1294     /* YYY memory barrier */
1295     ++ip->ip_windex;
1296     if (ip->ip_windex - ip->ip_rindex > MAXCPUFIFO / 2) {
1297         unsigned int eflags = read_eflags();
1298         cpu_enable_intr();
1299         ++ipiq_fifofull;
1300         while (ip->ip_windex - ip->ip_rindex > MAXCPUFIFO / 4) {
1301             KKASSERT(ip->ip_windex - ip->ip_rindex != MAXCPUFIFO - 1);
1302             lwkt_process_ipiq();
1303         }
1304         write_eflags(eflags);
1305     }
1306     --gd->gd_intr_nesting_level;
1307     cpu_send_ipiq(dcpu);        /* issues memory barrier if appropriate */
1308     crit_exit();
1309     return(ip->ip_windex);
1310 }
1311
1312 /*
1313  * Send a message to several target cpus.  Typically used for scheduling.
1314  */
1315 void
1316 lwkt_send_ipiq_mask(u_int32_t mask, ipifunc_t func, void *arg)
1317 {
1318     int cpuid;
1319
1320     while (mask) {
1321             cpuid = bsfl(mask);
1322             lwkt_send_ipiq(cpuid, func, arg);
1323             mask &= ~(1 << cpuid);
1324     }
1325 }
1326
1327 /*
1328  * Wait for the remote cpu to finish processing a function.
1329  *
1330  * YYY we have to enable interrupts and process the IPIQ while waiting
1331  * for it to empty or we may deadlock with another cpu.  Create a CPU_*()
1332  * function to do this!  YYY we really should 'block' here.
1333  *
1334  * Must be called from a critical section.  Thsi routine may be called
1335  * from an interrupt (for example, if an interrupt wakes a foreign thread
1336  * up).
1337  */
1338 void
1339 lwkt_wait_ipiq(int dcpu, int seq)
1340 {
1341     lwkt_ipiq_t ip;
1342     int maxc = 100000000;
1343
1344     if (dcpu != mycpu->gd_cpuid) {
1345         KKASSERT(dcpu >= 0 && dcpu < ncpus);
1346         ip = &mycpu->gd_ipiq[dcpu];
1347         if ((int)(ip->ip_xindex - seq) < 0) {
1348             unsigned int eflags = read_eflags();
1349             cpu_enable_intr();
1350             while ((int)(ip->ip_xindex - seq) < 0) {
1351                 lwkt_process_ipiq();
1352                 if (--maxc == 0)
1353                         printf("LWKT_WAIT_IPIQ WARNING! %d wait %d (%d)\n", mycpu->gd_cpuid, dcpu, ip->ip_xindex - seq);
1354                 if (maxc < -1000000)
1355                         panic("LWKT_WAIT_IPIQ");
1356             }
1357             write_eflags(eflags);
1358         }
1359     }
1360 }
1361
1362 /*
1363  * Called from IPI interrupt (like a fast interrupt), which has placed
1364  * us in a critical section.  The MP lock may or may not be held.
1365  * May also be called from doreti or splz, or be reentrantly called
1366  * indirectly through the ip_func[] we run.
1367  */
1368 void
1369 lwkt_process_ipiq(void)
1370 {
1371     int n;
1372     int cpuid = mycpu->gd_cpuid;
1373
1374     for (n = 0; n < ncpus; ++n) {
1375         lwkt_ipiq_t ip;
1376         int ri;
1377
1378         if (n == cpuid)
1379             continue;
1380         ip = globaldata_find(n)->gd_ipiq;
1381         if (ip == NULL)
1382             continue;
1383         ip = &ip[cpuid];
1384
1385         /*
1386          * Note: xindex is only updated after we are sure the function has
1387          * finished execution.  Beware lwkt_process_ipiq() reentrancy!  The
1388          * function may send an IPI which may block/drain.
1389          */
1390         while (ip->ip_rindex != ip->ip_windex) {
1391             ri = ip->ip_rindex & MAXCPUFIFO_MASK;
1392             ++ip->ip_rindex;
1393             ip->ip_func[ri](ip->ip_arg[ri]);
1394             /* YYY memory barrier */
1395             ip->ip_xindex = ip->ip_rindex;
1396         }
1397     }
1398 }
1399
1400 #else
1401
1402 int
1403 lwkt_send_ipiq(int dcpu, ipifunc_t func, void *arg)
1404 {
1405     panic("lwkt_send_ipiq: UP box! (%d,%p,%p)", dcpu, func, arg);
1406     return(0); /* NOT REACHED */
1407 }
1408
1409 void
1410 lwkt_wait_ipiq(int dcpu, int seq)
1411 {
1412     panic("lwkt_wait_ipiq: UP box! (%d,%d)", dcpu, seq);
1413 }
1414
1415 #endif