diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2011-04-11 11:56:23 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2011-04-12 19:34:22 -0400 |
commit | 4b38a6db01b09198f4045661815a0039c3d80660 (patch) | |
tree | cf298d705d7ac00f49fc02ea5e6ea3f0a17c109e /fs/nfs | |
parent | 160bc1604f8a33202578846c9a63e2a61105a4b7 (diff) | |
download | linux-4b38a6db01b09198f4045661815a0039c3d80660.tar.bz2 |
NFS: Eliminate duplicate call to nfs_mark_request_dirty
We only need to call nfs_mark_request_dirty() once in nfs_writepage_setup().
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/write.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/nfs/write.c b/fs/nfs/write.c index e4cbc11a74ab..bb608186b099 100644 --- a/fs/nfs/write.c +++ b/fs/nfs/write.c @@ -680,7 +680,6 @@ static int nfs_writepage_setup(struct nfs_open_context *ctx, struct page *page, req = nfs_setup_write_request(ctx, page, offset, count); if (IS_ERR(req)) return PTR_ERR(req); - nfs_mark_request_dirty(req); /* Update file length */ nfs_grow_file(page, offset, count); nfs_mark_uptodate(page, req->wb_pgbase, req->wb_bytes); |