The patch titled lockdep: console_init after local_irq_enable() has been removed from the -mm tree. Its filename is lockdep-console_init-after-local_irq_enable.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: lockdep: console_init after local_irq_enable() From: Heiko Carstens <heiko.carstens@xxxxxxxxxx> s390's console_init must enable interrupts, but early_boot_irqs_on() gets called later. To avoid problems move console_init() after local_irq_enable(). Signed-off-by: Heiko Carstens <heiko.carstens@xxxxxxxxxx> Acked-by: Ingo Molnar <mingo@xxxxxxx> Cc: Martin Schwidefsky <schwidefsky@xxxxxxxxxx> Cc: Arjan van de Ven <arjan@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- init/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff -puN init/main.c~lockdep-console_init-after-local_irq_enable init/main.c --- a/init/main.c~lockdep-console_init-after-local_irq_enable +++ a/init/main.c @@ -498,6 +498,10 @@ asmlinkage void __init start_kernel(void softirq_init(); timekeeping_init(); time_init(); + profile_init(); + if (!irqs_disabled()) + printk("start_kernel(): bug: interrupts were enabled early\n"); + local_irq_enable(); /* * HACK ALERT! This is early. We're enabling the console before @@ -507,10 +511,6 @@ asmlinkage void __init start_kernel(void console_init(); if (panic_later) panic(panic_later, panic_param); - profile_init(); - if (!irqs_disabled()) - printk("start_kernel(): bug: interrupts were enabled early\n"); - local_irq_enable(); #ifdef CONFIG_BLK_DEV_INITRD if (initrd_start && !initrd_below_start_ok && initrd_start < min_low_pfn << PAGE_SHIFT) { _ Patches currently in -mm which might be from heiko.carstens@xxxxxxxxxx are origin.patch zfcp-fix-incorrect-usage-of-erp_lock.patch zfcp-fix-incorrect-usage-of-fsf_req_list_lock.patch git-klibc.patch s390-move-var-declarations-behind-ifdef.patch fix-oddball-boolean-logic-in-s390-netiucv.patch s390-broken-null-test-in-claw-driver.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