aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/random
Commit message (Expand)AuthorAgeFilesLines
* Use __FBSDID().David E. O'Brien2003-08-244-4/+12
* Change the sleep identifier to "-" where random normally sleeps.Poul-Henning Kamp2003-07-021-1/+1
* Gigacommit to improve device-driver source compatibility betweenPoul-Henning Kamp2003-03-031-14/+8
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-2/+2
* Remove srandom():Andrey A. Chernov2003-02-051-6/+1
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-2/+2
* Fix a buffer overrun in /dev/random which, due to the nature of theMark Murray2002-12-121-3/+4
* Some kernel threads try to do significant work, and the default KSTACK_PAGESScott Long2002-10-021-1/+1
* Remove #ifdef'ed Giant mutex wrappers round debugging statements.Mark Murray2002-09-212-10/+0
* No functional change. Fix comments and whitespace.Mark Murray2002-09-211-4/+3
* Upgrade the random device to use a "real" hash instead of buildingMark Murray2002-07-153-54/+11
* Fix really dumb braino of mine; cast a sizeof() to an int, which it isMark Murray2002-04-211-1/+1
* Change callers of mtx_init() to pass in an appropriate lock type name. InJohn Baldwin2002-04-041-1/+1
* Change the suser() API to take advantage of td_ucred as well as do aJohn Baldwin2002-04-011-2/+2
* Provide infrastructure for harvesting SWI entropy.Mark Murray2002-03-031-0/+3
* Massive lint-inspired cleanup.Mark Murray2002-03-036-70/+84
* Simple p_ucred -> td_ucred changes to start using the per-thread ucredJohn Baldwin2002-02-271-2/+2
* Staticise the random_state array.Mike Smith2002-01-102-5/+3
* o Modify open() and close() for /dev/random to use securelevel_gt() insteadRobert Watson2001-09-261-6/+16
* Use the passed in thread to selrecord() instead of curthread.John Baldwin2001-09-211-1/+1
* KSE Milestone 2Julian Elischer2001-09-121-7/+8
* Fix a minor buglet/typo here that gcc3 complains about.Peter Wemm2001-09-101-1/+1
* Fix type warnings.Mark Murray2001-07-201-4/+8
* Undo part of the tangle of having sys/lock.h and sys/mutex.h included inMark Murray2001-05-011-6/+8
* Catch up to header include changes:John Baldwin2001-03-282-0/+2
* Fix nasty corruption problem where a 64bit variable was being usedMark Murray2001-03-281-8/+6
* Send the remains (such as I have located) of "block major numbers" toPoul-Henning Kamp2001-03-261-1/+0
* Allow bog-standard ioctls through. There are really handled inMark Murray2001-03-251-1/+9
* Silence (harmless) warnings.Mark Murray2001-03-241-0/+1
* Very large makeover of the /dev/random driver.Mark Murray2001-03-107-459/+505
* Take down a comment that is no longer true.Mark Murray2001-03-031-4/+0
* Provide the infrastructure for sysadmins to select the broad classMark Murray2001-02-182-1/+16
* Make a big improvement to entropy-harvesting speed by not having anyMark Murray2001-02-112-66/+41
* Change and clean the mutex lock interface.Bosko Milekic2001-02-092-37/+37
* Fix typos: initalise -> initialise.Jeroen Ruigrok van der Werven2001-02-081-5/+5
* Remove NOBLOCKRANDOM as a compile-time option. Instead, provideMark Murray2001-01-143-20/+58
* select() DKI is now in <sys/selinfo.h>.Garrett Wollman2001-01-093-3/+3
* Major speedup to /dev/random and the kernel thread that reseeds it.Mark Murray2000-12-022-93/+103
* Fix safety-net code. While technically a bug, I'm delighted to seeMark Murray2000-11-261-1/+1
* D'uh. The explicit reseed was happening at the wrong security/priveligeMark Murray2000-11-251-1/+1
* Greatly improve the boot-up unblocking time of the entropy device.Mark Murray2000-11-253-4/+19
* More comment changing. Keep documentation in one place.Mark Murray2000-11-251-4/+2
* Correct a comment. This represents a very minor policy change of myMark Murray2000-11-251-2/+0
* Stop explicitly using nanotime(9) and use the new get_cyclecounter(9)Mark Murray2000-11-254-37/+34
* Move suser() and suser_xxx() prototypes and a related #define fromPoul-Henning Kamp2000-10-291-1/+0
* Remove unneeded #include <sys/proc.h> lines.Poul-Henning Kamp2000-10-291-1/+0
* As the blocking model has seems to be troublesome for many, disableMark Murray2000-10-271-0/+5
* Catch up to moving headers:John Baldwin2000-10-202-2/+2
* Attempt to fix the random read blocking. The old code slept atPeter Wemm2000-10-181-14/+13
* After some complaints about the dir names, the random device isMark Murray2000-10-145-61/+139