diff options
author | Hugh Dickins <hughd@google.com> | 2011-06-27 16:18:02 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-06-27 18:00:12 -0700 |
commit | 072441e21ddcd1140606b7d4ef6eab579a86b0b3 (patch) | |
tree | 6f059ad83c09dfbeb1def29e805839db3e5bf85f /mm/swapfile.c | |
parent | 5b8ba10198a109f8a02380648c5d29000caa9c55 (diff) | |
download | linux-3.10-072441e21ddcd1140606b7d4ef6eab579a86b0b3.tar.gz linux-3.10-072441e21ddcd1140606b7d4ef6eab579a86b0b3.tar.bz2 linux-3.10-072441e21ddcd1140606b7d4ef6eab579a86b0b3.zip |
mm: move shmem prototypes to shmem_fs.h
Before adding any more global entry points into shmem.c, gather such
prototypes into shmem_fs.h. Remove mm's own declarations from swap.h,
but for now leave the ones in mm.h: because shmem_file_setup() and
shmem_zero_setup() are called from various places, and we should not
force other subsystems to update immediately.
Signed-off-by: Hugh Dickins <hughd@google.com>
Cc: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/swapfile.c')
-rw-r--r-- | mm/swapfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/swapfile.c b/mm/swapfile.c index d537d29e9b7..ff8dc1a18cb 100644 --- a/mm/swapfile.c +++ b/mm/swapfile.c @@ -14,7 +14,7 @@ #include <linux/vmalloc.h> #include <linux/pagemap.h> #include <linux/namei.h> -#include <linux/shm.h> +#include <linux/shmem_fs.h> #include <linux/blkdev.h> #include <linux/random.h> #include <linux/writeback.h> |