From: Stephan Müller Date: Tue, 27 Dec 2016 22:41:22 +0000 (+0100) Subject: random: fix comment for unused random_min_urandom_seed X-Git-Tag: v4.11-rc2~6^2~3 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=5d0e5ea343a0f70351428476bcf8715e0731f26a;p=linux-2.6-block.git random: fix comment for unused random_min_urandom_seed The variable random_min_urandom_seed is not needed any more as it defined the reseeding behavior of the nonblocking pool. Though it is not needed any more, it is left in the code for user space interface compatibility. Signed-off-by: Stephan Mueller Signed-off-by: Theodore Ts'o --- diff --git a/drivers/char/random.c b/drivers/char/random.c index 92d6dd24c86e..9d147d456598 100644 --- a/drivers/char/random.c +++ b/drivers/char/random.c @@ -313,9 +313,7 @@ static int random_read_wakeup_bits = 64; static int random_write_wakeup_bits = 28 * OUTPUT_POOL_WORDS; /* - * The minimum number of seconds between urandom pool reseeding. We - * do this to limit the amount of entropy that can be drained from the - * input pool even if there are heavy demands on /dev/urandom. + * Variable is currently unused by left for user space compatibility. */ static int random_min_urandom_seed = 60;