提交 4fda1168 编写于 作者: L Linus Torvalds

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/cmarinas/linux-2.6-cm

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/cmarinas/linux-2.6-cm:
  kmemleak: Allow kmemleak metadata allocations to fail
  kmemleak: remove memset by using kzalloc
...@@ -75,13 +75,11 @@ static int __init kmemleak_test_init(void) ...@@ -75,13 +75,11 @@ static int __init kmemleak_test_init(void)
* after the module is removed. * after the module is removed.
*/ */
for (i = 0; i < 10; i++) { for (i = 0; i < 10; i++) {
elem = kmalloc(sizeof(*elem), GFP_KERNEL); elem = kzalloc(sizeof(*elem), GFP_KERNEL);
pr_info("kmemleak: kmalloc(sizeof(*elem)) = %p\n", elem); pr_info("kmemleak: kzalloc(sizeof(*elem)) = %p\n", elem);
if (!elem) if (!elem)
return -ENOMEM; return -ENOMEM;
memset(elem, 0, sizeof(*elem));
INIT_LIST_HEAD(&elem->list); INIT_LIST_HEAD(&elem->list);
list_add_tail(&elem->list, &test_list); list_add_tail(&elem->list, &test_list);
} }
......
...@@ -113,7 +113,9 @@ ...@@ -113,7 +113,9 @@
#define BYTES_PER_POINTER sizeof(void *) #define BYTES_PER_POINTER sizeof(void *)
/* GFP bitmask for kmemleak internal allocations */ /* GFP bitmask for kmemleak internal allocations */
#define GFP_KMEMLEAK_MASK (GFP_KERNEL | GFP_ATOMIC) #define gfp_kmemleak_mask(gfp) (((gfp) & (GFP_KERNEL | GFP_ATOMIC)) | \
__GFP_NORETRY | __GFP_NOMEMALLOC | \
__GFP_NOWARN)
/* scanning area inside a memory block */ /* scanning area inside a memory block */
struct kmemleak_scan_area { struct kmemleak_scan_area {
...@@ -511,9 +513,10 @@ static struct kmemleak_object *create_object(unsigned long ptr, size_t size, ...@@ -511,9 +513,10 @@ static struct kmemleak_object *create_object(unsigned long ptr, size_t size,
struct kmemleak_object *object; struct kmemleak_object *object;
struct prio_tree_node *node; struct prio_tree_node *node;
object = kmem_cache_alloc(object_cache, gfp & GFP_KMEMLEAK_MASK); object = kmem_cache_alloc(object_cache, gfp_kmemleak_mask(gfp));
if (!object) { if (!object) {
kmemleak_stop("Cannot allocate a kmemleak_object structure\n"); pr_warning("Cannot allocate a kmemleak_object structure\n");
kmemleak_disable();
return NULL; return NULL;
} }
...@@ -734,9 +737,9 @@ static void add_scan_area(unsigned long ptr, size_t size, gfp_t gfp) ...@@ -734,9 +737,9 @@ static void add_scan_area(unsigned long ptr, size_t size, gfp_t gfp)
return; return;
} }
area = kmem_cache_alloc(scan_area_cache, gfp & GFP_KMEMLEAK_MASK); area = kmem_cache_alloc(scan_area_cache, gfp_kmemleak_mask(gfp));
if (!area) { if (!area) {
kmemleak_warn("Cannot allocate a scan area\n"); pr_warning("Cannot allocate a scan area\n");
goto out; goto out;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册