aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/oce
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2016-03-01 17:47:32 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2016-03-01 17:47:32 +0000
commitcbc4d2db750b685904e055b79add5d516bd07e61 (patch)
treebc4ba59ad502bd4930be6d5bc1668a5a2c0da3f5 /sys/dev/oce
parentac8f9de31a0e054f604f46b1692ba4e9c10bdda5 (diff)
downloadsrc-cbc4d2db750b685904e055b79add5d516bd07e61.tar.gz
src-cbc4d2db750b685904e055b79add5d516bd07e61.zip
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
Notes
Notes: svn path=/head/; revision=296272
Diffstat (limited to 'sys/dev/oce')
-rw-r--r--sys/dev/oce/oce_if.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/oce/oce_if.c b/sys/dev/oce/oce_if.c
index 826cd3c558cb..f0cce5f6e0d1 100644
--- a/sys/dev/oce/oce_if.c
+++ b/sys/dev/oce/oce_if.c
@@ -707,7 +707,7 @@ oce_fast_isr(void *arg)
oce_arm_eq(sc, ii->eq->eq_id, 0, FALSE, TRUE);
- taskqueue_enqueue_fast(ii->tq, &ii->task);
+ taskqueue_enqueue(ii->tq, &ii->task);
ii->eq->intr++;
@@ -1065,7 +1065,7 @@ oce_tx_restart(POCE_SOFTC sc, struct oce_wq *wq)
#else
if (!IFQ_DRV_IS_EMPTY(&sc->ifp->if_snd))
#endif
- taskqueue_enqueue_fast(taskqueue_swi, &wq->txtask);
+ taskqueue_enqueue(taskqueue_swi, &wq->txtask);
}