aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/file.c
diff options
context:
space:
mode:
authorSouptick Joarder <jrdr.linux@gmail.com>2018-07-02 22:16:13 +0530
committerAndreas Gruenbacher <agruenba@redhat.com>2018-07-24 20:02:11 +0200
commit109dbb1e6f27fb8f80ee61953485c7c3b1717951 (patch)
tree90c6246455aa483c76f3455aeda45b26e9fbb7c2 /fs/gfs2/file.c
parentgfs2: using posix_acl_xattr_size instead of posix_acl_to_xattr (diff)
downloadlinux-dev-109dbb1e6f27fb8f80ee61953485c7c3b1717951.tar.xz
linux-dev-109dbb1e6f27fb8f80ee61953485c7c3b1717951.zip
fs: gfs2: Adding new return type vm_fault_t
Use new return type vm_fault_t for gfs2_page_mkwrite handler. see commit 1c8f422059ae ("mm: change return type to vm_fault_t") for reference. Signed-off-by: Souptick Joarder <jrdr.linux@gmail.com> Reviewed-by: Matthew Wilcox <mawilcox@microsoft.com> Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2/file.c')
-rw-r--r--fs/gfs2/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/file.c b/fs/gfs2/file.c
index 7137db7b0119..8cb278ee9a0e 100644
--- a/fs/gfs2/file.c
+++ b/fs/gfs2/file.c
@@ -387,7 +387,7 @@ static int gfs2_allocate_page_backing(struct page *page)
* blocks allocated on disk to back that page.
*/
-static int gfs2_page_mkwrite(struct vm_fault *vmf)
+static vm_fault_t gfs2_page_mkwrite(struct vm_fault *vmf)
{
struct page *page = vmf->page;
struct inode *inode = file_inode(vmf->vma->vm_file);