diff options
author | markm <markm@FreeBSD.org> | 2001-03-01 17:09:09 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2001-03-01 17:09:09 +0000 |
commit | 36b9aabb472f862e3e5719891d140e7c7ce6c69f (patch) | |
tree | 3cdbc14d8bfea52310bf35ca4377f9292f0d8657 /sys/dev/wds | |
parent | 10e65c206e151ea487810e10f4c04c8d94dc79d0 (diff) | |
download | FreeBSD-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/wds')
-rw-r--r-- | sys/dev/wds/wd7000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/wds/wd7000.c b/sys/dev/wds/wd7000.c index 537642e..0040ef6 100644 --- a/sys/dev/wds/wd7000.c +++ b/sys/dev/wds/wd7000.c @@ -539,7 +539,7 @@ wds_attach(device_t dev) /*count*/ 0, RF_ACTIVE); if (wp->intr_r == NULL) goto bad; - error = bus_setup_intr(dev, wp->intr_r, INTR_TYPE_CAM, + error = bus_setup_intr(dev, wp->intr_r, INTR_TYPE_CAM | INTR_ENTROPY, (driver_intr_t *)wds_intr, (void *)wp, &wp->intr_cookie); if (error) |