aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/random.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2018-02-11vfs: do bulk POLL* -> EPOLL* replacementLinus Torvalds1-2/+2
2018-01-31Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6Linus Torvalds1-12/+12
2017-11-29crypto: chacha20 - Fix keystream alignment for chacha20_block()Eric Biggers1-12/+12
2017-11-28the rest of drivers/*: annotate ->poll() instancesAl Viro1-2/+2
2017-11-15kmemcheck: remove annotationsLevin, Alexander (Sasha Levin)1-1/+0
2017-10-25locking/atomics: COCCINELLE/treewide: Convert trivial ACCESS_ONCE() patterns to READ_ONCE()/WRITE_ONCE()Mark Rutland1-2/+2
2017-08-08random: fix warning message on ia64 and pariscHelge Deller1-1/+1
2017-07-15Merge tag 'random_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/randomLinus Torvalds1-20/+76
2017-07-15random: reorder READ_ONCE() in get_random_uXXSebastian Andrzej Siewior1-2/+4
2017-07-15random: suppress spammy warnings about unseeded randomnessTheodore Ts'o1-17/+39
2017-07-12random: do not ignore early device randomnessKees Cook1-0/+5
2017-06-19random: warn when kernel uses unseeded randomnessJason A. Donenfeld1-2/+13
2017-06-19random: add wait_for_random_bytes() APIJason A. Donenfeld1-10/+31
2017-06-19random: silence compiler warnings and fix raceJason A. Donenfeld1-6/+6
2017-06-07random: invalidate batched entropy after crng initJason A. Donenfeld1-0/+37
2017-06-07random: use lockless method of accessing and updating f->reg_idxTheodore Ts'o1-6/+6
2017-05-24fix race in drivers/char/random.c:get_reg()Michael Schmitz1-1/+5
2017-02-06random: move random_min_urandom_seed into CONFIG_SYSCTL ifdef blockFabio Estevam1-5/+1
2017-01-27random: convert get_random_int/long into get_random_u32/u64Jason A. Donenfeld1-28/+27
2017-01-27random: use chacha20 for get_random_int/longJason A. Donenfeld1-41/+43
2017-01-18random: fix comment for unused random_min_urandom_seedStephan Müller1-3/+1
2017-01-18random: remove variable limitStephan Müller1-23/+7
2017-01-18random: remove stale urandom_init_waitStephan Müller1-1/+0
2017-01-18random: remove stale maybe_reseed_primary_crngStephan Mueller1-7/+0
2016-12-24Replace <asm/uaccess.h> with <linux/uaccess.h> globallyLinus Torvalds1-1/+1
2016-10-15Merge tag 'gcc-plugins-v4.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linuxLinus Torvalds1-2/+2
2016-10-11random: remove unused randomize_range()Jason Cooper1-19/+0
2016-10-11random: simplify API for random address requestsJason Cooper1-0/+33
2016-10-10latent_entropy: Mark functions with __latent_entropyEmese Revfy1-2/+2
2016-07-30random: Fix crashes with sparse node idsMichael Ellerman1-3/+2
2016-07-27random: use for_each_online_node() to iterate over NUMA nodesTheodore Ts'o1-2/+1
2016-07-03random: strengthen input validation for RNDADDTOENTCNTTheodore Ts'o1-6/+7
2016-07-03random: add backtracking protection to the CRNGTheodore Ts'o1-5/+49
2016-07-03random: make /dev/urandom scalable for silly userspace programsTheodore Ts'o1-4/+58
2016-07-03random: replace non-blocking pool with a Chacha20-based CRNGTheodore Ts'o1-102/+276
2016-06-13random: properly align get_random_int_hashEric Biggers1-1/+3
2016-06-13random: add interrupt callback to VMBus IRQ handlerStephan Mueller1-0/+1
2016-06-13random: print a warning for the first ten uninitialized random usersTheodore Ts'o1-4/+8
2016-06-13random: initialize the non-blocking pool via add_hwgenerator_randomness()Theodore Ts'o1-5/+11
2016-05-20lib/uuid.c: move generate_random_uuid() to uuid.cAndy Shevchenko1-20/+1
2016-02-27drivers: char: random: add get_random_long()Daniel Cashman1-0/+22
2015-06-10random: Remove kernel blocking APIHerbert Xu1-12/+0
2015-06-10random: Add callback API for random pool readinessHerbert Xu1-0/+78
2015-05-27random: Blocking API for accessing nonblocking_poolStephan Mueller1-0/+12
2015-05-27random: Wake up all getrandom(2) callers when pool is readyHerbert Xu1-1/+1
2015-02-09random: Fix fast_mix() functionGeorge Spelvin1-4/+4
2014-10-24Merge tag 'random_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/randomLinus Torvalds1-4/+4
2014-10-17random: add and use memzero_explicit() for clearing dataDaniel Borkmann1-4/+4
2014-08-26drivers/char/random: Replace __get_cpu_var usesChristoph Lameter1-1/+1
2014-08-06Merge tag 'random_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/randomLinus Torvalds1-128/+187