diff options
author | Kirill A. Shutemov <kirill.shutemov@linux.intel.com> | 2014-04-07 18:37:19 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-07 19:35:53 -0400 |
commit | f1820361f83d556a7f0a9f629100f3825e594328 (patch) | |
tree | 1fc18989613d72ef115b355864786dd934b4d317 /fs/gfs2 | |
parent | 8c6e50b0290c4c708a3e6462729e1e9151a9a7df (diff) |
mm: implement ->map_pages for page cache
filemap_map_pages() is generic implementation of ->map_pages() for
filesystems who uses page cache.
It should be safe to use filemap_map_pages() for ->map_pages() if
filesystem use filemap_fault() for ->fault().
Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mel Gorman <mgorman@suse.de>
Cc: Rik van Riel <riel@redhat.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Matthew Wilcox <matthew.r.wilcox@intel.com>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: Dave Chinner <david@fromorbit.com>
Cc: Ning Qu <quning@gmail.com>
Cc: Hugh Dickins <hughd@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/file.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/gfs2/file.c b/fs/gfs2/file.c index 6c794085abac..80d67253623c 100644 --- a/fs/gfs2/file.c +++ b/fs/gfs2/file.c | |||
@@ -494,6 +494,7 @@ out: | |||
494 | 494 | ||
495 | static const struct vm_operations_struct gfs2_vm_ops = { | 495 | static const struct vm_operations_struct gfs2_vm_ops = { |
496 | .fault = filemap_fault, | 496 | .fault = filemap_fault, |
497 | .map_pages = filemap_map_pages, | ||
497 | .page_mkwrite = gfs2_page_mkwrite, | 498 | .page_mkwrite = gfs2_page_mkwrite, |
498 | .remap_pages = generic_file_remap_pages, | 499 | .remap_pages = generic_file_remap_pages, |
499 | }; | 500 | }; |