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-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=6df200f5d5191bdde4d2e408215383890f956781;p=linux-beck.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 63a16375660a..21e921147d21 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