[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20070329160434.GA10265@cvg>
Date: Thu, 29 Mar 2007 20:04:34 +0400
From: Cyrill Gorcunov <gorcunov@...il.com>
To: linux-kernel-list <linux-kernel@...r.kernel.org>
Subject: [QUESTION] check for mem in slab
Hi list,
in file mm/slab.c and routine kmem_cache_init() I found there
is no checking for allocated memory on line:
/* 4) Replace the bootstrap head arrays */
{
struct array_cache *ptr;
ptr = kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
--> no check for ptr == NULL <--
local_irq_disable();
BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
memcpy(ptr, cpu_cache_get(&cache_cache),
sizeof(struct arraycache_init));
...
is that OK? or it's a bug?
Cyrill
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists