|
Lines 434-440
Link Here
|
| 434 |
* that this means that any fast interrupt handler must be MP safe. |
434 |
* that this means that any fast interrupt handler must be MP safe. |
| 435 |
*/ |
435 |
*/ |
| 436 |
ih = TAILQ_FIRST(&ithd->it_handlers); |
436 |
ih = TAILQ_FIRST(&ithd->it_handlers); |
| 437 |
if ((ih->ih_flags & INTR_FAST) != 0) { |
437 |
if ((ih->ih_flags & IH_FAST) != 0) { |
| 438 |
ih->ih_handler(ih->ih_argument); |
438 |
ih->ih_handler(ih->ih_argument); |
| 439 |
return; |
439 |
return; |
| 440 |
} |
440 |
} |