|
@@ -18,6 +18,7 @@
|
|
#include <linux/debugfs.h>
|
|
#include <linux/debugfs.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/hash.h>
|
|
#include <linux/hash.h>
|
|
|
|
+#include <linux/kmemleak.h>
|
|
|
|
|
|
#define ODEBUG_HASH_BITS 14
|
|
#define ODEBUG_HASH_BITS 14
|
|
#define ODEBUG_HASH_SIZE (1 << ODEBUG_HASH_BITS)
|
|
#define ODEBUG_HASH_SIZE (1 << ODEBUG_HASH_BITS)
|
|
@@ -110,6 +111,7 @@ static void fill_pool(void)
|
|
if (!new)
|
|
if (!new)
|
|
return;
|
|
return;
|
|
|
|
|
|
|
|
+ kmemleak_ignore(new);
|
|
raw_spin_lock_irqsave(&pool_lock, flags);
|
|
raw_spin_lock_irqsave(&pool_lock, flags);
|
|
hlist_add_head(&new->node, &obj_pool);
|
|
hlist_add_head(&new->node, &obj_pool);
|
|
debug_objects_allocated++;
|
|
debug_objects_allocated++;
|
|
@@ -1080,6 +1082,7 @@ static int __init debug_objects_replace_static_objects(void)
|
|
obj = kmem_cache_zalloc(obj_cache, GFP_KERNEL);
|
|
obj = kmem_cache_zalloc(obj_cache, GFP_KERNEL);
|
|
if (!obj)
|
|
if (!obj)
|
|
goto free;
|
|
goto free;
|
|
|
|
+ kmemleak_ignore(obj);
|
|
hlist_add_head(&obj->node, &objects);
|
|
hlist_add_head(&obj->node, &objects);
|
|
}
|
|
}
|
|
|
|
|