]> git.baikalelectronics.ru Git - kernel.git/commit
random: help compiler out with fast_mix() by using simpler arguments
authorJason A. Donenfeld <Jason@zx2c4.com>
Fri, 6 May 2022 21:19:43 +0000 (23:19 +0200)
committerJason A. Donenfeld <Jason@zx2c4.com>
Wed, 18 May 2022 13:53:52 +0000 (15:53 +0200)
commite621266ea51b73b40dee1dcb6c5b363307932a64
tree21304b6f424e391064c601af2d4caf8369d6fc0c
parentbcd9fd8727b6bf7e2b9a167fdda243b83dec4321
random: help compiler out with fast_mix() by using simpler arguments

Now that fast_mix() has more than one caller, gcc no longer inlines it.
That's fine. But it also doesn't handle the compound literal argument we
pass it very efficiently, nor does it handle the loop as well as it
could. So just expand the code to spell out this function so that it
generates the same code as it did before. Performance-wise, this now
behaves as it did before the last commit. The difference in actual code
size on x86 is 45 bytes, which is less than a cache line.

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
drivers/char/random.c