summaryrefslogtreecommitdiff
path: root/sys/dev/random
Commit message (Expand)AuthorAgeFilesLines
* MFC r267984:Xin LI2014-07-111-1/+1
* MFC r256670:Konstantin Belousov2013-11-011-31/+24
* MFC:Mark Murray2013-10-134-7/+19
* Merge from project branch via main. Uninteresting commits are trimmed.Mark Murray2013-10-1219-500/+865
* Now our binutils's assembler supports the Intel Random Number GeneratorDimitry Andric2013-10-081-2/+2
* Fix verbose output line; needs <NL>Mark Murray2013-09-081-1/+1
* Fix the build; Certain linkable symbols need to always be present.Mark Murray2013-09-076-19/+13
* Remove short-lived idea; thread to harvest (eg) RDRAND enropy into the usual ...Mark Murray2013-08-302-73/+0
* Separate out the Software RNG entropy harvesting queue and thread into its ow...Mark Murray2013-08-303-197/+296
* Remove the short-lived namei experiment.Mark Murray2013-08-261-5/+0
* Snapshot of current work;Mark Murray2013-08-267-193/+253
* 1) example (partially humorous random_adaptor, that I call "EXAMPLE")Mark Murray2013-08-246-72/+351
* * Add random_adaptors.[ch] which is basically a store of random_adaptor's.David E. O'Brien2013-08-0910-105/+390
* Back out r253779 & r253786.David E. O'Brien2013-07-3110-397/+105
* Decouple yarrow from random(4) device.David E. O'Brien2013-07-292-0/+207
* Decouple yarrow from random(4) device.David E. O'Brien2013-07-298-105/+190
* Refactor random_systat to be a *random_systat. This avoids unnecessaryDavid E. O'Brien2013-07-094-27/+27
* Attempt to mitigate poor initialization of arc4 by one-shotAndrey A. Chernov2013-04-191-0/+2
* MFcalloutng (r236314 by mav):Davide Italiano2013-03-041-3/+4
* Correct a typo introduced in r153575, which gives inverted logic whenXin LI2013-02-261-1/+1
* Rename the IVY_RNG option to RDRAND_RNG.Konstantin Belousov2012-09-132-3/+3
* Add support for new Intel on-CPU Bull Mountain random numberKonstantin Belousov2012-09-054-32/+156
* Add support for the extended FPU states on amd64, both for nativeKonstantin Belousov2012-01-211-3/+6
* Generate a warning if the kernel's arc4random() is seeded with bogus entropy.David Schultz2012-01-161-0/+8
* Enable hardware RNG for VIA Nano processors.Jung-uk Kim2012-01-091-2/+2
* Fix typos - remove duplicate "the".Rebecca Cran2011-02-211-1/+1
* Finish r210923, 210926. Mark some devices as eternal.Konstantin Belousov2011-01-041-2/+2
* Use the fpu_kern_enter() interface to properly separate usermode FPUKonstantin Belousov2010-06-051-1/+11
* There is rubbish hereMark Murray2009-05-252-11/+8
* Make sure arc4random(9) is properly seeded when /etc/rc.d/initrandom returns.Colin Percival2008-11-242-3/+24
* Correct a random value disclosure in random(4).Simon L. B. Nielsen2007-11-291-0/+1
* Rename the kthread_xxx (e.g. kthread_create()) callsJulian Elischer2007-10-202-3/+3
* Don't save SYSCTL_ADD_*() results in a local variable just to throw themRobert Watson2007-05-281-15/+9
* Rather than repeatedly setting and discarding local variable 'o' basedRobert Watson2007-05-271-9/+7
* Use pause() rather than tsleep() on stack variables and function pointers.John Baldwin2007-02-271-1/+1
* Sweep kernel replacing suser(9) calls with priv(9) calls, assigningRobert Watson2006-11-061-1/+2
* Now even more style(9)ish.Michael Reifenberger2006-07-131-1/+1
* Use the already stored VIA RNG probe informationMichael Reifenberger2006-07-131-1/+1
* Use the already stored VIA RNG probe informationMichael Reifenberger2006-07-121-13/+4
* Change msleep() and tsleep() to not alter the calling thread's priorityJohn Baldwin2006-04-171-4/+2
* Remove GIANT from device random.Paul Saab2005-12-206-16/+69
* malloc.h relies on param.h for a definition of MAXCPU. I guess that there isScott Long2005-05-301-0/+1
* Revert to the more correct array size, and correct a KASSERT toMark Murray2005-03-291-2/+2
* Fix off-by-one (too little!) array size problem.Poul-Henning Kamp2005-03-181-1/+1
* stop including rijndael-api-fst.h from rijndael.h.Hajimu UMEMOTO2005-03-112-2/+2
* netchild's mega-patch to isolate compiler dependencies into a centralJoerg Wunsch2005-03-021-2/+2
* Check that we have at least a 586-class CPU before calling do_cpuid().Ian Dowse2005-02-061-0/+3
* Check O_NONBLOCK not IO_NDELAY.Poul-Henning Kamp2004-12-222-3/+1
* Don't change the priority to PUSER when sleeping, just keep the currentJohn Baldwin2004-11-051-2/+4
* (1) Move from O(n) list copies to O(1) list concatenation, which isRobert Watson2004-11-031-14/+11