diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-02-19 20:02:24 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-03-05 15:44:54 -0500 |
commit | 5bad5abec4058c5214bfc72cec418348d6747977 (patch) | |
tree | dab4b4916a3709632da7d3f43df63a5b8601414c /fs/nfs | |
parent | 420e3646bb7d93a571734034249fbb1ae1a7a5c7 (diff) |
NFS: Run COMMIT as an asynchronous RPC call when wbc->for_background is set
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Acked-by: Peter Zijlstra <peterz@infradead.org>
Acked-by: Wu Fengguang <fengguang.wu@intel.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/write.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/write.c b/fs/nfs/write.c index fc05e35da6a9..704e67d392e5 100644 --- a/fs/nfs/write.c +++ b/fs/nfs/write.c | |||
@@ -1426,7 +1426,7 @@ static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_contr | |||
1426 | nfsi->ncommit <= (nfsi->npages >> 1)) | 1426 | nfsi->ncommit <= (nfsi->npages >> 1)) |
1427 | goto out_mark_dirty; | 1427 | goto out_mark_dirty; |
1428 | 1428 | ||
1429 | if (wbc->nonblocking) | 1429 | if (wbc->nonblocking || wbc->for_background) |
1430 | flags = 0; | 1430 | flags = 0; |
1431 | ret = nfs_commit_inode(inode, flags); | 1431 | ret = nfs_commit_inode(inode, flags); |
1432 | if (ret >= 0) { | 1432 | if (ret >= 0) { |