kern_synch.c revision 1.171 1 /* $NetBSD: kern_synch.c,v 1.171 2006/11/01 10:17:58 yamt Exp $ */
2
3 /*-
4 * Copyright (c) 1999, 2000, 2004 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 * NASA Ames Research Center.
10 * This code is derived from software contributed to The NetBSD Foundation
11 * by Charles M. Hannum.
12 *
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
15 * are met:
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. All advertising materials mentioning features or use of this software
22 * must display the following acknowledgement:
23 * This product includes software developed by the NetBSD
24 * Foundation, Inc. and its contributors.
25 * 4. Neither the name of The NetBSD Foundation nor the names of its
26 * contributors may be used to endorse or promote products derived
27 * from this software without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
30 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
31 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
32 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
33 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
34 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
35 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
36 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
37 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
38 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
39 * POSSIBILITY OF SUCH DAMAGE.
40 */
41
42 /*-
43 * Copyright (c) 1982, 1986, 1990, 1991, 1993
44 * The Regents of the University of California. All rights reserved.
45 * (c) UNIX System Laboratories, Inc.
46 * All or some portions of this file are derived from material licensed
47 * to the University of California by American Telephone and Telegraph
48 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
49 * the permission of UNIX System Laboratories, Inc.
50 *
51 * Redistribution and use in source and binary forms, with or without
52 * modification, are permitted provided that the following conditions
53 * are met:
54 * 1. Redistributions of source code must retain the above copyright
55 * notice, this list of conditions and the following disclaimer.
56 * 2. Redistributions in binary form must reproduce the above copyright
57 * notice, this list of conditions and the following disclaimer in the
58 * documentation and/or other materials provided with the distribution.
59 * 3. Neither the name of the University nor the names of its contributors
60 * may be used to endorse or promote products derived from this software
61 * without specific prior written permission.
62 *
63 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
64 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
65 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
66 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
67 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
68 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
69 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
70 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
71 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
72 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
73 * SUCH DAMAGE.
74 *
75 * @(#)kern_synch.c 8.9 (Berkeley) 5/19/95
76 */
77
78 #include <sys/cdefs.h>
79 __KERNEL_RCSID(0, "$NetBSD: kern_synch.c,v 1.171 2006/11/01 10:17:58 yamt Exp $");
80
81 #include "opt_ddb.h"
82 #include "opt_ktrace.h"
83 #include "opt_kstack.h"
84 #include "opt_lockdebug.h"
85 #include "opt_multiprocessor.h"
86 #include "opt_perfctrs.h"
87
88 #include <sys/param.h>
89 #include <sys/systm.h>
90 #include <sys/callout.h>
91 #include <sys/proc.h>
92 #include <sys/kernel.h>
93 #include <sys/buf.h>
94 #if defined(PERFCTRS)
95 #include <sys/pmc.h>
96 #endif
97 #include <sys/signalvar.h>
98 #include <sys/resourcevar.h>
99 #include <sys/sched.h>
100 #include <sys/sa.h>
101 #include <sys/savar.h>
102 #include <sys/kauth.h>
103
104 #include <uvm/uvm_extern.h>
105
106 #ifdef KTRACE
107 #include <sys/ktrace.h>
108 #endif
109
110 #include <machine/cpu.h>
111
112 int lbolt; /* once a second sleep address */
113 int rrticks; /* number of hardclock ticks per roundrobin() */
114
115 /*
116 * Sleep queues.
117 *
118 * We're only looking at 7 bits of the address; everything is
119 * aligned to 4, lots of things are aligned to greater powers
120 * of 2. Shift right by 8, i.e. drop the bottom 256 worth.
121 */
122 #define SLPQUE_TABLESIZE 128
123 #define SLPQUE_LOOKUP(x) (((u_long)(x) >> 8) & (SLPQUE_TABLESIZE - 1))
124
125 #define SLPQUE(ident) (&sched_slpque[SLPQUE_LOOKUP(ident)])
126
127 /*
128 * The global scheduler state.
129 */
130 struct prochd sched_qs[RUNQUE_NQS]; /* run queues */
131 volatile uint32_t sched_whichqs; /* bitmap of non-empty queues */
132 struct slpque sched_slpque[SLPQUE_TABLESIZE]; /* sleep queues */
133
134 struct simplelock sched_lock = SIMPLELOCK_INITIALIZER;
135
136 void schedcpu(void *);
137 void updatepri(struct lwp *);
138 void endtsleep(void *);
139
140 inline void sa_awaken(struct lwp *);
141 inline void awaken(struct lwp *);
142
143 struct callout schedcpu_ch = CALLOUT_INITIALIZER_SETFUNC(schedcpu, NULL);
144 static unsigned int schedcpu_ticks;
145
146
147 /*
148 * Force switch among equal priority processes every 100ms.
149 * Called from hardclock every hz/10 == rrticks hardclock ticks.
150 */
151 /* ARGSUSED */
152 void
153 roundrobin(struct cpu_info *ci)
154 {
155 struct schedstate_percpu *spc = &ci->ci_schedstate;
156
157 spc->spc_rrticks = rrticks;
158
159 if (curlwp != NULL) {
160 if (spc->spc_flags & SPCF_SEENRR) {
161 /*
162 * The process has already been through a roundrobin
163 * without switching and may be hogging the CPU.
164 * Indicate that the process should yield.
165 */
166 spc->spc_flags |= SPCF_SHOULDYIELD;
167 } else
168 spc->spc_flags |= SPCF_SEENRR;
169 }
170 need_resched(curcpu());
171 }
172
173 #define PPQ (128 / RUNQUE_NQS) /* priorities per queue */
174 #define NICE_WEIGHT 2 /* priorities per nice level */
175
176 #define ESTCPU_SHIFT 11
177 #define ESTCPU_MAX ((NICE_WEIGHT * PRIO_MAX - PPQ) << ESTCPU_SHIFT)
178 #define ESTCPULIM(e) min((e), ESTCPU_MAX)
179
180 /*
181 * Constants for digital decay and forget:
182 * 90% of (p_estcpu) usage in 5 * loadav time
183 * 95% of (p_pctcpu) usage in 60 seconds (load insensitive)
184 * Note that, as ps(1) mentions, this can let percentages
185 * total over 100% (I've seen 137.9% for 3 processes).
186 *
187 * Note that hardclock updates p_estcpu and p_cpticks independently.
188 *
189 * We wish to decay away 90% of p_estcpu in (5 * loadavg) seconds.
190 * That is, the system wants to compute a value of decay such
191 * that the following for loop:
192 * for (i = 0; i < (5 * loadavg); i++)
193 * p_estcpu *= decay;
194 * will compute
195 * p_estcpu *= 0.1;
196 * for all values of loadavg:
197 *
198 * Mathematically this loop can be expressed by saying:
199 * decay ** (5 * loadavg) ~= .1
200 *
201 * The system computes decay as:
202 * decay = (2 * loadavg) / (2 * loadavg + 1)
203 *
204 * We wish to prove that the system's computation of decay
205 * will always fulfill the equation:
206 * decay ** (5 * loadavg) ~= .1
207 *
208 * If we compute b as:
209 * b = 2 * loadavg
210 * then
211 * decay = b / (b + 1)
212 *
213 * We now need to prove two things:
214 * 1) Given factor ** (5 * loadavg) ~= .1, prove factor == b/(b+1)
215 * 2) Given b/(b+1) ** power ~= .1, prove power == (5 * loadavg)
216 *
217 * Facts:
218 * For x close to zero, exp(x) =~ 1 + x, since
219 * exp(x) = 0! + x**1/1! + x**2/2! + ... .
220 * therefore exp(-1/b) =~ 1 - (1/b) = (b-1)/b.
221 * For x close to zero, ln(1+x) =~ x, since
222 * ln(1+x) = x - x**2/2 + x**3/3 - ... -1 < x < 1
223 * therefore ln(b/(b+1)) = ln(1 - 1/(b+1)) =~ -1/(b+1).
224 * ln(.1) =~ -2.30
225 *
226 * Proof of (1):
227 * Solve (factor)**(power) =~ .1 given power (5*loadav):
228 * solving for factor,
229 * ln(factor) =~ (-2.30/5*loadav), or
230 * factor =~ exp(-1/((5/2.30)*loadav)) =~ exp(-1/(2*loadav)) =
231 * exp(-1/b) =~ (b-1)/b =~ b/(b+1). QED
232 *
233 * Proof of (2):
234 * Solve (factor)**(power) =~ .1 given factor == (b/(b+1)):
235 * solving for power,
236 * power*ln(b/(b+1)) =~ -2.30, or
237 * power =~ 2.3 * (b + 1) = 4.6*loadav + 2.3 =~ 5*loadav. QED
238 *
239 * Actual power values for the implemented algorithm are as follows:
240 * loadav: 1 2 3 4
241 * power: 5.68 10.32 14.94 19.55
242 */
243
244 /* calculations for digital decay to forget 90% of usage in 5*loadav sec */
245 #define loadfactor(loadav) (2 * (loadav))
246
247 static fixpt_t
248 decay_cpu(fixpt_t loadfac, fixpt_t estcpu)
249 {
250
251 if (estcpu == 0) {
252 return 0;
253 }
254
255 #if !defined(_LP64)
256 /* avoid 64bit arithmetics. */
257 #define FIXPT_MAX ((fixpt_t)((UINTMAX_C(1) << sizeof(fixpt_t) * CHAR_BIT) - 1))
258 if (__predict_true(loadfac <= FIXPT_MAX / ESTCPU_MAX)) {
259 return estcpu * loadfac / (loadfac + FSCALE);
260 }
261 #endif /* !defined(_LP64) */
262
263 return (uint64_t)estcpu * loadfac / (loadfac + FSCALE);
264 }
265
266 /*
267 * For all load averages >= 1 and max p_estcpu of (255 << ESTCPU_SHIFT),
268 * sleeping for at least seven times the loadfactor will decay p_estcpu to
269 * less than (1 << ESTCPU_SHIFT).
270 *
271 * note that our ESTCPU_MAX is actually much smaller than (255 << ESTCPU_SHIFT).
272 */
273 static fixpt_t
274 decay_cpu_batch(fixpt_t loadfac, fixpt_t estcpu, unsigned int n)
275 {
276
277 if ((n << FSHIFT) >= 7 * loadfac) {
278 return 0;
279 }
280
281 while (estcpu != 0 && n > 1) {
282 estcpu = decay_cpu(loadfac, estcpu);
283 n--;
284 }
285
286 return estcpu;
287 }
288
289 /* decay 95% of `p_pctcpu' in 60 seconds; see CCPU_SHIFT before changing */
290 fixpt_t ccpu = 0.95122942450071400909 * FSCALE; /* exp(-1/20) */
291
292 /*
293 * If `ccpu' is not equal to `exp(-1/20)' and you still want to use the
294 * faster/more-accurate formula, you'll have to estimate CCPU_SHIFT below
295 * and possibly adjust FSHIFT in "param.h" so that (FSHIFT >= CCPU_SHIFT).
296 *
297 * To estimate CCPU_SHIFT for exp(-1/20), the following formula was used:
298 * 1 - exp(-1/20) ~= 0.0487 ~= 0.0488 == 1 (fixed pt, *11* bits).
299 *
300 * If you dont want to bother with the faster/more-accurate formula, you
301 * can set CCPU_SHIFT to (FSHIFT + 1) which will use a slower/less-accurate
302 * (more general) method of calculating the %age of CPU used by a process.
303 */
304 #define CCPU_SHIFT 11
305
306 /*
307 * Recompute process priorities, every hz ticks.
308 */
309 /* ARGSUSED */
310 void
311 schedcpu(void *arg)
312 {
313 fixpt_t loadfac = loadfactor(averunnable.ldavg[0]);
314 struct lwp *l;
315 struct proc *p;
316 int s, minslp;
317 int clkhz;
318
319 schedcpu_ticks++;
320
321 proclist_lock_read();
322 PROCLIST_FOREACH(p, &allproc) {
323 /*
324 * Increment time in/out of memory and sleep time
325 * (if sleeping). We ignore overflow; with 16-bit int's
326 * (remember them?) overflow takes 45 days.
327 */
328 minslp = 2;
329 LIST_FOREACH(l, &p->p_lwps, l_sibling) {
330 l->l_swtime++;
331 if (l->l_stat == LSSLEEP || l->l_stat == LSSTOP ||
332 l->l_stat == LSSUSPENDED) {
333 l->l_slptime++;
334 minslp = min(minslp, l->l_slptime);
335 } else
336 minslp = 0;
337 }
338 p->p_pctcpu = (p->p_pctcpu * ccpu) >> FSHIFT;
339 /*
340 * If the process has slept the entire second,
341 * stop recalculating its priority until it wakes up.
342 */
343 if (minslp > 1)
344 continue;
345 s = splstatclock(); /* prevent state changes */
346 /*
347 * p_pctcpu is only for ps.
348 */
349 clkhz = stathz != 0 ? stathz : hz;
350 #if (FSHIFT >= CCPU_SHIFT)
351 p->p_pctcpu += (clkhz == 100)?
352 ((fixpt_t) p->p_cpticks) << (FSHIFT - CCPU_SHIFT):
353 100 * (((fixpt_t) p->p_cpticks)
354 << (FSHIFT - CCPU_SHIFT)) / clkhz;
355 #else
356 p->p_pctcpu += ((FSCALE - ccpu) *
357 (p->p_cpticks * FSCALE / clkhz)) >> FSHIFT;
358 #endif
359 p->p_cpticks = 0;
360 p->p_estcpu = decay_cpu(loadfac, p->p_estcpu);
361 splx(s); /* Done with the process CPU ticks update */
362 SCHED_LOCK(s);
363 LIST_FOREACH(l, &p->p_lwps, l_sibling) {
364 if (l->l_slptime > 1)
365 continue;
366 resetpriority(l);
367 if (l->l_priority >= PUSER) {
368 if (l->l_stat == LSRUN &&
369 (l->l_flag & L_INMEM) &&
370 (l->l_priority / PPQ) != (l->l_usrpri / PPQ)) {
371 remrunqueue(l);
372 l->l_priority = l->l_usrpri;
373 setrunqueue(l);
374 } else
375 l->l_priority = l->l_usrpri;
376 }
377 }
378 SCHED_UNLOCK(s);
379 }
380 proclist_unlock_read();
381 uvm_meter();
382 wakeup((caddr_t)&lbolt);
383 callout_schedule(&schedcpu_ch, hz);
384 }
385
386 /*
387 * Recalculate the priority of a process after it has slept for a while.
388 */
389 void
390 updatepri(struct lwp *l)
391 {
392 struct proc *p = l->l_proc;
393 fixpt_t loadfac;
394
395 SCHED_ASSERT_LOCKED();
396 KASSERT(l->l_slptime > 1);
397
398 loadfac = loadfactor(averunnable.ldavg[0]);
399
400 l->l_slptime--; /* the first time was done in schedcpu */
401 /* XXX NJWLWP */
402 p->p_estcpu = decay_cpu_batch(loadfac, p->p_estcpu, l->l_slptime);
403 resetpriority(l);
404 }
405
406 /*
407 * During autoconfiguration or after a panic, a sleep will simply
408 * lower the priority briefly to allow interrupts, then return.
409 * The priority to be used (safepri) is machine-dependent, thus this
410 * value is initialized and maintained in the machine-dependent layers.
411 * This priority will typically be 0, or the lowest priority
412 * that is safe for use on the interrupt stack; it can be made
413 * higher to block network software interrupts after panics.
414 */
415 int safepri;
416
417 /*
418 * General sleep call. Suspends the current process until a wakeup is
419 * performed on the specified identifier. The process will then be made
420 * runnable with the specified priority. Sleeps at most timo/hz seconds
421 * (0 means no timeout). If pri includes PCATCH flag, signals are checked
422 * before and after sleeping, else signals are not checked. Returns 0 if
423 * awakened, EWOULDBLOCK if the timeout expires. If PCATCH is set and a
424 * signal needs to be delivered, ERESTART is returned if the current system
425 * call should be restarted if possible, and EINTR is returned if the system
426 * call should be interrupted by the signal (return EINTR).
427 *
428 * The interlock is held until the scheduler_slock is acquired. The
429 * interlock will be locked before returning back to the caller
430 * unless the PNORELOCK flag is specified, in which case the
431 * interlock will always be unlocked upon return.
432 */
433 int
434 ltsleep(volatile const void *ident, int priority, const char *wmesg, int timo,
435 volatile struct simplelock *interlock)
436 {
437 struct lwp *l = curlwp;
438 struct proc *p = l ? l->l_proc : NULL;
439 struct slpque *qp;
440 struct sadata_upcall *sau;
441 int sig, s;
442 int catch = priority & PCATCH;
443 int relock = (priority & PNORELOCK) == 0;
444 int exiterr = (priority & PNOEXITERR) == 0;
445
446 /*
447 * XXXSMP
448 * This is probably bogus. Figure out what the right
449 * thing to do here really is.
450 * Note that not sleeping if ltsleep is called with curlwp == NULL
451 * in the shutdown case is disgusting but partly necessary given
452 * how shutdown (barely) works.
453 */
454 if (cold || (doing_shutdown && (panicstr || (l == NULL)))) {
455 /*
456 * After a panic, or during autoconfiguration,
457 * just give interrupts a chance, then just return;
458 * don't run any other procs or panic below,
459 * in case this is the idle process and already asleep.
460 */
461 s = splhigh();
462 splx(safepri);
463 splx(s);
464 if (interlock != NULL && relock == 0)
465 simple_unlock(interlock);
466 return (0);
467 }
468
469 KASSERT(p != NULL);
470 LOCK_ASSERT(interlock == NULL || simple_lock_held(interlock));
471
472 #ifdef KTRACE
473 if (KTRPOINT(p, KTR_CSW))
474 ktrcsw(l, 1, 0);
475 #endif
476
477 /*
478 * XXX We need to allocate the sadata_upcall structure here,
479 * XXX since we can't sleep while waiting for memory inside
480 * XXX sa_upcall(). It would be nice if we could safely
481 * XXX allocate the sadata_upcall structure on the stack, here.
482 */
483 if (l->l_flag & L_SA) {
484 sau = sadata_upcall_alloc(0);
485 } else {
486 sau = NULL;
487 }
488
489 SCHED_LOCK(s);
490
491 #ifdef DIAGNOSTIC
492 if (ident == NULL)
493 panic("ltsleep: ident == NULL");
494 if (l->l_stat != LSONPROC)
495 panic("ltsleep: l_stat %d != LSONPROC", l->l_stat);
496 if (l->l_back != NULL)
497 panic("ltsleep: p_back != NULL");
498 #endif
499
500 l->l_wchan = ident;
501 l->l_wmesg = wmesg;
502 l->l_slptime = 0;
503 l->l_priority = priority & PRIMASK;
504
505 qp = SLPQUE(ident);
506 if (qp->sq_head == 0)
507 qp->sq_head = l;
508 else {
509 *qp->sq_tailp = l;
510 }
511 *(qp->sq_tailp = &l->l_forw) = 0;
512
513 if (timo)
514 callout_reset(&l->l_tsleep_ch, timo, endtsleep, l);
515
516 /*
517 * We can now release the interlock; the scheduler_slock
518 * is held, so a thread can't get in to do wakeup() before
519 * we do the switch.
520 *
521 * XXX We leave the code block here, after inserting ourselves
522 * on the sleep queue, because we might want a more clever
523 * data structure for the sleep queues at some point.
524 */
525 if (interlock != NULL)
526 simple_unlock(interlock);
527
528 /*
529 * We put ourselves on the sleep queue and start our timeout
530 * before calling CURSIG, as we could stop there, and a wakeup
531 * or a SIGCONT (or both) could occur while we were stopped.
532 * A SIGCONT would cause us to be marked as SSLEEP
533 * without resuming us, thus we must be ready for sleep
534 * when CURSIG is called. If the wakeup happens while we're
535 * stopped, p->p_wchan will be 0 upon return from CURSIG.
536 */
537 if (catch) {
538 SCHED_UNLOCK(s);
539 l->l_flag |= L_SINTR;
540 if (((sig = CURSIG(l)) != 0) ||
541 ((p->p_flag & P_WEXIT) && p->p_nlwps > 1)) {
542 SCHED_LOCK(s);
543 if (l->l_wchan != NULL)
544 unsleep(l);
545 l->l_stat = LSONPROC;
546 SCHED_UNLOCK(s);
547 goto resume;
548 }
549 if (l->l_wchan == NULL) {
550 catch = 0;
551 goto resume;
552 }
553 SCHED_LOCK(s);
554 } else
555 sig = 0;
556 l->l_stat = LSSLEEP;
557 p->p_nrlwps--;
558 p->p_stats->p_ru.ru_nvcsw++;
559 SCHED_ASSERT_LOCKED();
560 if (l->l_flag & L_SA)
561 sa_switch(l, sau, SA_UPCALL_BLOCKED);
562 else
563 mi_switch(l, NULL);
564
565 #ifdef KERN_SYNCH_BPENDTSLEEP_LABEL
566 /*
567 * XXX
568 * gcc4 optimizer will duplicate this asm statement on some arch
569 * and it will cause a multiple symbol definition error in gas.
570 * the kernel Makefile is setup to use -fno-reorder-blocks if
571 * this option is set.
572 */
573 /* handy breakpoint location after process "wakes" */
574 __asm(".globl bpendtsleep\nbpendtsleep:");
575 #endif
576 /*
577 * p->p_nrlwps is incremented by whoever made us runnable again,
578 * either setrunnable() or awaken().
579 */
580
581 SCHED_ASSERT_UNLOCKED();
582 splx(s);
583
584 resume:
585 KDASSERT(l->l_cpu != NULL);
586 KDASSERT(l->l_cpu == curcpu());
587 l->l_cpu->ci_schedstate.spc_curpriority = l->l_usrpri;
588
589 l->l_flag &= ~L_SINTR;
590 if (l->l_flag & L_TIMEOUT) {
591 l->l_flag &= ~(L_TIMEOUT|L_CANCELLED);
592 if (sig == 0) {
593 #ifdef KTRACE
594 if (KTRPOINT(p, KTR_CSW))
595 ktrcsw(l, 0, 0);
596 #endif
597 if (relock && interlock != NULL)
598 simple_lock(interlock);
599 return (EWOULDBLOCK);
600 }
601 } else if (timo)
602 callout_stop(&l->l_tsleep_ch);
603
604 if (catch) {
605 const int cancelled = l->l_flag & L_CANCELLED;
606 l->l_flag &= ~L_CANCELLED;
607 if (sig != 0 || (sig = CURSIG(l)) != 0 || cancelled) {
608 #ifdef KTRACE
609 if (KTRPOINT(p, KTR_CSW))
610 ktrcsw(l, 0, 0);
611 #endif
612 if (relock && interlock != NULL)
613 simple_lock(interlock);
614 /*
615 * If this sleep was canceled, don't let the syscall
616 * restart.
617 */
618 if (cancelled ||
619 (SIGACTION(p, sig).sa_flags & SA_RESTART) == 0)
620 return (EINTR);
621 return (ERESTART);
622 }
623 }
624
625 #ifdef KTRACE
626 if (KTRPOINT(p, KTR_CSW))
627 ktrcsw(l, 0, 0);
628 #endif
629 if (relock && interlock != NULL)
630 simple_lock(interlock);
631
632 /* XXXNJW this is very much a kluge.
633 * revisit. a better way of preventing looping/hanging syscalls like
634 * wait4() and _lwp_wait() from wedging an exiting process
635 * would be preferred.
636 */
637 if (catch && ((p->p_flag & P_WEXIT) && p->p_nlwps > 1 && exiterr))
638 return (EINTR);
639 return (0);
640 }
641
642 /*
643 * Implement timeout for tsleep.
644 * If process hasn't been awakened (wchan non-zero),
645 * set timeout flag and undo the sleep. If proc
646 * is stopped, just unsleep so it will remain stopped.
647 */
648 void
649 endtsleep(void *arg)
650 {
651 struct lwp *l;
652 int s;
653
654 l = (struct lwp *)arg;
655 SCHED_LOCK(s);
656 if (l->l_wchan) {
657 if (l->l_stat == LSSLEEP)
658 setrunnable(l);
659 else
660 unsleep(l);
661 l->l_flag |= L_TIMEOUT;
662 }
663 SCHED_UNLOCK(s);
664 }
665
666 /*
667 * Remove a process from its wait queue
668 */
669 void
670 unsleep(struct lwp *l)
671 {
672 struct slpque *qp;
673 struct lwp **hp;
674
675 SCHED_ASSERT_LOCKED();
676
677 if (l->l_wchan) {
678 hp = &(qp = SLPQUE(l->l_wchan))->sq_head;
679 while (*hp != l)
680 hp = &(*hp)->l_forw;
681 *hp = l->l_forw;
682 if (qp->sq_tailp == &l->l_forw)
683 qp->sq_tailp = hp;
684 l->l_wchan = 0;
685 }
686 }
687
688 inline void
689 sa_awaken(struct lwp *l)
690 {
691
692 SCHED_ASSERT_LOCKED();
693
694 if (l == l->l_savp->savp_lwp && l->l_flag & L_SA_YIELD)
695 l->l_flag &= ~L_SA_IDLE;
696 }
697
698 /*
699 * Optimized-for-wakeup() version of setrunnable().
700 */
701 inline void
702 awaken(struct lwp *l)
703 {
704
705 SCHED_ASSERT_LOCKED();
706
707 if (l->l_proc->p_sa)
708 sa_awaken(l);
709
710 if (l->l_slptime > 1)
711 updatepri(l);
712 l->l_slptime = 0;
713 l->l_stat = LSRUN;
714 l->l_proc->p_nrlwps++;
715 /*
716 * Since curpriority is a user priority, p->p_priority
717 * is always better than curpriority on the last CPU on
718 * which it ran.
719 *
720 * XXXSMP See affinity comment in resched_proc().
721 */
722 if (l->l_flag & L_INMEM) {
723 setrunqueue(l);
724 KASSERT(l->l_cpu != NULL);
725 need_resched(l->l_cpu);
726 } else
727 sched_wakeup(&proc0);
728 }
729
730 #if defined(MULTIPROCESSOR) || defined(LOCKDEBUG)
731 void
732 sched_unlock_idle(void)
733 {
734
735 simple_unlock(&sched_lock);
736 }
737
738 void
739 sched_lock_idle(void)
740 {
741
742 simple_lock(&sched_lock);
743 }
744 #endif /* MULTIPROCESSOR || LOCKDEBUG */
745
746 /*
747 * Make all processes sleeping on the specified identifier runnable.
748 */
749
750 void
751 wakeup(volatile const void *ident)
752 {
753 int s;
754
755 SCHED_ASSERT_UNLOCKED();
756
757 SCHED_LOCK(s);
758 sched_wakeup(ident);
759 SCHED_UNLOCK(s);
760 }
761
762 void
763 sched_wakeup(volatile const void *ident)
764 {
765 struct slpque *qp;
766 struct lwp *l, **q;
767
768 SCHED_ASSERT_LOCKED();
769
770 qp = SLPQUE(ident);
771 restart:
772 for (q = &qp->sq_head; (l = *q) != NULL; ) {
773 #ifdef DIAGNOSTIC
774 if (l->l_back || (l->l_stat != LSSLEEP &&
775 l->l_stat != LSSTOP && l->l_stat != LSSUSPENDED))
776 panic("wakeup");
777 #endif
778 if (l->l_wchan == ident) {
779 l->l_wchan = 0;
780 *q = l->l_forw;
781 if (qp->sq_tailp == &l->l_forw)
782 qp->sq_tailp = q;
783 if (l->l_stat == LSSLEEP) {
784 awaken(l);
785 goto restart;
786 }
787 } else
788 q = &l->l_forw;
789 }
790 }
791
792 /*
793 * Make the highest priority process first in line on the specified
794 * identifier runnable.
795 */
796 void
797 wakeup_one(volatile const void *ident)
798 {
799 struct slpque *qp;
800 struct lwp *l, **q;
801 struct lwp *best_sleepp, **best_sleepq;
802 struct lwp *best_stopp, **best_stopq;
803 int s;
804
805 best_sleepp = best_stopp = NULL;
806 best_sleepq = best_stopq = NULL;
807
808 SCHED_LOCK(s);
809
810 qp = SLPQUE(ident);
811
812 for (q = &qp->sq_head; (l = *q) != NULL; q = &l->l_forw) {
813 #ifdef DIAGNOSTIC
814 if (l->l_back || (l->l_stat != LSSLEEP &&
815 l->l_stat != LSSTOP && l->l_stat != LSSUSPENDED))
816 panic("wakeup_one");
817 #endif
818 if (l->l_wchan == ident) {
819 if (l->l_stat == LSSLEEP) {
820 if (best_sleepp == NULL ||
821 l->l_priority < best_sleepp->l_priority) {
822 best_sleepp = l;
823 best_sleepq = q;
824 }
825 } else {
826 if (best_stopp == NULL ||
827 l->l_priority < best_stopp->l_priority) {
828 best_stopp = l;
829 best_stopq = q;
830 }
831 }
832 }
833 }
834
835 /*
836 * Consider any SSLEEP process higher than the highest priority SSTOP
837 * process.
838 */
839 if (best_sleepp != NULL) {
840 l = best_sleepp;
841 q = best_sleepq;
842 } else {
843 l = best_stopp;
844 q = best_stopq;
845 }
846
847 if (l != NULL) {
848 l->l_wchan = NULL;
849 *q = l->l_forw;
850 if (qp->sq_tailp == &l->l_forw)
851 qp->sq_tailp = q;
852 if (l->l_stat == LSSLEEP)
853 awaken(l);
854 }
855 SCHED_UNLOCK(s);
856 }
857
858 /*
859 * General yield call. Puts the current process back on its run queue and
860 * performs a voluntary context switch. Should only be called when the
861 * current process explicitly requests it (eg sched_yield(2) in compat code).
862 */
863 void
864 yield(void)
865 {
866 struct lwp *l = curlwp;
867 int s;
868
869 SCHED_LOCK(s);
870 l->l_priority = l->l_usrpri;
871 l->l_stat = LSRUN;
872 setrunqueue(l);
873 l->l_proc->p_stats->p_ru.ru_nvcsw++;
874 mi_switch(l, NULL);
875 SCHED_ASSERT_UNLOCKED();
876 splx(s);
877 }
878
879 /*
880 * General preemption call. Puts the current process back on its run queue
881 * and performs an involuntary context switch.
882 * The 'more' ("more work to do") argument is boolean. Returning to userspace
883 * preempt() calls pass 0. "Voluntary" preemptions in e.g. uiomove() pass 1.
884 * This will be used to indicate to the SA subsystem that the LWP is
885 * not yet finished in the kernel.
886 */
887
888 void
889 preempt(int more)
890 {
891 struct lwp *l = curlwp;
892 int r, s;
893
894 SCHED_LOCK(s);
895 l->l_priority = l->l_usrpri;
896 l->l_stat = LSRUN;
897 setrunqueue(l);
898 l->l_proc->p_stats->p_ru.ru_nivcsw++;
899 r = mi_switch(l, NULL);
900 SCHED_ASSERT_UNLOCKED();
901 splx(s);
902 if ((l->l_flag & L_SA) != 0 && r != 0 && more == 0)
903 sa_preempt(l);
904 }
905
906 /*
907 * The machine independent parts of context switch.
908 * Must be called at splsched() (no higher!) and with
909 * the sched_lock held.
910 * Switch to "new" if non-NULL, otherwise let cpu_switch choose
911 * the next lwp.
912 *
913 * Returns 1 if another process was actually run.
914 */
915 int
916 mi_switch(struct lwp *l, struct lwp *newl)
917 {
918 struct schedstate_percpu *spc;
919 struct rlimit *rlim;
920 long s, u;
921 struct timeval tv;
922 int hold_count;
923 struct proc *p = l->l_proc;
924 int retval;
925
926 SCHED_ASSERT_LOCKED();
927
928 /*
929 * Release the kernel_lock, as we are about to yield the CPU.
930 * The scheduler lock is still held until cpu_switch()
931 * selects a new process and removes it from the run queue.
932 */
933 hold_count = KERNEL_LOCK_RELEASE_ALL();
934
935 KDASSERT(l->l_cpu != NULL);
936 KDASSERT(l->l_cpu == curcpu());
937
938 spc = &l->l_cpu->ci_schedstate;
939
940 #ifdef LOCKDEBUG
941 spinlock_switchcheck();
942 simple_lock_switchcheck();
943 #endif
944
945 /*
946 * Compute the amount of time during which the current
947 * process was running.
948 */
949 microtime(&tv);
950 u = p->p_rtime.tv_usec +
951 (tv.tv_usec - spc->spc_runtime.tv_usec);
952 s = p->p_rtime.tv_sec + (tv.tv_sec - spc->spc_runtime.tv_sec);
953 if (u < 0) {
954 u += 1000000;
955 s--;
956 } else if (u >= 1000000) {
957 u -= 1000000;
958 s++;
959 }
960 p->p_rtime.tv_usec = u;
961 p->p_rtime.tv_sec = s;
962
963 /*
964 * Process is about to yield the CPU; clear the appropriate
965 * scheduling flags.
966 */
967 spc->spc_flags &= ~SPCF_SWITCHCLEAR;
968
969 #ifdef KSTACK_CHECK_MAGIC
970 kstack_check_magic(l);
971 #endif
972
973 /*
974 * If we are using h/w performance counters, save context.
975 */
976 #if PERFCTRS
977 if (PMC_ENABLED(p)) {
978 pmc_save_context(p);
979 }
980 #endif
981
982 /*
983 * Switch to the new current process. When we
984 * run again, we'll return back here.
985 */
986 uvmexp.swtch++;
987 if (newl == NULL) {
988 retval = cpu_switch(l, NULL);
989 } else {
990 remrunqueue(newl);
991 cpu_switchto(l, newl);
992 retval = 0;
993 }
994
995 /*
996 * If we are using h/w performance counters, restore context.
997 */
998 #if PERFCTRS
999 if (PMC_ENABLED(p)) {
1000 pmc_restore_context(p);
1001 }
1002 #endif
1003
1004 /*
1005 * Make sure that MD code released the scheduler lock before
1006 * resuming us.
1007 */
1008 SCHED_ASSERT_UNLOCKED();
1009
1010 /*
1011 * We're running again; record our new start time. We might
1012 * be running on a new CPU now, so don't use the cache'd
1013 * schedstate_percpu pointer.
1014 */
1015 KDASSERT(l->l_cpu != NULL);
1016 KDASSERT(l->l_cpu == curcpu());
1017 microtime(&l->l_cpu->ci_schedstate.spc_runtime);
1018
1019 /*
1020 * Check if the process exceeds its CPU resource allocation.
1021 * If over max, kill it. In any case, if it has run for more
1022 * than 10 minutes, reduce priority to give others a chance.
1023 */
1024 rlim = &p->p_rlimit[RLIMIT_CPU];
1025 if (s >= rlim->rlim_cur) {
1026 if (s >= rlim->rlim_max) {
1027 psignal(p, SIGKILL);
1028 } else {
1029 psignal(p, SIGXCPU);
1030 if (rlim->rlim_cur < rlim->rlim_max)
1031 rlim->rlim_cur += 5;
1032 }
1033 }
1034 if (autonicetime && s > autonicetime &&
1035 kauth_cred_geteuid(p->p_cred) && p->p_nice == NZERO) {
1036 SCHED_LOCK(s);
1037 p->p_nice = autoniceval + NZERO;
1038 resetpriority(l);
1039 SCHED_UNLOCK(s);
1040 }
1041
1042 /*
1043 * Reacquire the kernel_lock now. We do this after we've
1044 * released the scheduler lock to avoid deadlock, and before
1045 * we reacquire the interlock.
1046 */
1047 KERNEL_LOCK_ACQUIRE_COUNT(hold_count);
1048
1049 return retval;
1050 }
1051
1052 /*
1053 * Initialize the (doubly-linked) run queues
1054 * to be empty.
1055 */
1056 void
1057 rqinit()
1058 {
1059 int i;
1060
1061 for (i = 0; i < RUNQUE_NQS; i++)
1062 sched_qs[i].ph_link = sched_qs[i].ph_rlink =
1063 (struct lwp *)&sched_qs[i];
1064 }
1065
1066 static inline void
1067 resched_proc(struct lwp *l, u_char pri)
1068 {
1069 struct cpu_info *ci;
1070
1071 /*
1072 * XXXSMP
1073 * Since l->l_cpu persists across a context switch,
1074 * this gives us *very weak* processor affinity, in
1075 * that we notify the CPU on which the process last
1076 * ran that it should try to switch.
1077 *
1078 * This does not guarantee that the process will run on
1079 * that processor next, because another processor might
1080 * grab it the next time it performs a context switch.
1081 *
1082 * This also does not handle the case where its last
1083 * CPU is running a higher-priority process, but every
1084 * other CPU is running a lower-priority process. There
1085 * are ways to handle this situation, but they're not
1086 * currently very pretty, and we also need to weigh the
1087 * cost of moving a process from one CPU to another.
1088 *
1089 * XXXSMP
1090 * There is also the issue of locking the other CPU's
1091 * sched state, which we currently do not do.
1092 */
1093 ci = (l->l_cpu != NULL) ? l->l_cpu : curcpu();
1094 if (pri < ci->ci_schedstate.spc_curpriority)
1095 need_resched(ci);
1096 }
1097
1098 /*
1099 * Change process state to be runnable,
1100 * placing it on the run queue if it is in memory,
1101 * and awakening the swapper if it isn't in memory.
1102 */
1103 void
1104 setrunnable(struct lwp *l)
1105 {
1106 struct proc *p = l->l_proc;
1107
1108 SCHED_ASSERT_LOCKED();
1109
1110 switch (l->l_stat) {
1111 case 0:
1112 case LSRUN:
1113 case LSONPROC:
1114 case LSZOMB:
1115 case LSDEAD:
1116 default:
1117 panic("setrunnable: lwp %p state was %d", l, l->l_stat);
1118 case LSSTOP:
1119 /*
1120 * If we're being traced (possibly because someone attached us
1121 * while we were stopped), check for a signal from the debugger.
1122 */
1123 if ((p->p_flag & P_TRACED) != 0 && p->p_xstat != 0) {
1124 sigaddset(&p->p_sigctx.ps_siglist, p->p_xstat);
1125 CHECKSIGS(p);
1126 }
1127 case LSSLEEP:
1128 unsleep(l); /* e.g. when sending signals */
1129 break;
1130
1131 case LSIDL:
1132 break;
1133 case LSSUSPENDED:
1134 break;
1135 }
1136
1137 if (l->l_proc->p_sa)
1138 sa_awaken(l);
1139
1140 l->l_stat = LSRUN;
1141 p->p_nrlwps++;
1142
1143 if (l->l_flag & L_INMEM)
1144 setrunqueue(l);
1145
1146 if (l->l_slptime > 1)
1147 updatepri(l);
1148 l->l_slptime = 0;
1149 if ((l->l_flag & L_INMEM) == 0)
1150 sched_wakeup((caddr_t)&proc0);
1151 else
1152 resched_proc(l, l->l_priority);
1153 }
1154
1155 /*
1156 * Compute the priority of a process when running in user mode.
1157 * Arrange to reschedule if the resulting priority is better
1158 * than that of the current process.
1159 */
1160 void
1161 resetpriority(struct lwp *l)
1162 {
1163 unsigned int newpriority;
1164 struct proc *p = l->l_proc;
1165
1166 SCHED_ASSERT_LOCKED();
1167
1168 newpriority = PUSER + (p->p_estcpu >> ESTCPU_SHIFT) +
1169 NICE_WEIGHT * (p->p_nice - NZERO);
1170 newpriority = min(newpriority, MAXPRI);
1171 l->l_usrpri = newpriority;
1172 resched_proc(l, l->l_usrpri);
1173 }
1174
1175 /*
1176 * Recompute priority for all LWPs in a process.
1177 */
1178 void
1179 resetprocpriority(struct proc *p)
1180 {
1181 struct lwp *l;
1182
1183 LIST_FOREACH(l, &p->p_lwps, l_sibling)
1184 resetpriority(l);
1185 }
1186
1187 /*
1188 * We adjust the priority of the current process. The priority of a process
1189 * gets worse as it accumulates CPU time. The CPU usage estimator (p_estcpu)
1190 * is increased here. The formula for computing priorities (in kern_synch.c)
1191 * will compute a different value each time p_estcpu increases. This can
1192 * cause a switch, but unless the priority crosses a PPQ boundary the actual
1193 * queue will not change. The CPU usage estimator ramps up quite quickly
1194 * when the process is running (linearly), and decays away exponentially, at
1195 * a rate which is proportionally slower when the system is busy. The basic
1196 * principle is that the system will 90% forget that the process used a lot
1197 * of CPU time in 5 * loadav seconds. This causes the system to favor
1198 * processes which haven't run much recently, and to round-robin among other
1199 * processes.
1200 */
1201
1202 void
1203 schedclock(struct lwp *l)
1204 {
1205 struct proc *p = l->l_proc;
1206 int s;
1207
1208 p->p_estcpu = ESTCPULIM(p->p_estcpu + (1 << ESTCPU_SHIFT));
1209 SCHED_LOCK(s);
1210 resetpriority(l);
1211 SCHED_UNLOCK(s);
1212
1213 if (l->l_priority >= PUSER)
1214 l->l_priority = l->l_usrpri;
1215 }
1216
1217 void
1218 suspendsched()
1219 {
1220 struct lwp *l;
1221 int s;
1222
1223 /*
1224 * Convert all non-P_SYSTEM LSSLEEP or LSRUN processes to
1225 * LSSUSPENDED.
1226 */
1227 proclist_lock_read();
1228 SCHED_LOCK(s);
1229 LIST_FOREACH(l, &alllwp, l_list) {
1230 if ((l->l_proc->p_flag & P_SYSTEM) != 0)
1231 continue;
1232
1233 switch (l->l_stat) {
1234 case LSRUN:
1235 l->l_proc->p_nrlwps--;
1236 if ((l->l_flag & L_INMEM) != 0)
1237 remrunqueue(l);
1238 /* FALLTHROUGH */
1239 case LSSLEEP:
1240 l->l_stat = LSSUSPENDED;
1241 break;
1242 case LSONPROC:
1243 /*
1244 * XXX SMP: we need to deal with processes on
1245 * others CPU !
1246 */
1247 break;
1248 default:
1249 break;
1250 }
1251 }
1252 SCHED_UNLOCK(s);
1253 proclist_unlock_read();
1254 }
1255
1256 /*
1257 * scheduler_fork_hook:
1258 *
1259 * Inherit the parent's scheduler history.
1260 */
1261 void
1262 scheduler_fork_hook(struct proc *parent, struct proc *child)
1263 {
1264
1265 child->p_estcpu = child->p_estcpu_inherited = parent->p_estcpu;
1266 child->p_forktime = schedcpu_ticks;
1267 }
1268
1269 /*
1270 * scheduler_wait_hook:
1271 *
1272 * Chargeback parents for the sins of their children.
1273 */
1274 void
1275 scheduler_wait_hook(struct proc *parent, struct proc *child)
1276 {
1277 fixpt_t loadfac = loadfactor(averunnable.ldavg[0]);
1278 fixpt_t estcpu;
1279
1280 /* XXX Only if parent != init?? */
1281
1282 estcpu = decay_cpu_batch(loadfac, child->p_estcpu_inherited,
1283 schedcpu_ticks - child->p_forktime);
1284 if (child->p_estcpu > estcpu) {
1285 parent->p_estcpu =
1286 ESTCPULIM(parent->p_estcpu + child->p_estcpu - estcpu);
1287 }
1288 }
1289
1290 /*
1291 * Low-level routines to access the run queue. Optimised assembler
1292 * routines can override these.
1293 */
1294
1295 #ifndef __HAVE_MD_RUNQUEUE
1296
1297 /*
1298 * On some architectures, it's faster to use a MSB ordering for the priorites
1299 * than the traditional LSB ordering.
1300 */
1301 #ifdef __HAVE_BIGENDIAN_BITOPS
1302 #define RQMASK(n) (0x80000000 >> (n))
1303 #else
1304 #define RQMASK(n) (0x00000001 << (n))
1305 #endif
1306
1307 /*
1308 * The primitives that manipulate the run queues. whichqs tells which
1309 * of the 32 queues qs have processes in them. Setrunqueue puts processes
1310 * into queues, remrunqueue removes them from queues. The running process is
1311 * on no queue, other processes are on a queue related to p->p_priority,
1312 * divided by 4 actually to shrink the 0-127 range of priorities into the 32
1313 * available queues.
1314 */
1315
1316 #ifdef RQDEBUG
1317 static void
1318 checkrunqueue(int whichq, struct lwp *l)
1319 {
1320 const struct prochd * const rq = &sched_qs[whichq];
1321 struct lwp *l2;
1322 int found = 0;
1323 int die = 0;
1324 int empty = 1;
1325 for (l2 = rq->ph_link; l2 != (const void*) rq; l2 = l2->l_forw) {
1326 if (l2->l_stat != LSRUN) {
1327 printf("checkrunqueue[%d]: lwp %p state (%d) "
1328 " != LSRUN\n", whichq, l2, l2->l_stat);
1329 }
1330 if (l2->l_back->l_forw != l2) {
1331 printf("checkrunqueue[%d]: lwp %p back-qptr (%p) "
1332 "corrupt %p\n", whichq, l2, l2->l_back,
1333 l2->l_back->l_forw);
1334 die = 1;
1335 }
1336 if (l2->l_forw->l_back != l2) {
1337 printf("checkrunqueue[%d]: lwp %p forw-qptr (%p) "
1338 "corrupt %p\n", whichq, l2, l2->l_forw,
1339 l2->l_forw->l_back);
1340 die = 1;
1341 }
1342 if (l2 == l)
1343 found = 1;
1344 empty = 0;
1345 }
1346 if (empty && (sched_whichqs & RQMASK(whichq)) != 0) {
1347 printf("checkrunqueue[%d]: bit set for empty run-queue %p\n",
1348 whichq, rq);
1349 die = 1;
1350 } else if (!empty && (sched_whichqs & RQMASK(whichq)) == 0) {
1351 printf("checkrunqueue[%d]: bit clear for non-empty "
1352 "run-queue %p\n", whichq, rq);
1353 die = 1;
1354 }
1355 if (l != NULL && (sched_whichqs & RQMASK(whichq)) == 0) {
1356 printf("checkrunqueue[%d]: bit clear for active lwp %p\n",
1357 whichq, l);
1358 die = 1;
1359 }
1360 if (l != NULL && empty) {
1361 printf("checkrunqueue[%d]: empty run-queue %p with "
1362 "active lwp %p\n", whichq, rq, l);
1363 die = 1;
1364 }
1365 if (l != NULL && !found) {
1366 printf("checkrunqueue[%d]: lwp %p not in runqueue %p!",
1367 whichq, l, rq);
1368 die = 1;
1369 }
1370 if (die)
1371 panic("checkrunqueue: inconsistency found");
1372 }
1373 #endif /* RQDEBUG */
1374
1375 void
1376 setrunqueue(struct lwp *l)
1377 {
1378 struct prochd *rq;
1379 struct lwp *prev;
1380 const int whichq = l->l_priority / PPQ;
1381
1382 #ifdef RQDEBUG
1383 checkrunqueue(whichq, NULL);
1384 #endif
1385 #ifdef DIAGNOSTIC
1386 if (l->l_back != NULL || l->l_wchan != NULL || l->l_stat != LSRUN)
1387 panic("setrunqueue");
1388 #endif
1389 sched_whichqs |= RQMASK(whichq);
1390 rq = &sched_qs[whichq];
1391 prev = rq->ph_rlink;
1392 l->l_forw = (struct lwp *)rq;
1393 rq->ph_rlink = l;
1394 prev->l_forw = l;
1395 l->l_back = prev;
1396 #ifdef RQDEBUG
1397 checkrunqueue(whichq, l);
1398 #endif
1399 }
1400
1401 void
1402 remrunqueue(struct lwp *l)
1403 {
1404 struct lwp *prev, *next;
1405 const int whichq = l->l_priority / PPQ;
1406 #ifdef RQDEBUG
1407 checkrunqueue(whichq, l);
1408 #endif
1409 #ifdef DIAGNOSTIC
1410 if (((sched_whichqs & RQMASK(whichq)) == 0))
1411 panic("remrunqueue: bit %d not set", whichq);
1412 #endif
1413 prev = l->l_back;
1414 l->l_back = NULL;
1415 next = l->l_forw;
1416 prev->l_forw = next;
1417 next->l_back = prev;
1418 if (prev == next)
1419 sched_whichqs &= ~RQMASK(whichq);
1420 #ifdef RQDEBUG
1421 checkrunqueue(whichq, NULL);
1422 #endif
1423 }
1424
1425 #undef RQMASK
1426 #endif /* !defined(__HAVE_MD_RUNQUEUE) */
1427