diff options
author | Peng Tao <tao.peng@primarydata.com> | 2015-08-21 22:40:00 (GMT) |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2015-08-25 18:40:06 (GMT) |
commit | 5420401079e152ff68a8024f6a375804b1c21505 (patch) | |
tree | 9d466a89b5a741ac313de83a9399f5cd5c5e4a57 /fs/nfs | |
parent | 3976143b063e3c42fe5471d87860f6ae118e0eee (diff) | |
download | linux-5420401079e152ff68a8024f6a375804b1c21505.tar.xz |
NFS41/flexfiles: zero out DS write wcc
We do not want to update inode attributes with DS values.
Cc: stable@vger.kernel.org # v4.0+
Signed-off-by: Peng Tao <tao.peng@primarydata.com>
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/flexfilelayout/flexfilelayout.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/nfs/flexfilelayout/flexfilelayout.c b/fs/nfs/flexfilelayout/flexfilelayout.c index 7e4cbdf..cc2c5f7 100644 --- a/fs/nfs/flexfilelayout/flexfilelayout.c +++ b/fs/nfs/flexfilelayout/flexfilelayout.c @@ -1218,6 +1218,8 @@ static int ff_layout_write_done_cb(struct rpc_task *task, hdr->res.verf->committed == NFS_DATA_SYNC) ff_layout_set_layoutcommit(hdr); + /* zero out fattr since we don't care DS attr at all */ + hdr->fattr.valid = 0; if (task->tk_status >= 0) nfs_writeback_update_inode(hdr); |