From: Benjamin Coddington Date: Mon, 18 Jul 2016 14:41:57 +0000 (-0400) Subject: nfs: don't create zero-length requests X-Git-Tag: v3.12.63~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c81fa37349757cc1c32ef261ab187ed43e72d1e;p=thirdparty%2Fkernel%2Fstable.git nfs: don't create zero-length requests commit 149a4fddd0a72d526abbeac0c8deaab03559836a upstream. NFS doesn't expect requests with wb_bytes set to zero and may make unexpected decisions about how to handle that request at the page IO layer. Skip request creation if we won't have any wb_bytes in the request. Signed-off-by: Benjamin Coddington Signed-off-by: Alexey Dobriyan Reviewed-by: Weston Andros Adamson Signed-off-by: Trond Myklebust Signed-off-by: Jiri Slaby --- diff --git a/fs/nfs/write.c b/fs/nfs/write.c index 3a1b1d1a27ceb..d194a72b5b667 100644 --- a/fs/nfs/write.c +++ b/fs/nfs/write.c @@ -967,6 +967,9 @@ int nfs_updatepage(struct file *file, struct page *page, file->f_path.dentry->d_name.name, count, (long long)(page_file_offset(page) + offset)); + if (!count) + goto out; + if (nfs_can_extend_write(file, page, inode)) { count = max(count + offset, nfs_page_length(page)); offset = 0; @@ -977,7 +980,7 @@ int nfs_updatepage(struct file *file, struct page *page, nfs_set_pageerror(page); else __set_page_dirty_nobuffers(page); - +out: dprintk("NFS: nfs_updatepage returns %d (isize %lld)\n", status, (long long)i_size_read(inode)); return status;