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/netpfil | |
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/netpfil')
-rw-r--r-- | sys/netpfil/ipfw/ip_dummynet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netpfil/ipfw/ip_dummynet.c b/sys/netpfil/ipfw/ip_dummynet.c index 425afca..120f30f 100644 --- a/sys/netpfil/ipfw/ip_dummynet.c +++ b/sys/netpfil/ipfw/ip_dummynet.c @@ -84,7 +84,7 @@ dummynet(void *arg) { (void)arg; /* UNUSED */ - taskqueue_enqueue_fast(dn_tq, &dn_task); + taskqueue_enqueue(dn_tq, &dn_task); } void |