diff options
author | Stephan Müller <smueller@chronox.de> | 2016-12-27 23:39:31 +0100 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2017-01-18 21:54:15 -0500 |
commit | 2e03c36f25ebb52d3358b8baebcdf96895c33a87 (patch) | |
tree | 849913951e5a5743a4e168958c661071a1bccd38 /drivers/char/random.c | |
parent | 3d071d8da1f586c24863a57349586a1611b9aa67 (diff) | |
download | linux-2e03c36f25ebb52d3358b8baebcdf96895c33a87.tar.bz2 |
random: remove stale urandom_init_wait
The urandom_init_wait wait queue is a left over from the pre-ChaCha20
times and can therefore be savely removed.
Signed-off-by: Stephan Mueller <smueller@chronox.de>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'drivers/char/random.c')
-rw-r--r-- | drivers/char/random.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/char/random.c b/drivers/char/random.c index 8e5ab20848c0..482531d87fb8 100644 --- a/drivers/char/random.c +++ b/drivers/char/random.c @@ -409,7 +409,6 @@ static struct poolinfo { */ static DECLARE_WAIT_QUEUE_HEAD(random_read_wait); static DECLARE_WAIT_QUEUE_HEAD(random_write_wait); -static DECLARE_WAIT_QUEUE_HEAD(urandom_init_wait); static struct fasync_struct *fasync; static DEFINE_SPINLOCK(random_ready_list_lock); |