diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2016-03-01 17:47:32 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2016-03-01 17:47:32 +0000 |
| commit | cbc4d2db750b685904e055b79add5d516bd07e61 (patch) | |
| tree | bc4ba59ad502bd4930be6d5bc1668a5a2c0da3f5 /sys/dev/nfe | |
| parent | ac8f9de31a0e054f604f46b1692ba4e9c10bdda5 (diff) | |
Notes
Diffstat (limited to 'sys/dev/nfe')
| -rw-r--r-- | sys/dev/nfe/if_nfe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/nfe/if_nfe.c b/sys/dev/nfe/if_nfe.c index e9952a0af2d9..0a370797741d 100644 --- a/sys/dev/nfe/if_nfe.c +++ b/sys/dev/nfe/if_nfe.c @@ -1873,7 +1873,7 @@ nfe_intr(void *arg) if (status == 0 || status == 0xffffffff) return (FILTER_STRAY); nfe_disable_intr(sc); - taskqueue_enqueue_fast(sc->nfe_tq, &sc->nfe_int_task); + taskqueue_enqueue(sc->nfe_tq, &sc->nfe_int_task); return (FILTER_HANDLED); } @@ -1932,7 +1932,7 @@ nfe_int_task(void *arg, int pending) NFE_UNLOCK(sc); if (domore || (NFE_READ(sc, sc->nfe_irq_status) != 0)) { - taskqueue_enqueue_fast(sc->nfe_tq, &sc->nfe_int_task); + taskqueue_enqueue(sc->nfe_tq, &sc->nfe_int_task); return; } |
