Commit f1631672 authored by Trond Myklebust's avatar Trond Myklebust Committed by Greg Kroah-Hartman

pNFS: Handle allocation errors correctly in filelayout_alloc_layout_hdr()

commit 6df200f5 upstream.

Return the NULL pointer when the allocation fails.
Reported-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: default avatarTrond Myklebust <trond.myklebust@primarydata.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 44f69433
...@@ -1300,7 +1300,7 @@ filelayout_alloc_layout_hdr(struct inode *inode, gfp_t gfp_flags) ...@@ -1300,7 +1300,7 @@ filelayout_alloc_layout_hdr(struct inode *inode, gfp_t gfp_flags)
struct nfs4_filelayout *flo; struct nfs4_filelayout *flo;
flo = kzalloc(sizeof(*flo), gfp_flags); flo = kzalloc(sizeof(*flo), gfp_flags);
return &flo->generic_hdr; return flo != NULL ? &flo->generic_hdr : NULL;
} }
static void static void
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment