]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
pNFS/files: Fix layoutcommit after a commit to DS
authorTrond Myklebust <trond.myklebust@primarydata.com>
Sun, 26 Jun 2016 16:27:25 +0000 (12:27 -0400)
committerSeth Forshee <seth.forshee@canonical.com>
Thu, 20 Oct 2016 13:07:20 +0000 (08:07 -0500)
BugLink: http://bugs.launchpad.net/bugs/1631468
commit 73e6c5d854d3f7f75e8b46d3e54aeb5d83fe6b1f upstream.

According to the errata
https://www.rfc-editor.org/errata_search.php?rfc=5661&eid=2751
we should always send layout commit after a commit to DS.

Fixes: bc7d4b8fd091 ("nfs/filelayout: set layoutcommit...")
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Tim Gardner <tim.gardner@canonical.com>
fs/nfs/filelayout/filelayout.c

index 02ec07973bc43003bb76b5aaeb8a950094c9ac60..fd8da630fd22edc442e6ad8c0974726759065bb7 100644 (file)
@@ -374,8 +374,7 @@ static int filelayout_commit_done_cb(struct rpc_task *task,
                return -EAGAIN;
        }
 
-       if (data->verf.committed == NFS_UNSTABLE)
-               pnfs_set_layoutcommit(data->inode, data->lseg, data->lwb);
+       pnfs_set_layoutcommit(data->inode, data->lseg, data->lwb);
 
        return 0;
 }