aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrond Myklebust <[email protected]>2010-01-26 15:41:34 -0500
committerTrond Myklebust <[email protected]>2010-01-26 15:41:34 -0500
commitc9edda7140ec6a22accf7f2f86da362dfbfd41fc (patch)
treec69acf2c9b114086fef8986d54772fa1e08ab044
parent92dcffb916d309aa01778bf8963a6932e4014d07 (diff)
NFS: Fix a reference leak in nfs_wb_cancel_page()
Signed-off-by: Trond Myklebust <[email protected]> Cc: [email protected] Reviewed-by: Chuck Lever <[email protected]>
-rw-r--r--fs/nfs/write.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nfs/write.c b/fs/nfs/write.c
index d171696017f4..dac8d7676aff 100644
--- a/fs/nfs/write.c
+++ b/fs/nfs/write.c
@@ -1541,6 +1541,7 @@ int nfs_wb_page_cancel(struct inode *inode, struct page *page)
break;
}
ret = nfs_wait_on_request(req);
+ nfs_release_request(req);
if (ret < 0)
goto out;
}