On May. 11, 2010, 11:59 +0300, Zhang Jingwang <zhangjingwang@xxxxxxxxxxxx> wrote: > If we call layoutcommit before IO completed, then some extents we are > writing may not be in the commit list. When we return layout, they > may not get a chance to be committed to server. > > Signed-off-by: Zhang Jingwang <zhangjingwang@xxxxxxxxxxxx> > --- > fs/nfs/pnfs.c | 20 ++++++++++---------- > 1 files changed, 10 insertions(+), 10 deletions(-) > > diff --git a/fs/nfs/pnfs.c b/fs/nfs/pnfs.c > index 3739c38..6fa295b 100644 > --- a/fs/nfs/pnfs.c > +++ b/fs/nfs/pnfs.c > @@ -726,16 +726,6 @@ _pnfs_return_layout(struct inode *ino, struct nfs4_pnfs_layout_segment *range, > arg.length = ~0; > } > if (type == RETURN_FILE) { > - if (nfsi->layoutcommit_ctx) { > - status = pnfs_layoutcommit_inode(ino, 1); > - if (status) { > - dprintk("%s: layoutcommit failed, status=%d. " > - "Returning layout anyway\n", > - __func__, status); > - status = 0; > - } > - } > - > lo = get_lock_current_layout(nfsi); > if (lo && !has_layout_to_return(lo, &arg)) { > put_unlock_current_layout(lo); > @@ -763,6 +753,16 @@ _pnfs_return_layout(struct inode *ino, struct nfs4_pnfs_layout_segment *range, > wait_event(nfsi->lo_waitq, > !pnfs_return_layout_barrier(nfsi, &arg)); > } > + > + if (nfsi->layoutcommit_ctx) { > + status = pnfs_layoutcommit_inode(ino, 1); > + if (status) { > + dprintk("%s: layoutcommit failed, status=%d. " > + "Returning layout anyway\n", > + __func__, status); > + status = 0; > + } > + } OK, I guess doing that after the send_return label is superfluous as there should be nothing to layoutcommit if we got there after finding no layout to return. Benny > } > send_return: > status = return_layout(ino, &arg, stateid, type, lo); -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html