diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2012-01-24 11:41:32 +1100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-23 17:17:45 -0800 |
commit | c1aab02dac690af7ff634d8e1cb3be6a04387eef (patch) | |
tree | 9018361108b2c370d247452e4517937057bf9895 /include | |
parent | ac1e3d4f5c1097422c6e72aeae322033e9a8c803 (diff) | |
download | linux-3.10-c1aab02dac690af7ff634d8e1cb3be6a04387eef.tar.gz linux-3.10-c1aab02dac690af7ff634d8e1cb3be6a04387eef.tar.bz2 linux-3.10-c1aab02dac690af7ff634d8e1cb3be6a04387eef.zip |
migrate_mode.h is not exported to user mode
so move its include into fs.h inside the __KERNEL__ protection.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 4b3a41fe22b..386da09f229 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/migrate_mode.h> /* * It's silly to have NR_OPEN bigger than NR_FILE, but you can change @@ -397,6 +396,7 @@ struct inodes_stat_t { #include <linux/rculist_bl.h> #include <linux/atomic.h> #include <linux/shrinker.h> +#include <linux/migrate_mode.h> #include <asm/byteorder.h> |