]> git.baikalelectronics.ru Git - kernel.git/commit
random32: Restore __latent_entropy attribute on net_rand_state
authorThibaut Sautereau <thibaut.sautereau@ssi.gouv.fr>
Fri, 2 Oct 2020 15:16:11 +0000 (17:16 +0200)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 2 Oct 2020 16:31:54 +0000 (09:31 -0700)
commitdddb2de43944b1d8c359c0b1aa72c314f9217a91
tree8a3260a38e0c6a91877ba7f83db373afc44380dc
parent6c2ada6b6f255c5e6e15bedc174019b2f5882319
random32: Restore __latent_entropy attribute on net_rand_state

Commit d1b61c3d6f0c ("random32: update the net random state on interrupt
and activity") broke compilation and was temporarily fixed by Linus in
e2c614e68aca ("random32: remove net_rand_state from the latent entropy
gcc plugin") by entirely moving net_rand_state out of the things handled
by the latent_entropy GCC plugin.

From what I understand when reading the plugin code, using the
__latent_entropy attribute on a declaration was the wrong part and
simply keeping the __latent_entropy attribute on the variable definition
was the correct fix.

Fixes: e2c614e68aca ("random32: remove net_rand_state from the latent entropy gcc plugin")
Acked-by: Willy Tarreau <w@1wt.eu>
Cc: Emese Revfy <re.emese@gmail.com>
Signed-off-by: Thibaut Sautereau <thibaut.sautereau@ssi.gouv.fr>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
lib/random32.c