diff options
author | Jason A. Donenfeld <[email protected]> | 2022-06-07 09:44:07 +0200 |
---|---|---|
committer | Jason A. Donenfeld <[email protected]> | 2022-06-10 11:09:36 +0200 |
commit | 9b29b6b20376ab64e1b043df6301d8a92378e631 (patch) | |
tree | 90ba493df6bc5a7da74b9c9507c9d0fa6d0d652b /include/linux/fpga/fpga-mgr.h | |
parent | 77991645952c21962a095910c51fe0f73d35bf91 (diff) |
random: avoid checking crng_ready() twice in random_init()
The current flow expands to:
if (crng_ready())
...
else if (...)
if (!crng_ready())
...
The second crng_ready() call is redundant, but can't so easily be
optimized out by the compiler.
This commit simplifies that to:
if (crng_ready()
...
else if (...)
...
Fixes: 560181c27b58 ("random: move initialization functions out of hot pages")
Cc: [email protected]
Cc: Dominik Brodowski <[email protected]>
Signed-off-by: Jason A. Donenfeld <[email protected]>
Diffstat (limited to 'include/linux/fpga/fpga-mgr.h')
0 files changed, 0 insertions, 0 deletions