Commit 72e5c740 authored by Sebastian Andrzej Siewior's avatar Sebastian Andrzej Siewior Committed by Theodore Ts'o

random: reorder READ_ONCE() in get_random_uXX

Avoid the READ_ONCE in commit 4a072c71 ("random: silence compiler
warnings and fix race") if we can leave the function after
arch_get_random_XXX().

Cc: Jason A. Donenfeld <Jason@zx2c4.com>
Signed-off-by: default avatarSebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
parent eecabf56
...@@ -2089,7 +2089,7 @@ static DEFINE_PER_CPU(struct batched_entropy, batched_entropy_u64); ...@@ -2089,7 +2089,7 @@ static DEFINE_PER_CPU(struct batched_entropy, batched_entropy_u64);
u64 get_random_u64(void) u64 get_random_u64(void)
{ {
u64 ret; u64 ret;
bool use_lock = READ_ONCE(crng_init) < 2; bool use_lock;
unsigned long flags = 0; unsigned long flags = 0;
struct batched_entropy *batch; struct batched_entropy *batch;
static void *previous; static void *previous;
...@@ -2105,6 +2105,7 @@ u64 get_random_u64(void) ...@@ -2105,6 +2105,7 @@ u64 get_random_u64(void)
warn_unseeded_randomness(&previous); warn_unseeded_randomness(&previous);
use_lock = READ_ONCE(crng_init) < 2;
batch = &get_cpu_var(batched_entropy_u64); batch = &get_cpu_var(batched_entropy_u64);
if (use_lock) if (use_lock)
read_lock_irqsave(&batched_entropy_reset_lock, flags); read_lock_irqsave(&batched_entropy_reset_lock, flags);
...@@ -2124,7 +2125,7 @@ static DEFINE_PER_CPU(struct batched_entropy, batched_entropy_u32); ...@@ -2124,7 +2125,7 @@ static DEFINE_PER_CPU(struct batched_entropy, batched_entropy_u32);
u32 get_random_u32(void) u32 get_random_u32(void)
{ {
u32 ret; u32 ret;
bool use_lock = READ_ONCE(crng_init) < 2; bool use_lock;
unsigned long flags = 0; unsigned long flags = 0;
struct batched_entropy *batch; struct batched_entropy *batch;
static void *previous; static void *previous;
...@@ -2134,6 +2135,7 @@ u32 get_random_u32(void) ...@@ -2134,6 +2135,7 @@ u32 get_random_u32(void)
warn_unseeded_randomness(&previous); warn_unseeded_randomness(&previous);
use_lock = READ_ONCE(crng_init) < 2;
batch = &get_cpu_var(batched_entropy_u32); batch = &get_cpu_var(batched_entropy_u32);
if (use_lock) if (use_lock)
read_lock_irqsave(&batched_entropy_reset_lock, flags); read_lock_irqsave(&batched_entropy_reset_lock, flags);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment