Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c001c87a authored by Trond Myklebust's avatar Trond Myklebust
Browse files

pNFS/flexfiles: Fix layoutcommit after a commit to DS



We should always do a layoutcommit after commit to DS, except if
the layout segment we're using has set FF_FLAGS_NO_LAYOUTCOMMIT.

Fixes: d67ae825 ("pnfs/flexfiles: Add the FlexFile Layout Driver")
Signed-off-by: default avatarTrond Myklebust <trond.myklebust@primarydata.com>
parent 73e6c5d8
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1530,8 +1530,7 @@ static int ff_layout_commit_done_cb(struct rpc_task *task,
		return -EAGAIN;
	}

	if (data->verf.committed == NFS_UNSTABLE
	    && ff_layout_need_layoutcommit(data->lseg))
	if (ff_layout_need_layoutcommit(data->lseg))
		pnfs_set_layoutcommit(data->inode, data->lseg, data->lwb);

	return 0;