kern_softint.c revision 1.3.6.2 1 /* $NetBSD: kern_softint.c,v 1.3.6.2 2007/12/08 18:20:32 mjf Exp $ */
2
3 /*-
4 * Copyright (c) 2007 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Andrew Doran.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the NetBSD
21 * Foundation, Inc. and its contributors.
22 * 4. Neither the name of The NetBSD Foundation nor the names of its
23 * contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
37 */
38
39 /*
40 * Generic software interrupt framework.
41 *
42 * Overview
43 *
44 * The soft interrupt framework provides a mechanism to schedule a
45 * low priority callback that runs with thread context. It allows
46 * for dynamic registration of software interrupts, and for fair
47 * queueing and prioritization of those interrupts. The callbacks
48 * can be scheduled to run from nearly any point in the kernel: by
49 * code running with thread context, by code running from a
50 * hardware interrupt handler, and at any interrupt priority
51 * level.
52 *
53 * Priority levels
54 *
55 * Since soft interrupt dispatch can be tied to the underlying
56 * architecture's interrupt dispatch code, it can be limited
57 * both by the capabilities of the hardware and the capabilities
58 * of the interrupt dispatch code itself. The number of priority
59 * levels is restricted to four. In order of priority (lowest to
60 * highest) the levels are: clock, bio, net, serial.
61 *
62 * The names are symbolic and in isolation do not have any direct
63 * connection with a particular kind of device activity: they are
64 * only meant as a guide.
65 *
66 * The four priority levels map directly to scheduler priority
67 * levels, and where the architecture implements 'fast' software
68 * interrupts, they also map onto interrupt priorities. The
69 * interrupt priorities are intended to be hidden from machine
70 * independent code, which should use thread-safe mechanisms to
71 * synchronize with software interrupts (for example: mutexes).
72 *
73 * Capabilities
74 *
75 * Software interrupts run with limited machine context. In
76 * particular, they do not posess any address space context. They
77 * should not try to operate on user space addresses, or to use
78 * virtual memory facilities other than those noted as interrupt
79 * safe.
80 *
81 * Unlike hardware interrupts, software interrupts do have thread
82 * context. They may block on synchronization objects, sleep, and
83 * resume execution at a later time.
84 *
85 * Since software interrupts are a limited resource and run with
86 * higher priority than most other LWPs in the system, all
87 * block-and-resume activity by a software interrupt must be kept
88 * short to allow futher processing at that level to continue. By
89 * extension, code running with process context must take care to
90 * ensure that any lock that may be taken from a software interrupt
91 * can not be held for more than a short period of time.
92 *
93 * The kernel does not allow software interrupts to use facilities
94 * or perform actions that may block for a significant amount of
95 * time. This means that it's not valid for a software interrupt
96 * to: sleep on condition variables, use the lockmgr() facility,
97 * or wait for resources to become available (for example,
98 * memory).
99 *
100 * Per-CPU operation
101 *
102 * If a soft interrupt is triggered on a CPU, it can only be
103 * dispatched on the same CPU. Each LWP dedicated to handling a
104 * soft interrupt is bound to its home CPU, so if the LWP blocks
105 * and needs to run again, it can only run there. Nearly all data
106 * structures used to manage software interrupts are per-CPU.
107 *
108 * The per-CPU requirement is intended to reduce "ping-pong" of
109 * cache lines between CPUs: lines occupied by data structures
110 * used to manage the soft interrupts, and lines occupied by data
111 * items being passed down to the soft interrupt. As a positive
112 * side effect, this also means that the soft interrupt dispatch
113 * code does not need to to use spinlocks to synchronize.
114 *
115 * Generic implementation
116 *
117 * A generic, low performance implementation is provided that
118 * works across all architectures, with no machine-dependent
119 * modifications needed. This implementation uses the scheduler,
120 * and so has a number of restrictions:
121 *
122 * 1) The software interrupts are not currently preemptive, so
123 * must wait for the currently executing LWP to yield the CPU.
124 * This can introduce latency.
125 *
126 * 2) An expensive context switch is required for a software
127 * interrupt to be handled.
128 *
129 * 'Fast' software interrupts
130 *
131 * If an architectures defines __HAVE_FAST_SOFTINTS, it implements
132 * the fast mechanism. Threads running either in the kernel or in
133 * userspace will be interrupted, but will not be preempted. When
134 * the soft interrupt completes execution, the interrupted LWP
135 * is resumed. Interrupt dispatch code must provide the minimum
136 * level of context necessary for the soft interrupt to block and
137 * be resumed at a later time. The machine-dependent dispatch
138 * path looks something like the following:
139 *
140 * softintr()
141 * {
142 * go to IPL_HIGH if necessary for switch;
143 * save any necessary registers in a format that can be
144 * restored by cpu_switchto if the softint blocks;
145 * arrange for cpu_switchto() to restore into the
146 * trampoline function;
147 * identify LWP to handle this interrupt;
148 * switch to the LWP's stack;
149 * switch register stacks, if necessary;
150 * assign new value of curlwp;
151 * call MI softint_dispatch, passing old curlwp and IPL
152 * to execute interrupt at;
153 * switch back to old stack;
154 * switch back to old register stack, if necessary;
155 * restore curlwp;
156 * return to interrupted LWP;
157 * }
158 *
159 * If the soft interrupt blocks, a trampoline function is returned
160 * to in the context of the interrupted LWP, as arranged for by
161 * softint():
162 *
163 * softint_ret()
164 * {
165 * unlock soft interrupt LWP;
166 * resume interrupt processing, likely returning to
167 * interrupted LWP or dispatching another, different
168 * interrupt;
169 * }
170 *
171 * Once the soft interrupt has fired (and even if it has blocked),
172 * no further soft interrupts at that level will be triggered by
173 * MI code until the soft interrupt handler has ceased execution.
174 * If a soft interrupt handler blocks and is resumed, it resumes
175 * execution as a normal LWP (kthread) and gains VM context. Only
176 * when it has completed and is ready to fire again will it
177 * interrupt other threads.
178 *
179 * Future directions
180 *
181 * Provide a cheap way to direct software interrupts to remote
182 * CPUs. Provide a way to enqueue work items into the handler
183 * record, removing additional spl calls (see subr_workqueue.c).
184 */
185
186 #include <sys/cdefs.h>
187 __KERNEL_RCSID(0, "$NetBSD: kern_softint.c,v 1.3.6.2 2007/12/08 18:20:32 mjf Exp $");
188
189 #include <sys/param.h>
190 #include <sys/malloc.h>
191 #include <sys/proc.h>
192 #include <sys/intr.h>
193 #include <sys/mutex.h>
194 #include <sys/kthread.h>
195 #include <sys/evcnt.h>
196 #include <sys/cpu.h>
197
198 #include <net/netisr.h>
199
200 #include <uvm/uvm_extern.h>
201
202 /* This could overlap with signal info in struct lwp. */
203 typedef struct softint {
204 SIMPLEQ_HEAD(, softhand) si_q;
205 struct lwp *si_lwp;
206 struct cpu_info *si_cpu;
207 uintptr_t si_machdep;
208 struct evcnt si_evcnt;
209 struct evcnt si_evcnt_block;
210 int si_active;
211 char si_name[8];
212 char si_name_block[8+6];
213 } softint_t;
214
215 typedef struct softhand {
216 SIMPLEQ_ENTRY(softhand) sh_q;
217 void (*sh_func)(void *);
218 void *sh_arg;
219 softint_t *sh_isr;
220 u_int sh_pending;
221 u_int sh_flags;
222 } softhand_t;
223
224 typedef struct softcpu {
225 struct cpu_info *sc_cpu;
226 softint_t sc_int[SOFTINT_COUNT];
227 softhand_t sc_hand[1];
228 } softcpu_t;
229
230 static void softint_thread(void *);
231
232 u_int softint_bytes = 8192;
233 u_int softint_timing;
234 static u_int softint_max;
235 static kmutex_t softint_lock;
236 static void *softint_netisrs[32];
237
238 /*
239 * softint_init_isr:
240 *
241 * Initialize a single interrupt level for a single CPU.
242 */
243 static void
244 softint_init_isr(softcpu_t *sc, const char *desc, pri_t pri, u_int level)
245 {
246 struct cpu_info *ci;
247 softint_t *si;
248 int error;
249
250 si = &sc->sc_int[level];
251 ci = sc->sc_cpu;
252 si->si_cpu = ci;
253
254 SIMPLEQ_INIT(&si->si_q);
255
256 error = kthread_create(pri, KTHREAD_MPSAFE | KTHREAD_INTR |
257 KTHREAD_IDLE, ci, softint_thread, si, &si->si_lwp,
258 "soft%s/%d", desc, (int)ci->ci_cpuid);
259 if (error != 0)
260 panic("softint_init_isr: error %d", error);
261
262 snprintf(si->si_name, sizeof(si->si_name), "%s/%d", desc,
263 (int)ci->ci_cpuid);
264 evcnt_attach_dynamic(&si->si_evcnt, EVCNT_TYPE_INTR, NULL,
265 "softint", si->si_name);
266 snprintf(si->si_name_block, sizeof(si->si_name_block), "%s block/%d",
267 desc, (int)ci->ci_cpuid);
268 evcnt_attach_dynamic(&si->si_evcnt_block, EVCNT_TYPE_INTR, NULL,
269 "softint", si->si_name_block);
270
271 si->si_lwp->l_private = si;
272 softint_init_md(si->si_lwp, level, &si->si_machdep);
273 }
274 /*
275 * softint_init:
276 *
277 * Initialize per-CPU data structures. Called from mi_cpu_attach().
278 */
279 void
280 softint_init(struct cpu_info *ci)
281 {
282 static struct cpu_info *first;
283 softcpu_t *sc, *scfirst;
284 softhand_t *sh, *shmax;
285
286 if (first == NULL) {
287 /* Boot CPU. */
288 first = ci;
289 mutex_init(&softint_lock, MUTEX_DEFAULT, IPL_NONE);
290 softint_bytes = round_page(softint_bytes);
291 softint_max = (softint_bytes - sizeof(softcpu_t)) /
292 sizeof(softhand_t);
293 }
294
295 sc = (softcpu_t *)uvm_km_alloc(kernel_map, softint_bytes, 0,
296 UVM_KMF_WIRED | UVM_KMF_ZERO);
297 if (sc == NULL)
298 panic("softint_init_cpu: cannot allocate memory");
299
300 ci->ci_data.cpu_softcpu = sc;
301 ci->ci_data.cpu_softints = 0;
302 sc->sc_cpu = ci;
303
304 softint_init_isr(sc, "net", PRI_SOFTNET, SOFTINT_NET);
305 softint_init_isr(sc, "bio", PRI_SOFTBIO, SOFTINT_BIO);
306 softint_init_isr(sc, "clk", PRI_SOFTCLOCK, SOFTINT_CLOCK);
307 softint_init_isr(sc, "ser", PRI_SOFTSERIAL, SOFTINT_SERIAL);
308
309 if (first != ci) {
310 mutex_enter(&softint_lock);
311 scfirst = first->ci_data.cpu_softcpu;
312 sh = sc->sc_hand;
313 memcpy(sh, scfirst->sc_hand, sizeof(*sh) * softint_max);
314 /* Update pointers for this CPU. */
315 for (shmax = sh + softint_max; sh < shmax; sh++) {
316 if (sh->sh_func == NULL)
317 continue;
318 sh->sh_isr =
319 &sc->sc_int[sh->sh_flags & SOFTINT_LVLMASK];
320 }
321 mutex_exit(&softint_lock);
322 } else {
323 /*
324 * Establish handlers for legacy net interrupts.
325 * XXX Needs to go away.
326 */
327 #define DONETISR(n, f) \
328 softint_netisrs[(n)] = \
329 softint_establish(SOFTINT_NET, (void (*)(void *))(f), NULL)
330 #include <net/netisr_dispatch.h>
331 }
332 }
333
334 /*
335 * softint_establish:
336 *
337 * Register a software interrupt handler.
338 */
339 void *
340 softint_establish(u_int flags, void (*func)(void *), void *arg)
341 {
342 CPU_INFO_ITERATOR cii;
343 struct cpu_info *ci;
344 softcpu_t *sc;
345 softhand_t *sh;
346 u_int level, index;
347
348 level = (flags & SOFTINT_LVLMASK);
349 KASSERT(level < SOFTINT_COUNT);
350
351 mutex_enter(&softint_lock);
352
353 /* Find a free slot. */
354 sc = curcpu()->ci_data.cpu_softcpu;
355 for (index = 1; index < softint_max; index++)
356 if (sc->sc_hand[index].sh_func == NULL)
357 break;
358 if (index == softint_max) {
359 mutex_exit(&softint_lock);
360 printf("WARNING: softint_establish: table full, "
361 "increase softint_bytes\n");
362 return NULL;
363 }
364
365 /* Set up the handler on each CPU. */
366 for (CPU_INFO_FOREACH(cii, ci)) {
367 sc = ci->ci_data.cpu_softcpu;
368 sh = &sc->sc_hand[index];
369
370 sh->sh_isr = &sc->sc_int[level];
371 sh->sh_func = func;
372 sh->sh_arg = arg;
373 sh->sh_flags = flags;
374 sh->sh_pending = 0;
375 }
376
377 mutex_exit(&softint_lock);
378
379 return (void *)((uint8_t *)&sc->sc_hand[index] - (uint8_t *)sc);
380 }
381
382 /*
383 * softint_disestablish:
384 *
385 * Unregister a software interrupt handler.
386 */
387 void
388 softint_disestablish(void *arg)
389 {
390 CPU_INFO_ITERATOR cii;
391 struct cpu_info *ci;
392 softcpu_t *sc;
393 softhand_t *sh;
394 uintptr_t offset;
395
396 offset = (uintptr_t)arg;
397 KASSERT(offset != 0 && offset < softint_bytes);
398
399 mutex_enter(&softint_lock);
400
401 /* Clear the handler on each CPU. */
402 for (CPU_INFO_FOREACH(cii, ci)) {
403 sc = ci->ci_data.cpu_softcpu;
404 sh = (softhand_t *)((uint8_t *)sc + offset);
405 KASSERT(sh->sh_func != NULL);
406 KASSERT(sh->sh_pending == 0);
407 sh->sh_func = NULL;
408 }
409
410 mutex_exit(&softint_lock);
411 }
412
413 /*
414 * softint_schedule:
415 *
416 * Trigger a software interrupt. Must be called from a hardware
417 * interrupt handler, or with preemption disabled (since we are
418 * using the value of curcpu()).
419 */
420 void
421 softint_schedule(void *arg)
422 {
423 softhand_t *sh;
424 softint_t *si;
425 uintptr_t offset;
426 int s;
427
428 /* Find the handler record for this CPU. */
429 offset = (uintptr_t)arg;
430 KASSERT(offset != 0 && offset < softint_bytes);
431 sh = (softhand_t *)((uint8_t *)curcpu()->ci_data.cpu_softcpu + offset);
432
433 /* If it's already pending there's nothing to do. */
434 if (sh->sh_pending)
435 return;
436
437 /*
438 * Enqueue the handler into the LWP's pending list.
439 * If the LWP is completely idle, then make it run.
440 */
441 s = splhigh();
442 if (!sh->sh_pending) {
443 si = sh->sh_isr;
444 sh->sh_pending = 1;
445 SIMPLEQ_INSERT_TAIL(&si->si_q, sh, sh_q);
446 if (si->si_active == 0) {
447 si->si_active = 1;
448 softint_trigger(si->si_machdep);
449 }
450 }
451 splx(s);
452 }
453
454 /*
455 * softint_execute:
456 *
457 * Invoke handlers for the specified soft interrupt.
458 * Must be entered at splhigh. Will drop the priority
459 * to the level specified, but returns back at splhigh.
460 */
461 static inline void
462 softint_execute(softint_t *si, lwp_t *l, int s)
463 {
464 softhand_t *sh;
465 bool havelock;
466
467 #ifdef __HAVE_FAST_SOFTINTS
468 KASSERT(si->si_lwp == curlwp);
469 #else
470 /* May be running in user context. */
471 #endif
472 KASSERT(si->si_cpu == curcpu());
473 KASSERT(si->si_lwp->l_wchan == NULL);
474 KASSERT(si->si_active);
475
476 havelock = false;
477
478 /*
479 * Note: due to priority inheritance we may have interrupted a
480 * higher priority LWP. Since the soft interrupt must be quick
481 * and is non-preemptable, we don't bother yielding.
482 */
483
484 while (!SIMPLEQ_EMPTY(&si->si_q)) {
485 /*
486 * Pick the longest waiting handler to run. We block
487 * interrupts but do not lock in order to do this, as
488 * we are protecting against the local CPU only.
489 */
490 sh = SIMPLEQ_FIRST(&si->si_q);
491 SIMPLEQ_REMOVE_HEAD(&si->si_q, sh_q);
492 sh->sh_pending = 0;
493 splx(s);
494
495 /* Run the handler. */
496 if ((sh->sh_flags & SOFTINT_MPSAFE) == 0 && !havelock) {
497 KERNEL_LOCK(1, l);
498 havelock = true;
499 }
500 (*sh->sh_func)(sh->sh_arg);
501
502 (void)splhigh();
503 }
504
505 if (havelock) {
506 KERNEL_UNLOCK_ONE(l);
507 }
508
509 /*
510 * Unlocked, but only for statistics.
511 * Should be per-CPU to prevent cache ping-pong.
512 */
513 uvmexp.softs++;
514
515 si->si_evcnt.ev_count++;
516 si->si_active = 0;
517 }
518
519 /*
520 * softint_block:
521 *
522 * Update statistics when the soft interrupt blocks.
523 */
524 void
525 softint_block(lwp_t *l)
526 {
527 softint_t *si = l->l_private;
528
529 KASSERT((l->l_pflag & LP_INTR) != 0);
530 si->si_evcnt_block.ev_count++;
531 }
532
533 /*
534 * schednetisr:
535 *
536 * Trigger a legacy network interrupt. XXX Needs to go away.
537 */
538 void
539 schednetisr(int isr)
540 {
541
542 softint_schedule(softint_netisrs[isr]);
543 }
544
545 #ifndef __HAVE_FAST_SOFTINTS
546
547 /*
548 * softint_init_md:
549 *
550 * Slow path: perform machine-dependent initialization.
551 */
552 void
553 softint_init_md(lwp_t *l, u_int level, uintptr_t *machdep)
554 {
555 softint_t *si;
556
557 *machdep = (1 << level);
558 si = l->l_private;
559
560 lwp_lock(l);
561 lwp_unlock_to(l, l->l_cpu->ci_schedstate.spc_mutex);
562 lwp_lock(l);
563 /* Cheat and make the KASSERT in softint_thread() happy. */
564 si->si_active = 1;
565 l->l_stat = LSRUN;
566 sched_enqueue(l, false);
567 lwp_unlock(l);
568 }
569
570 /*
571 * softint_trigger:
572 *
573 * Slow path: cause a soft interrupt handler to begin executing.
574 * Called at IPL_HIGH.
575 */
576 void
577 softint_trigger(uintptr_t machdep)
578 {
579 struct cpu_info *ci;
580 lwp_t *l;
581
582 l = curlwp;
583 ci = l->l_cpu;
584 ci->ci_data.cpu_softints |= machdep;
585 if (l == ci->ci_data.cpu_idlelwp) {
586 cpu_need_resched(ci, 0);
587 } else {
588 /* MI equivalent of aston() */
589 cpu_signotify(l);
590 }
591 }
592
593 /*
594 * softint_thread:
595 *
596 * Slow path: MI software interrupt dispatch.
597 */
598 void
599 softint_thread(void *cookie)
600 {
601 softint_t *si;
602 lwp_t *l;
603 int s;
604
605 l = curlwp;
606 si = l->l_private;
607
608 for (;;) {
609 /*
610 * Clear pending status and run it. We must drop the
611 * spl before mi_switch(), since IPL_HIGH may be higher
612 * than IPL_SCHED (and it is not safe to switch at a
613 * higher level).
614 */
615 s = splhigh();
616 l->l_cpu->ci_data.cpu_softints &= ~si->si_machdep;
617 softint_execute(si, l, s);
618 splx(s);
619
620 lwp_lock(l);
621 l->l_stat = LSIDL;
622 mi_switch(l);
623 }
624 }
625
626 /*
627 * softint_picklwp:
628 *
629 * Slow path: called from mi_switch() to pick the highest priority
630 * soft interrupt LWP that needs to run.
631 */
632 lwp_t *
633 softint_picklwp(void)
634 {
635 struct cpu_info *ci;
636 u_int mask;
637 softint_t *si;
638 lwp_t *l;
639
640 ci = curcpu();
641 si = ((softcpu_t *)ci->ci_data.cpu_softcpu)->sc_int;
642 mask = ci->ci_data.cpu_softints;
643
644 if ((mask & (1 << SOFTINT_SERIAL)) != 0) {
645 l = si[SOFTINT_SERIAL].si_lwp;
646 } else if ((mask & (1 << SOFTINT_NET)) != 0) {
647 l = si[SOFTINT_NET].si_lwp;
648 } else if ((mask & (1 << SOFTINT_BIO)) != 0) {
649 l = si[SOFTINT_BIO].si_lwp;
650 } else if ((mask & (1 << SOFTINT_CLOCK)) != 0) {
651 l = si[SOFTINT_CLOCK].si_lwp;
652 } else {
653 panic("softint_picklwp");
654 }
655
656 return l;
657 }
658
659 /*
660 * softint_overlay:
661 *
662 * Slow path: called from lwp_userret() to run a soft interrupt
663 * within the context of a user thread.
664 */
665 void
666 softint_overlay(void)
667 {
668 struct cpu_info *ci;
669 u_int softints;
670 softint_t *si;
671 pri_t obase;
672 lwp_t *l;
673 int s;
674
675 l = curlwp;
676 ci = l->l_cpu;
677 si = ((softcpu_t *)ci->ci_data.cpu_softcpu)->sc_int;
678
679 KASSERT((l->l_pflag & LP_INTR) == 0);
680
681 /* Arrange to elevate priority if the LWP blocks. */
682 obase = l->l_kpribase;
683 l->l_kpribase = PRI_KERNEL_RT;
684 l->l_pflag |= LP_INTR;
685 s = splhigh();
686 while ((softints = ci->ci_data.cpu_softints) != 0) {
687 if ((softints & (1 << SOFTINT_SERIAL)) != 0) {
688 ci->ci_data.cpu_softints &= ~(1 << SOFTINT_SERIAL);
689 softint_execute(&si[SOFTINT_SERIAL], l, s);
690 continue;
691 }
692 if ((softints & (1 << SOFTINT_NET)) != 0) {
693 ci->ci_data.cpu_softints &= ~(1 << SOFTINT_NET);
694 softint_execute(&si[SOFTINT_NET], l, s);
695 continue;
696 }
697 if ((softints & (1 << SOFTINT_BIO)) != 0) {
698 ci->ci_data.cpu_softints &= ~(1 << SOFTINT_BIO);
699 softint_execute(&si[SOFTINT_BIO], l, s);
700 continue;
701 }
702 if ((softints & (1 << SOFTINT_CLOCK)) != 0) {
703 ci->ci_data.cpu_softints &= ~(1 << SOFTINT_CLOCK);
704 softint_execute(&si[SOFTINT_CLOCK], l, s);
705 continue;
706 }
707 }
708 splx(s);
709 l->l_pflag &= ~LP_INTR;
710 l->l_kpribase = obase;
711 }
712
713 #else /* !__HAVE_FAST_SOFTINTS */
714
715 /*
716 * softint_thread:
717 *
718 * Fast path: the LWP is switched to without restoring any state,
719 * so we should not arrive here - there is a direct handoff between
720 * the interrupt stub and softint_dispatch().
721 */
722 void
723 softint_thread(void *cookie)
724 {
725
726 panic("softint_thread");
727 }
728
729 /*
730 * softint_dispatch:
731 *
732 * Fast path: entry point from machine-dependent code.
733 */
734 void
735 softint_dispatch(lwp_t *pinned, int s)
736 {
737 struct timeval now;
738 softint_t *si;
739 u_int timing;
740 lwp_t *l;
741
742 l = curlwp;
743 si = l->l_private;
744
745 /*
746 * Note the interrupted LWP, and mark the current LWP as running
747 * before proceeding. Although this must as a rule be done with
748 * the LWP locked, at this point no external agents will want to
749 * modify the interrupt LWP's state.
750 */
751 timing = (softint_timing ? LW_TIMEINTR : 0);
752 l->l_switchto = pinned;
753 l->l_stat = LSONPROC;
754 l->l_flag |= (LW_RUNNING | timing);
755
756 /*
757 * Dispatch the interrupt. If softints are being timed, charge
758 * for it.
759 */
760 if (timing)
761 microtime(&l->l_stime);
762 softint_execute(si, l, s);
763 if (timing) {
764 microtime(&now);
765 updatertime(l, &now);
766 l->l_flag &= ~LW_TIMEINTR;
767 }
768
769 /*
770 * If we blocked while handling the interrupt, the pinned LWP is
771 * gone so switch to the idle LWP. It will select a new LWP to
772 * run.
773 *
774 * We must drop the priority level as switching at IPL_HIGH could
775 * deadlock the system. We have already set si->si_active = 0,
776 * which means another interrupt at this level can be triggered.
777 * That's not be a problem: we are lowering to level 's' which will
778 * prevent softint_dispatch() from being reentered at level 's',
779 * until the priority is finally dropped to IPL_NONE on entry to
780 * the idle loop.
781 */
782 l->l_stat = LSIDL;
783 if (l->l_switchto == NULL) {
784 splx(s);
785 pmap_deactivate(l);
786 lwp_exit_switchaway(l);
787 /* NOTREACHED */
788 }
789 l->l_switchto = NULL;
790 l->l_flag &= ~LW_RUNNING;
791 }
792
793 #endif /* !__HAVE_FAST_SOFTINTS */
794