aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/vr
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/vr
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/vr')
-rw-r--r--sys/dev/vr/if_vr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/vr/if_vr.c b/sys/dev/vr/if_vr.c
index fdf82a588f17..5ffee24c1588 100644
--- a/sys/dev/vr/if_vr.c
+++ b/sys/dev/vr/if_vr.c
@@ -1671,7 +1671,7 @@ vr_intr(void *arg)
/* Disable interrupts. */
CSR_WRITE_2(sc, VR_IMR, 0x0000);
- taskqueue_enqueue_fast(taskqueue_fast, &sc->vr_inttask);
+ taskqueue_enqueue(taskqueue_fast, &sc->vr_inttask);
return (FILTER_HANDLED);
}