diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-02-19 17:03:18 -0800 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-03-05 15:44:54 -0500 |
commit | 2928db1ffeacc9717c2d5c230d450bcc377b3ae9 (patch) | |
tree | c0dea3d26d45c3ea1a3602984ed4738b93373f67 /fs/nfs | |
parent | 5bad5abec4058c5214bfc72cec418348d6747977 (diff) | |
download | op-kernel-dev-2928db1ffeacc9717c2d5c230d450bcc377b3ae9.zip op-kernel-dev-2928db1ffeacc9717c2d5c230d450bcc377b3ae9.tar.gz |
NFS: Ensure inode is always marked I_DIRTY_DATASYNC, if it has unstable pages
Since nfs_scan_list() doesn't wait for locked pages, we have a race in
which it is possible to end up with an inode that needs to send a COMMIT,
but which does not have the I_DIRTY_DATASYNC flag set.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/write.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/nfs/write.c b/fs/nfs/write.c index 704e67d..e40e949 100644 --- a/fs/nfs/write.c +++ b/fs/nfs/write.c @@ -582,6 +582,8 @@ nfs_scan_commit(struct inode *inode, struct list_head *dst, pgoff_t idx_start, u ret = nfs_scan_list(nfsi, dst, idx_start, npages, NFS_PAGE_TAG_COMMIT); if (ret > 0) nfsi->ncommit -= ret; + if (nfs_need_commit(NFS_I(inode))) + __mark_inode_dirty(inode, I_DIRTY_DATASYNC); return ret; } #else |