From: Trond Myklebust Date: Fri, 30 May 2014 00:06:55 +0000 (-0400) Subject: pNFS: Handle allocation errors correctly in filelayout_alloc_layout_hdr() X-Git-Tag: v4.9.8~6278^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6df200f5d5191bdde4d2e408215383890f956781;p=platform%2Fkernel%2Flinux-rpi3.git pNFS: Handle allocation errors correctly in filelayout_alloc_layout_hdr() Return the NULL pointer when the allocation fails. Reported-by: Fengguang Wu Cc: # 3.5.x Signed-off-by: Trond Myklebust --- diff --git a/fs/nfs/nfs4filelayout.c b/fs/nfs/nfs4filelayout.c index 63a1637..21e9211 100644 --- a/fs/nfs/nfs4filelayout.c +++ b/fs/nfs/nfs4filelayout.c @@ -1348,7 +1348,7 @@ filelayout_alloc_layout_hdr(struct inode *inode, gfp_t gfp_flags) struct nfs4_filelayout *flo; flo = kzalloc(sizeof(*flo), gfp_flags); - return &flo->generic_hdr; + return flo != NULL ? &flo->generic_hdr : NULL; } static void