The patch titled Subject: mm/kmemleak.c: remove unneeded initialization of object to NULL has been removed from the -mm tree. Its filename was mm-kmemleak-remove-unneeded-initialization-of-object-to-null.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Alexey Klimov <alexey.klimov@xxxxxxxxxx> Subject: mm/kmemleak.c: remove unneeded initialization of object to NULL Few lines below object is reinitialized by lookup_object() so we don't need to init it by NULL in the beginning of find_and_get_object(). Signed-off-by: Alexey Klimov <alexey.klimov@xxxxxxxxxx> Acked-by: Catalin Marinas <catalin.marinas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/kmemleak.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/kmemleak.c~mm-kmemleak-remove-unneeded-initialization-of-object-to-null mm/kmemleak.c --- a/mm/kmemleak.c~mm-kmemleak-remove-unneeded-initialization-of-object-to-null +++ a/mm/kmemleak.c @@ -479,7 +479,7 @@ static void put_object(struct kmemleak_o static struct kmemleak_object *find_and_get_object(unsigned long ptr, int alias) { unsigned long flags; - struct kmemleak_object *object = NULL; + struct kmemleak_object *object; rcu_read_lock(); read_lock_irqsave(&kmemleak_lock, flags); _ Patches currently in -mm which might be from alexey.klimov@xxxxxxxxxx are mm-zswap-remove-unneeded-initialization-to-null-in-zswap_entry_find_get.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html