From: andros@netapp.com
To: bhalevy@panasas.com
Cc: linux-nfs@vger.kernel.org, Andy Adamson <andros@netapp.com>
Subject: [PATCH 6/6] SQUASHME pnfs-submit: move layoutcommit to nfs_write_inode
Date: Wed, 2 Jun 2010 11:54:27 -0400 [thread overview]
Message-ID: <1275494067-4058-7-git-send-email-andros@netapp.com> (raw)
In-Reply-To: <1275494067-4058-6-git-send-email-andros@netapp.com>
From: Andy Adamson <andros@netapp.com>
The LAYOUTCOMMIT call indicates an update to the file meta data is needed,
and should be called when clearing the I_DIRTY_SYNC state.
A call to LAYOUTCOMMIT in nfs_write_inode replaces the calls in nfs_wb_all,
nfs_commit_inode, and __nfs4_close.
Signed-off-by: Andy Adamson <andros@netapp.com>
---
fs/nfs/nfs4state.c | 2 --
fs/nfs/write.c | 22 ++++++++++------------
2 files changed, 10 insertions(+), 14 deletions(-)
diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c
index d0dbdd4..e1207fa 100644
--- a/fs/nfs/nfs4state.c
+++ b/fs/nfs/nfs4state.c
@@ -589,8 +589,6 @@ static void __nfs4_close(struct path *path, struct nfs4_state *state, fmode_t fm
#ifdef CONFIG_NFS_V4_1
struct nfs_inode *nfsi = NFS_I(state->inode);
- if (layoutcommit_needed(nfsi))
- pnfs_layoutcommit_inode(state->inode, wait);
if (has_layout(nfsi) && nfsi->layout.roc_iomode) {
struct nfs4_pnfs_layout_segment range;
diff --git a/fs/nfs/write.c b/fs/nfs/write.c
index 0fd33cb..875d07f 100644
--- a/fs/nfs/write.c
+++ b/fs/nfs/write.c
@@ -1489,13 +1489,6 @@ static int nfs_commit_inode(struct inode *inode, int how)
wait_on_bit(&NFS_I(inode)->flags, NFS_INO_COMMIT,
nfs_wait_bit_killable,
TASK_KILLABLE);
-#ifdef CONFIG_NFS_V4_1
- if (may_wait && layoutcommit_needed(NFS_I(inode))) {
- error = pnfs_layoutcommit_inode(inode, 1);
- if (error < 0)
- return error;
- }
-#endif /* CONFIG_NFS_V4_1 */
} else
nfs_commit_clear_lock(NFS_I(inode));
out:
@@ -1545,7 +1538,16 @@ static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_contr
int nfs_write_inode(struct inode *inode, struct writeback_control *wbc)
{
- return nfs_commit_unstable_pages(inode, wbc);
+ int ret;
+ ret = nfs_commit_unstable_pages(inode, wbc);
+#ifdef CONFIG_NFS_V4_1
+ if (ret >= 0 && layoutcommit_needed(NFS_I(inode))) {
+ int err = pnfs_layoutcommit_inode(inode, 1);
+ if (err < 0)
+ ret = err;
+ }
+#endif /* CONFIG_NFS_V4_1 */
+ return ret;
}
/*
@@ -1562,10 +1564,6 @@ int nfs_wb_all(struct inode *inode)
};
ret = sync_inode(inode, &wbc);
-#ifdef CONFIG_NFS_V4_1
- if (!ret && layoutcommit_needed(NFS_I(inode)))
- ret = pnfs_layoutcommit_inode(inode, 1);
-#endif
return ret;
}
--
1.6.6
next prev parent reply other threads:[~2010-06-02 17:55 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-02 15:54 (unknown), andros
2010-06-02 15:54 ` [PATCH 1/6] SQUASHME pnfs-submit: remove setup_layoutcommit andros
2010-06-02 15:54 ` [PATCH 2/6] SQUASHNE pnfs-submit: remove cleanup_layoutcommit andros
2010-06-02 15:54 ` [PATCH 3/6] SQUASHME pnfs-submit: remove encode_layoutcommit andros
2010-06-02 15:54 ` [PATCH 4/6] SQUASHME pnfs-submit: cleanup layoutcommit call andros
2010-06-02 15:54 ` [PATCH 5/6] SQUASHME pnfs-submit: handle async layoutcommit errors andros
2010-06-02 15:54 ` andros [this message]
2010-06-03 7:44 ` [PATCH 6/6] SQUASHME pnfs-submit: move layoutcommit to nfs_write_inode Boaz Harrosh
2010-06-03 7:35 ` [PATCH 4/6] SQUASHME pnfs-submit: cleanup layoutcommit call Boaz Harrosh
2010-06-02 18:05 ` [PATCH 0/6] pnfs-submit cleanup layoutcommit for file layout Andy Adamson
2010-06-03 8:10 ` Boaz Harrosh
2010-06-03 13:15 ` William A. (Andy) Adamson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1275494067-4058-7-git-send-email-andros@netapp.com \
--to=andros@netapp.com \
--cc=bhalevy@panasas.com \
--cc=linux-nfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).