diff options
author | jhb <jhb@FreeBSD.org> | 2016-03-01 17:47:32 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2016-03-01 17:47:32 +0000 |
commit | 15b2caff0f7170f0c4bb31748f12833744f7985c (patch) | |
tree | bc4ba59ad502bd4930be6d5bc1668a5a2c0da3f5 /sys/dev/re | |
parent | ad8802bdfd6ffa6c24a142eb71483277e77f059d (diff) | |
download | FreeBSD-src-15b2caff0f7170f0c4bb31748f12833744f7985c.zip FreeBSD-src-15b2caff0f7170f0c4bb31748f12833744f7985c.tar.gz |
Remove taskqueue_enqueue_fast().
taskqueue_enqueue() was changed to support both fast and non-fast
taskqueues 10 years ago in r154167. It has been a compat shim ever
since. It's time for the compat shim to go.
Submitted by: Howard Su <howard0su@gmail.com>
Reviewed by: sephe
Differential Revision: https://reviews.freebsd.org/D5131
Diffstat (limited to 'sys/dev/re')
-rw-r--r-- | sys/dev/re/if_re.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/re/if_re.c b/sys/dev/re/if_re.c index 246b3d4..90bdffd 100644 --- a/sys/dev/re/if_re.c +++ b/sys/dev/re/if_re.c @@ -2553,7 +2553,7 @@ re_intr(void *arg) return (FILTER_STRAY); CSR_WRITE_2(sc, RL_IMR, 0); - taskqueue_enqueue_fast(taskqueue_fast, &sc->rl_inttask); + taskqueue_enqueue(taskqueue_fast, &sc->rl_inttask); return (FILTER_HANDLED); } @@ -2621,7 +2621,7 @@ re_int_task(void *arg, int npending) RL_UNLOCK(sc); if ((CSR_READ_2(sc, RL_ISR) & RL_INTRS_CPLUS) || rval) { - taskqueue_enqueue_fast(taskqueue_fast, &sc->rl_inttask); + taskqueue_enqueue(taskqueue_fast, &sc->rl_inttask); return; } |