summaryrefslogtreecommitdiffstats
path: root/sys/dev/ubsec/ubsec.c
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/ubsec/ubsec.c
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/ubsec/ubsec.c')
-rw-r--r--sys/dev/ubsec/ubsec.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/ubsec/ubsec.c b/sys/dev/ubsec/ubsec.c
index c9382ba..eb594c9 100644
--- a/sys/dev/ubsec/ubsec.c
+++ b/sys/dev/ubsec/ubsec.c
@@ -462,8 +462,7 @@ ubsec_attach(device_t dev)
sc->sc_rnghz = hz / 100;
else
sc->sc_rnghz = 1;
- /* NB: 1 means the callout runs w/o Giant locked */
- callout_init(&sc->sc_rngto, 1);
+ callout_init(&sc->sc_rngto, CALLOUT_MPSAFE);
callout_reset(&sc->sc_rngto, sc->sc_rnghz, ubsec_rng, sc);
skip_rng:
;
OpenPOWER on IntegriCloud