* Re: [nfs:testing 48/48] fs/nfs/filelayout/filelayout.c:1351 filelayout_alloc_layout_hdr() error: potential null dereference 'flo'. (kzalloc returns null)
[not found] <5387ad28.m0xKsvjghVV/maKQ%fengguang.wu@intel.com>
@ 2014-05-30 0:28 ` Trond Myklebust
0 siblings, 0 replies; only message in thread
From: Trond Myklebust @ 2014-05-30 0:28 UTC (permalink / raw)
To: Thomas Haynes; +Cc: Linux NFS Mailing List
On Fri, 2014-05-30 at 05:56 +0800, kbuild test robot wrote:
> tree: git://git.linux-nfs.org/projects/trondmy/linux-nfs.git testing
> head: a27d2ba9829d092f64076231629ba9bd576facbf
> commit: a27d2ba9829d092f64076231629ba9bd576facbf [48/48] Push the file layout driver into a subdirectory
>
> fs/nfs/filelayout/filelayout.c:1351 filelayout_alloc_layout_hdr() error: potential null dereference 'flo'. (kzalloc returns null)
>
> vim +/flo +1351 fs/nfs/filelayout/filelayout.c
>
Hi Tom,
Looks like your rename unearthed an old skeleton from the closet. I'm
applying the following patch before yours in order to fix it.
Cheers
Trond
8<------------------------------------------------
>From 6df200f5d5191bdde4d2e408215383890f956781 Mon Sep 17 00:00:00 2001
From: Trond Myklebust <trond.myklebust@primarydata.com>
Date: Thu, 29 May 2014 20:06:55 -0400
Subject: [PATCH 1/2] pNFS: Handle allocation errors correctly in
filelayout_alloc_layout_hdr()
Return the NULL pointer when the allocation fails.
Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Cc: <stable@vger.kernel.org> # 3.5.x
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
---
fs/nfs/nfs4filelayout.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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
--
1.9.3
--
Trond Myklebust
Linux NFS client maintainer, PrimaryData
trond.myklebust@primarydata.com
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2014-05-30 0:28 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <5387ad28.m0xKsvjghVV/maKQ%fengguang.wu@intel.com>
2014-05-30 0:28 ` [nfs:testing 48/48] fs/nfs/filelayout/filelayout.c:1351 filelayout_alloc_layout_hdr() error: potential null dereference 'flo'. (kzalloc returns null) Trond Myklebust
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).