diff options
author | Krishna Yenduri <Bhargava.Yenduri@Sun.COM> | 2009-05-12 17:23:17 -0700 |
---|---|---|
committer | Krishna Yenduri <Bhargava.Yenduri@Sun.COM> | 2009-05-12 17:23:17 -0700 |
commit | 8b5027151a1eff62589da6fb824f594e9fe19384 (patch) | |
tree | fd7bf2f63dd15d7db3880bce18b72943b920bc4c /usr/src/uts/common/io/random.c | |
parent | 3631b19b16019b57543a1d0e9a9c980784bdc1f7 (diff) | |
download | illumos-joyent-8b5027151a1eff62589da6fb824f594e9fe19384.tar.gz |
6836582 kcf_limit_hwrng tunable can be removed
Diffstat (limited to 'usr/src/uts/common/io/random.c')
-rw-r--r-- | usr/src/uts/common/io/random.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/uts/common/io/random.c b/usr/src/uts/common/io/random.c index cdba913dbd..c4984e956f 100644 --- a/usr/src/uts/common/io/random.c +++ b/usr/src/uts/common/io/random.c @@ -239,7 +239,7 @@ rnd_read(dev_t dev, struct uio *uiop, cred_t *credp) switch (devno) { case DEVRANDOM: error = kcf_rnd_get_bytes(random_bytes, len, - uiop->uio_fmode & (FNDELAY|FNONBLOCK), B_TRUE); + uiop->uio_fmode & (FNDELAY|FNONBLOCK)); break; case DEVURANDOM: error = kcf_rnd_get_pseudo_bytes(random_bytes, len); |