]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
nfs: don't create zero-length requests
authorBenjamin Coddington <bcodding@redhat.com>
Mon, 18 Jul 2016 14:41:57 +0000 (10:41 -0400)
committerTrond Myklebust <trond.myklebust@primarydata.com>
Fri, 22 Jul 2016 19:15:16 +0000 (15:15 -0400)
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 <bcodding@redhat.com>
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Reviewed-by: Weston Andros Adamson <dros@primarydata.com>
Cc: stable@vger.kernel.org
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
fs/nfs/write.c

index 0b949a06b297f664944201bfefd20dea752a6629..b5f3da346f1dc59765d2b79be21d5cf32e00f988 100644 (file)
@@ -1291,6 +1291,9 @@ int nfs_updatepage(struct file *file, struct page *page,
        dprintk("NFS:       nfs_updatepage(%pD2 %d@%lld)\n",
                file, 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;
@@ -1301,7 +1304,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;