aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fs.h
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2012-09-27 09:35:03 +0200
committerJens Axboe <axboe@kernel.dk>2012-09-27 09:35:03 +0200
commitc2b1ad800b66f62105a7fd250604d72e07202e66 (patch)
tree0f5461b02e016e796c0d60b9a7dc1bf69fccb9b5 /include/linux/fs.h
parentpercpu-rw-semaphore: fix documentation typos (diff)
downloadlinux-dev-c2b1ad800b66f62105a7fd250604d72e07202e66.tar.xz
linux-dev-c2b1ad800b66f62105a7fd250604d72e07202e66.zip
fs: fix include/percpu-rwsem.h export error
We get the following export error on the include file: usr/include/linux/fs.h:13: included file 'linux/percpu-rwsem.h' is not exported Move the include inside the __KERNEL__ section. Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r--include/linux/fs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 24e1229cdfe0..cefa9645fc85 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -10,7 +10,6 @@
#include <linux/ioctl.h>
#include <linux/blk_types.h>
#include <linux/types.h>
-#include <linux/percpu-rwsem.h>
/*
* It's silly to have NR_OPEN bigger than NR_FILE, but you can change
@@ -417,6 +416,7 @@ struct inodes_stat_t {
#include <linux/migrate_mode.h>
#include <linux/uidgid.h>
#include <linux/lockdep.h>
+#include <linux/percpu-rwsem.h>
#include <asm/byteorder.h>