cred: Include <linux/securebits.h> in the right file
Commit Message
There is no need to include <linux/securebits.h> in init_task.h.
Move it to the right place, in kernel/cred.c which uses SECUREBITS_DEFAULT.
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
---
Let see if build-bots agree with me!
---
include/linux/init_task.h | 1 -
kernel/cred.c | 1 +
2 files changed, 1 insertion(+), 1 deletion(-)
@@ -10,7 +10,6 @@
#include <linux/ipc.h>
#include <linux/pid_namespace.h>
#include <linux/user_namespace.h>
-#include <linux/securebits.h>
#include <linux/seqlock.h>
#include <linux/rbtree.h>
#include <linux/refcount.h>
@@ -12,6 +12,7 @@
#include <linux/key.h>
#include <linux/keyctl.h>
#include <linux/init_task.h>
+#include <linux/securebits.h>
#include <linux/security.h>
#include <linux/binfmts.h>
#include <linux/cn_proc.h>