Commit 727d499a authored by Yangtao Li's avatar Yangtao Li Committed by Theodore Ts'o

random: fix typo in add_timer_randomness()

s/entimate/estimate
Signed-off-by: default avatarYangtao Li <tiny.windzz@gmail.com>
Link: https://lore.kernel.org/r/20190607182517.28266-4-tiny.windzz@gmail.comSigned-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
parent 12cd53af
...@@ -1195,7 +1195,7 @@ static void add_timer_randomness(struct timer_rand_state *state, unsigned num) ...@@ -1195,7 +1195,7 @@ static void add_timer_randomness(struct timer_rand_state *state, unsigned num)
/* /*
* delta is now minimum absolute delta. * delta is now minimum absolute delta.
* Round down by 1 bit on general principles, * Round down by 1 bit on general principles,
* and limit entropy entimate to 12 bits. * and limit entropy estimate to 12 bits.
*/ */
credit_entropy_bits(r, min_t(int, fls(delta>>1), 11)); credit_entropy_bits(r, min_t(int, fls(delta>>1), 11));
} }
......
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