summaryrefslogtreecommitdiffstats
path: root/sys/dev/ahb
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>2001-03-01 17:09:09 +0000
committermarkm <markm@FreeBSD.org>2001-03-01 17:09:09 +0000
commit36b9aabb472f862e3e5719891d140e7c7ce6c69f (patch)
tree3cdbc14d8bfea52310bf35ca4377f9292f0d8657 /sys/dev/ahb
parent10e65c206e151ea487810e10f4c04c8d94dc79d0 (diff)
downloadFreeBSD-src-36b9aabb472f862e3e5719891d140e7c7ce6c69f.zip
FreeBSD-src-36b9aabb472f862e3e5719891d140e7c7ce6c69f.tar.gz
Turn on interrupt-entropy harvesting for all/any mass storage devices
I could find. I have no doubt missed a couple. Interrupt entropy harvesting is still conditional on the kern.random.sys.harvest_interrupt sysctl.
Diffstat (limited to 'sys/dev/ahb')
-rw-r--r--sys/dev/ahb/ahb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ahb/ahb.c b/sys/dev/ahb/ahb.c
index bbd6fd0..dcb7f90 100644
--- a/sys/dev/ahb/ahb.c
+++ b/sys/dev/ahb/ahb.c
@@ -367,7 +367,7 @@ ahbattach(device_t dev)
goto error_exit;
/* Enable our interrupt */
- bus_setup_intr(dev, irq, INTR_TYPE_CAM, ahbintr, ahb, &ih);
+ bus_setup_intr(dev, irq, INTR_TYPE_CAM|INTR_ENTROPY, ahbintr, ahb, &ih);
return (0);
error_exit:
OpenPOWER on IntegriCloud