summaryrefslogtreecommitdiffstats
path: root/fs/nfs/pnfs.c
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2012-04-27 14:31:47 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2012-04-27 15:03:51 -0400
commit9b5415b536cc3193e9608a7fced1372df8ce4dcf (patch)
tree02d031861e7fa008d02bb74f46f480aed521f445 /fs/nfs/pnfs.c
parent80a16b21a81eb639f0b726549f4c46c0e9aff92e (diff)
downloadlinux-stable-9b5415b536cc3193e9608a7fced1372df8ce4dcf.tar.gz
linux-stable-9b5415b536cc3193e9608a7fced1372df8ce4dcf.tar.bz2
linux-stable-9b5415b536cc3193e9608a7fced1372df8ce4dcf.zip
NFS: Fix a use-before-initialised warning in fs/nfs/write.c and fs/nfs/pnfs.c
If the allocation of nfs_write_header fails, the list of nfs_pages that needs to be cleaned up is still on desc->pg_list... Reported-by: Bryan Schumaker <bjschuma@netapp.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> Acked-by: Fred Isaman <iisaman@netapp.com>
Diffstat (limited to 'fs/nfs/pnfs.c')
-rw-r--r--fs/nfs/pnfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/pnfs.c b/fs/nfs/pnfs.c
index 4da05e469be5..39cbac548730 100644
--- a/fs/nfs/pnfs.c
+++ b/fs/nfs/pnfs.c
@@ -1308,7 +1308,7 @@ pnfs_generic_pg_writepages(struct nfs_pageio_descriptor *desc)
whdr = nfs_writehdr_alloc();
if (!whdr) {
- desc->pg_completion_ops->error_cleanup(&hdr->pages);
+ desc->pg_completion_ops->error_cleanup(&desc->pg_list);
put_lseg(desc->pg_lseg);
desc->pg_lseg = NULL;
return -ENOMEM;