提交 1aeb272c 编写于 作者: R Robert P. J. Day 提交者: Linus Torvalds

kernel: explicitly include required header files under kernel/

Following an experimental deletion of the unnecessary directive

 #include <linux/slab.h>

from the header file <linux/percpu.h>, these files under kernel/ were exposed
as needing to include one of <linux/slab.h> or <linux/gfp.h>, so explicit
includes were added where necessary.
Signed-off-by: NRobert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 3a2e7f47
#include <linux/module.h> #include <linux/module.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/device.h> #include <linux/device.h>
#include <linux/gfp.h>
/* /*
* Device resource management aware IRQ request/free implementation. * Device resource management aware IRQ request/free implementation.
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
#include <linux/module.h> #include <linux/module.h>
#include <linux/random.h> #include <linux/random.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/slab.h>
#include "internals.h" #include "internals.h"
......
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
#include <linux/rcupdate.h> #include <linux/rcupdate.h>
#include <linux/marker.h> #include <linux/marker.h>
#include <linux/err.h> #include <linux/err.h>
#include <linux/slab.h>
extern struct marker __start___markers[]; extern struct marker __start___markers[];
extern struct marker __stop___markers[]; extern struct marker __stop___markers[];
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
#include <linux/module.h> #include <linux/module.h>
#include <linux/cgroup.h> #include <linux/cgroup.h>
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/slab.h>
struct ns_cgroup { struct ns_cgroup {
struct cgroup_subsys_state css; struct cgroup_subsys_state css;
......
...@@ -45,6 +45,7 @@ ...@@ -45,6 +45,7 @@
#include <linux/byteorder/swabb.h> #include <linux/byteorder/swabb.h>
#include <linux/stat.h> #include <linux/stat.h>
#include <linux/srcu.h> #include <linux/srcu.h>
#include <linux/slab.h>
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_AUTHOR("Paul E. McKenney <paulmck@us.ibm.com> and " MODULE_AUTHOR("Paul E. McKenney <paulmck@us.ibm.com> and "
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#include <linux/types.h> #include <linux/types.h>
#include <linux/parser.h> #include <linux/parser.h>
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/slab.h>
#include <linux/res_counter.h> #include <linux/res_counter.h>
#include <linux/uaccess.h> #include <linux/uaccess.h>
......
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
#include <linux/syscalls.h> #include <linux/syscalls.h>
#include <linux/security.h> #include <linux/security.h>
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/slab.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
#include <asm/unistd.h> #include <asm/unistd.h>
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
#include <linux/module.h> #include <linux/module.h>
#include <linux/version.h> #include <linux/version.h>
#include <linux/nsproxy.h> #include <linux/nsproxy.h>
#include <linux/slab.h>
#include <linux/user_namespace.h> #include <linux/user_namespace.h>
/* /*
......
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
#include <linux/utsname.h> #include <linux/utsname.h>
#include <linux/version.h> #include <linux/version.h>
#include <linux/err.h> #include <linux/err.h>
#include <linux/slab.h>
/* /*
* Clone a new ns copying an original utsname, setting refcount to 1 * Clone a new ns copying an original utsname, setting refcount to 1
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册