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)
committerTrond Myklebust <trond.myklebust@primarydata.com>
Tue, 5 Jul 2016 22:52:25 +0000 (18:52 -0400)
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>
fs/nfs/filelayout/filelayout.c

index aa59757389dc8b38887b4cce4dcc5a287a2ba42a..b4c1407e8fe4d2df74558ef46da9c18a1a55d693 100644 (file)
@@ -375,8 +375,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;
 }