diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2022-12-02 22:13:36 +0100 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2022-12-04 14:37:08 +0100 |
commit | 3e6743e28b9b43d37ced234bdf8e19955d0216f8 (patch) | |
tree | dde437087b32f8b54df5261225b19f38f39658a3 /include/linux/prandom.h | |
parent | 39ec9e6b141e5a9d7274f40531888f890385a013 (diff) | |
download | linux-stable-3e6743e28b9b43d37ced234bdf8e19955d0216f8.tar.gz linux-stable-3e6743e28b9b43d37ced234bdf8e19955d0216f8.tar.bz2 linux-stable-3e6743e28b9b43d37ced234bdf8e19955d0216f8.zip |
random: include <linux/once.h> in the right header
<linux/prandom.h> uses DO_ONCE(), so it should include <linux/once.h>
directly. In contrast, <linux/random.h> does not use code from
<linux/once.h>, so it should be removed.
Move the `#include <linux/once.h>` line into the right file.
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Fixes: c0842fbc1b18 ("random32: move the pseudo-random 32-bit definitions to prandom.h")
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'include/linux/prandom.h')
-rw-r--r-- | include/linux/prandom.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/prandom.h b/include/linux/prandom.h index 1f4a0de7b019..c94c02ba065c 100644 --- a/include/linux/prandom.h +++ b/include/linux/prandom.h @@ -9,6 +9,7 @@ #define _LINUX_PRANDOM_H #include <linux/types.h> +#include <linux/once.h> #include <linux/percpu.h> #include <linux/random.h> |