diff options
author | Sergey Senozhatsky <[email protected]> | 2018-01-04 16:18:02 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2018-01-04 16:45:09 -0800 |
commit | cdc346b36e1dfec201b24eddb7bdbcff6727db04 (patch) | |
tree | 7eebd32a8da1aefef1f05c9ec2a841e393281fc8 | |
parent | 152a2d199e1385c6ccef17c24555103b30447c91 (diff) |
mm/zsmalloc.c: include fs.h
`struct file_system_type' and alloc_anon_inode() function are defined in
fs.h, include it directly.
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Sergey Senozhatsky <[email protected]>
Cc: Minchan Kim <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | mm/zsmalloc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mm/zsmalloc.c b/mm/zsmalloc.c index 685049a9048d..683c0651098c 100644 --- a/mm/zsmalloc.c +++ b/mm/zsmalloc.c @@ -53,6 +53,7 @@ #include <linux/mount.h> #include <linux/migrate.h> #include <linux/pagemap.h> +#include <linux/fs.h> #define ZSPAGE_MAGIC 0x58 |