summaryrefslogtreecommitdiffstats
path: root/sys/dev/rndtest
diff options
context:
space:
mode:
authorsam <sam@FreeBSD.org>2003-08-19 17:51:11 +0000
committersam <sam@FreeBSD.org>2003-08-19 17:51:11 +0000
commit59ff2ad5c76dd93b883ff0f8a7fdd96a30e6a19a (patch)
treeab83000d32d028d24443ab237035b625ff7b65dd /sys/dev/rndtest
parentfbca8f8acd8e3d733f33a81456516634845ffe76 (diff)
downloadFreeBSD-src-59ff2ad5c76dd93b883ff0f8a7fdd96a30e6a19a.zip
FreeBSD-src-59ff2ad5c76dd93b883ff0f8a7fdd96a30e6a19a.tar.gz
Change instances of callout_init that specify MPSAFE behaviour to
use CALLOUT_MPSAFE instead of "1" for the second parameter. This does not change the behaviour; it just makes the intent more clear.
Diffstat (limited to 'sys/dev/rndtest')
-rw-r--r--sys/dev/rndtest/rndtest.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/rndtest/rndtest.c b/sys/dev/rndtest/rndtest.c
index 15bbc09..5232095 100644
--- a/sys/dev/rndtest/rndtest.c
+++ b/sys/dev/rndtest/rndtest.c
@@ -96,8 +96,7 @@ rndtest_attach(device_t dev)
#if __FreeBSD_version < 500000
callout_init(&rsp->rs_to);
#else
- /* NB: 1 means the callout runs w/o Giant locked */
- callout_init(&rsp->rs_to, 1);
+ callout_init(&rsp->rs_to, CALLOUT_MPSAFE);
#endif
} else
device_printf(dev, "rndtest_init: no memory for state block\n");
OpenPOWER on IntegriCloud