All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mm/slab.c: check pointer slabp before using it in alloc_slabmgmt()
@ 2013-12-08  9:38 ethan.zhao
  2013-12-09 16:11 ` Christoph Lameter
  2013-12-10 15:40 ` Christoph Lameter
  0 siblings, 2 replies; 8+ messages in thread
From: ethan.zhao @ 2013-12-08  9:38 UTC (permalink / raw)
  To: hristoph, alokk, shobhit, shai, cl; +Cc: linux-kernel, ethan.zhao

Move the NULL check of slabp to the right place before refer its memeber in
function alloc_slabmgmt().

This bug may be introduced by rewriting of funcion kmemleak_scan_area(),
the first parameter changed from slabp to &slabp->list.

Signed-off-by: ethan.zhao <ethan.kernel@gmail.com>
---
 mm/slab.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mm/slab.c b/mm/slab.c
index 2580db0..b6d27bc 100644
--- a/mm/slab.c
+++ b/mm/slab.c
@@ -2612,6 +2612,8 @@ static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
 		/* Slab management obj is off-slab. */
 		slabp = kmem_cache_alloc_node(cachep->slabp_cache,
 					      local_flags, nodeid);
+		if (!slabp)
+			return NULL;
 		/*
 		 * If the first object in the slab is leaked (it's allocated
 		 * but no one has a reference to it), we want to make sure
@@ -2620,8 +2622,6 @@ static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
 		 */
 		kmemleak_scan_area(&slabp->list, sizeof(struct list_head),
 				   local_flags);
-		if (!slabp)
-			return NULL;
 	} else {
 		slabp = objp + colour_off;
 		colour_off += cachep->slab_size;
-- 
1.8.3.4 (Apple Git-47)


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2013-12-14 11:15 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-08  9:38 [PATCH] mm/slab.c: check pointer slabp before using it in alloc_slabmgmt() ethan.zhao
2013-12-09 16:11 ` Christoph Lameter
2013-12-10  7:08   ` Ethan Zhao
2013-12-10  8:16     ` Ethan Zhao
2013-12-10 15:35       ` Christoph Lameter
2013-12-10 16:19         ` Peter Hurley
2013-12-14 11:15           ` Meelis Roos
2013-12-10 15:40 ` Christoph Lameter

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.