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/x86/iommu/intel_fault.c | |
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/x86/iommu/intel_fault.c')
-rw-r--r-- | sys/x86/iommu/intel_fault.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/x86/iommu/intel_fault.c b/sys/x86/iommu/intel_fault.c index 5ccf88e..bf79508 100644 --- a/sys/x86/iommu/intel_fault.c +++ b/sys/x86/iommu/intel_fault.c @@ -179,7 +179,7 @@ done: } if (enqueue) { - taskqueue_enqueue_fast(unit->fault_taskqueue, + taskqueue_enqueue(unit->fault_taskqueue, &unit->fault_task); } return (FILTER_HANDLED); |