summaryrefslogtreecommitdiffstats
path: root/sys/dev/xen/netfront/netfront.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2016-03-01 17:47:32 +0000
committerjhb <jhb@FreeBSD.org>2016-03-01 17:47:32 +0000
commit15b2caff0f7170f0c4bb31748f12833744f7985c (patch)
treebc4ba59ad502bd4930be6d5bc1668a5a2c0da3f5 /sys/dev/xen/netfront/netfront.c
parentad8802bdfd6ffa6c24a142eb71483277e77f059d (diff)
downloadFreeBSD-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/xen/netfront/netfront.c')
-rw-r--r--sys/dev/xen/netfront/netfront.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/xen/netfront/netfront.c b/sys/dev/xen/netfront/netfront.c
index 41c70f1..22ca81c 100644
--- a/sys/dev/xen/netfront/netfront.c
+++ b/sys/dev/xen/netfront/netfront.c
@@ -1400,7 +1400,7 @@ xn_rxq_intr(void *xrxq)
{
struct netfront_rxq *rxq = xrxq;
- taskqueue_enqueue_fast(rxq->tq, &rxq->intrtask);
+ taskqueue_enqueue(rxq->tq, &rxq->intrtask);
}
static void
@@ -1408,7 +1408,7 @@ xn_txq_intr(void *xtxq)
{
struct netfront_txq *txq = xtxq;
- taskqueue_enqueue_fast(txq->tq, &txq->intrtask);
+ taskqueue_enqueue(txq->tq, &txq->intrtask);
}
static int
OpenPOWER on IntegriCloud