]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
random: remove kernel.random.read_wakeup_threshold
authorAndy Lutomirski <luto@kernel.org>
Mon, 23 Dec 2019 08:20:51 +0000 (00:20 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 25 Jun 2022 09:48:59 +0000 (11:48 +0200)
commit c95ea0c69ffda19381c116db2be23c7e654dac98 upstream.

It has no effect any more, so remove it.  We can revert this if
there is some user code that expects to be able to set this sysctl.

Signed-off-by: Andy Lutomirski <luto@kernel.org>
Link: https://lore.kernel.org/r/a74ed2cf0b5a5451428a246a9239f5bc4e29358f.1577088521.git.luto@kernel.org
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/char/random.c

index e93494ce96c36358310c0dd748614c0232e42508..35ec082e0e454599bb231338dc019e26e4235b5e 100644 (file)
 #define ENTROPY_SHIFT 3
 #define ENTROPY_BITS(r) ((r)->entropy_count >> ENTROPY_SHIFT)
 
-/*
- * The minimum number of bits of entropy before we wake up a read on
- * /dev/random.  Should be enough to do a significant reseed.
- */
-static int random_read_wakeup_bits = 64;
-
 /*
  * If the entropy count falls under this number of bits, then we
  * should wake up processes which are selecting or polling on write
@@ -2073,8 +2067,7 @@ SYSCALL_DEFINE3(getrandom, char __user *, buf, size_t, count,
 
 #include <linux/sysctl.h>
 
-static int min_read_thresh = 8, min_write_thresh;
-static int max_read_thresh = OUTPUT_POOL_WORDS * 32;
+static int min_write_thresh;
 static int max_write_thresh = INPUT_POOL_WORDS * 32;
 static int random_min_urandom_seed = 60;
 static char sysctl_bootid[16];
@@ -2149,15 +2142,6 @@ struct ctl_table random_table[] = {
                .proc_handler   = proc_do_entropy,
                .data           = &input_pool.entropy_count,
        },
-       {
-               .procname       = "read_wakeup_threshold",
-               .data           = &random_read_wakeup_bits,
-               .maxlen         = sizeof(int),
-               .mode           = 0644,
-               .proc_handler   = proc_dointvec_minmax,
-               .extra1         = &min_read_thresh,
-               .extra2         = &max_read_thresh,
-       },
        {
                .procname       = "write_wakeup_threshold",
                .data           = &random_write_wakeup_bits,