]> Git Repo - linux.git/commitdiff
kmemleak: remove memset by using kzalloc
authorJesper Juhl <[email protected]>
Sat, 30 Oct 2010 21:43:05 +0000 (23:43 +0200)
committerCatalin Marinas <[email protected]>
Thu, 27 Jan 2011 18:31:51 +0000 (18:31 +0000)
We don't need to memset if we just use kzalloc() rather than kmalloc() in
kmemleak_test_init().

Signed-off-by: Jesper Juhl <[email protected]>
Reviewed-by: Minchan Kim <[email protected]>
Signed-off-by: Catalin Marinas <[email protected]>
mm/kmemleak-test.c

index 177a5169bbde178323974f027940957a9b4fa4a9..ff0d9779cec8060fe9a161dd278943a39c29f58e 100644 (file)
@@ -75,13 +75,11 @@ static int __init kmemleak_test_init(void)
         * after the module is removed.
         */
        for (i = 0; i < 10; i++) {
-               elem = kmalloc(sizeof(*elem), GFP_KERNEL);
-               pr_info("kmemleak: kmalloc(sizeof(*elem)) = %p\n", elem);
+               elem = kzalloc(sizeof(*elem), GFP_KERNEL);
+               pr_info("kmemleak: kzalloc(sizeof(*elem)) = %p\n", elem);
                if (!elem)
                        return -ENOMEM;
-               memset(elem, 0, sizeof(*elem));
                INIT_LIST_HEAD(&elem->list);
-
                list_add_tail(&elem->list, &test_list);
        }
 
This page took 0.05635 seconds and 4 git commands to generate.