aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/random
Commit message (Expand)AuthorAgeFilesLines
* 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
* Remove unneeded includes.Mark Murray2000-09-214-9/+0
* Include <sys/proc.h> to silence suser() compiler warning.Robert Watson2000-09-181-0/+1
* Remove the mtx_t, witness_t, and witness_blessed_t types. Instead, justJohn Baldwin2000-09-141-2/+2
* The "struct proc" argument to read_random was ill-conceived, and aMark Murray2000-09-122-2/+2
* Move the prototypes for random_set_wakeup* from yarrow.c to yarrow.h so thatJohn Baldwin2000-09-112-2/+2
* - Use RFHIGHPID when creating the kthread to get a more sensible pid.John Baldwin2000-09-111-2/+3
* Large upgrade to the entropy device; mainly inspired by feedbackMark Murray2000-09-106-177/+490
* o Fix a horrible bug where small reads (< 8 bytes) would return theMark Murray2000-07-254-21/+48
* Clean this up with some BDE-inspired fixes.Mark Murray2000-07-233-35/+45
* Add randomness write functionality. This does absolutely nothing forMark Murray2000-07-172-1/+20
* Storing to a pointer is (effectively) atomic; no need to protect thisMark Murray2000-07-112-10/+2
* I think I need to move the newly static variables to the random_stateMark Murray2000-07-111-6/+5
* One should never allocate 4-kilobyte structs and such on the interruptBrian Feldman2000-07-111-2/+6
* Provide more splsofttq() protection for the reseed task (running out ofMark Murray2000-07-101-1/+14
* Make sure that tasks (running out of taskqueue_swi at splsofttq)Mark Murray2000-07-091-0/+5
* Yarrow tweaks; separate the fast and slow reseed tasks so that they don'tMark Murray2000-07-092-11/+14
* Fix bug with a vraiable that needs to be per-process, not static;Mark Murray2000-07-091-8/+12
* Add entropy gathering code. This will work whether the module isMark Murray2000-07-074-121/+365
* Staticize a variable.Mark Murray2000-06-281-1/+1
* I am guilty of an act of ommission. There is no longer a /dev/urandomMark Murray2000-06-271-1/+6
* style(9) fixes from BDE.Mark Murray2000-06-262-2/+2
* Fix include for non-module case.Mark Murray2000-06-251-1/+1
* Fix include for the non-module case.Mark Murray2000-06-251-1/+1
* New machine-independant /dev/random driver.Mark Murray2000-06-253-0/+400