summaryrefslogtreecommitdiffstats
path: root/fs/sysfs
diff options
context:
space:
mode:
authorRobert P. J. Day2008-03-14 03:41:52 +0100
committerGreg Kroah-Hartman2008-04-20 04:10:27 +0200
commitc6f87733823d69a8f12e391688ceeb1ff4922530 (patch)
tree2061036d1d015167a4de9e2c3a14810e6409f18f /fs/sysfs
parentDriver core: make device_is_registered() work for class devices (diff)
downloadkernel-qcow2-linux-c6f87733823d69a8f12e391688ceeb1ff4922530.tar.gz
kernel-qcow2-linux-c6f87733823d69a8f12e391688ceeb1ff4922530.tar.xz
kernel-qcow2-linux-c6f87733823d69a8f12e391688ceeb1ff4922530.zip
SYSFS: Explicitly include required header file slab.h.
After an experimental deletion of the unnecessary inclusion of <linux/slab.h> from the header file <linux/percpu.h>, the following files under fs/sysfs were exposed as needing to explicitly include <linux/slab.h>. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs/sysfs')
-rw-r--r--fs/sysfs/dir.c1
-rw-r--r--fs/sysfs/file.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/fs/sysfs/dir.c b/fs/sysfs/dir.c
index 4948d9bc405d..a1c3a1fab7f0 100644
--- a/fs/sysfs/dir.c
+++ b/fs/sysfs/dir.c
@@ -20,6 +20,7 @@
#include <linux/idr.h>
#include <linux/completion.h>
#include <linux/mutex.h>
+#include <linux/slab.h>
#include "sysfs.h"
DEFINE_MUTEX(sysfs_mutex);
diff --git a/fs/sysfs/file.c b/fs/sysfs/file.c
index baa663e69388..a859c32ff93a 100644
--- a/fs/sysfs/file.c
+++ b/fs/sysfs/file.c
@@ -13,6 +13,7 @@
#include <linux/module.h>
#include <linux/kobject.h>
#include <linux/kallsyms.h>
+#include <linux/slab.h>
#include <linux/namei.h>
#include <linux/poll.h>
#include <linux/list.h>