From: Fred Isaman Date: Wed, 19 Jan 2011 19:18:50 +0000 (-0500) Subject: NFS: fix handling of malloc failure during nfs_flush_multi() X-Git-Tag: v2.6.38-rc3~1^2~14 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=0da2a4ac33c291728d8be5bdb865467dcb078d13;p=~shefty%2Frdma-dev.git NFS: fix handling of malloc failure during nfs_flush_multi() Cleanup of the allocated list entries should not call put_nfs_open_context() on each entry, as the context will always be NULL, causing an oops. Signed-off-by: Fred Isaman Signed-off-by: Trond Myklebust --- diff --git a/fs/nfs/write.c b/fs/nfs/write.c index 10d648ea128..c8278f4046c 100644 --- a/fs/nfs/write.c +++ b/fs/nfs/write.c @@ -932,7 +932,7 @@ out_bad: while (!list_empty(&list)) { data = list_entry(list.next, struct nfs_write_data, pages); list_del(&data->pages); - nfs_writedata_release(data); + nfs_writedata_free(data); } nfs_redirty_request(req); return -ENOMEM;