This is a note to let you know that I've just added the patch titled sparc64: Fix lockdep warnings on reboot on Ultra-5 to the 3.17-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: sparc64-fix-lockdep-warnings-on-reboot-on-ultra-5.patch and it can be found in the queue-3.17 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From foo@baz Tue Oct 28 11:21:06 CST 2014 From: "David S. Miller" <davem@xxxxxxxxxxxxx> Date: Fri, 10 Oct 2014 15:49:16 -0400 Subject: sparc64: Fix lockdep warnings on reboot on Ultra-5 From: "David S. Miller" <davem@xxxxxxxxxxxxx> [ Upstream commit bdcf81b658ebc4c2640c3c2c55c8b31c601b6996 ] Inconsistently, the raw_* IRQ routines do not interact with and update the irqflags tracing and lockdep state, whereas the raw_* spinlock interfaces do. This causes problems in p1275_cmd_direct() because we disable hardirqs by hand using raw_local_irq_restore() and then do a raw_spin_lock() which triggers a lockdep trace because the CPU's hw IRQ state doesn't match IRQ tracing's internal software copy of that state. The CPU's irqs are disabled, yet current->hardirqs_enabled is true. ==================== reboot: Restarting system ------------[ cut here ]------------ WARNING: CPU: 0 PID: 1 at kernel/locking/lockdep.c:3536 check_flags+0x7c/0x240() DEBUG_LOCKS_WARN_ON(current->hardirqs_enabled) Modules linked in: openpromfs CPU: 0 PID: 1 Comm: systemd-shutdow Tainted: G W 3.17.0-dirty #145 Call Trace: [000000000045919c] warn_slowpath_common+0x5c/0xa0 [0000000000459210] warn_slowpath_fmt+0x30/0x40 [000000000048f41c] check_flags+0x7c/0x240 [0000000000493280] lock_acquire+0x20/0x1c0 [0000000000832b70] _raw_spin_lock+0x30/0x60 [000000000068f2fc] p1275_cmd_direct+0x1c/0x60 [000000000068ed28] prom_reboot+0x28/0x40 [000000000043610c] machine_restart+0x4c/0x80 [000000000047d2d4] kernel_restart+0x54/0x80 [000000000047d618] SyS_reboot+0x138/0x200 [00000000004060b4] linux_sparc_syscall32+0x34/0x60 ---[ end trace 5c439fe81c05a100 ]--- possible reason: unannotated irqs-off. irq event stamp: 2010267 hardirqs last enabled at (2010267): [<000000000049a358>] vprintk_emit+0x4b8/0x580 hardirqs last disabled at (2010266): [<0000000000499f08>] vprintk_emit+0x68/0x580 softirqs last enabled at (2010046): [<000000000045d278>] __do_softirq+0x378/0x4a0 softirqs last disabled at (2010039): [<000000000042bf08>] do_softirq_own_stack+0x28/0x40 Resetting ... ==================== Use local_* variables of the hw IRQ interfaces so that IRQ tracing sees all of our changes. Reported-by: Meelis Roos <mroos@xxxxxxxx> Tested-by: Meelis Roos <mroos@xxxxxxxx> Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- arch/sparc/prom/p1275.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) --- a/arch/sparc/prom/p1275.c +++ b/arch/sparc/prom/p1275.c @@ -9,6 +9,7 @@ #include <linux/smp.h> #include <linux/string.h> #include <linux/spinlock.h> +#include <linux/irqflags.h> #include <asm/openprom.h> #include <asm/oplib.h> @@ -36,8 +37,8 @@ void p1275_cmd_direct(unsigned long *arg { unsigned long flags; - raw_local_save_flags(flags); - raw_local_irq_restore((unsigned long)PIL_NMI); + local_save_flags(flags); + local_irq_restore((unsigned long)PIL_NMI); raw_spin_lock(&prom_entry_lock); prom_world(1); @@ -45,7 +46,7 @@ void p1275_cmd_direct(unsigned long *arg prom_world(0); raw_spin_unlock(&prom_entry_lock); - raw_local_irq_restore(flags); + local_irq_restore(flags); } void prom_cif_init(void *cif_handler, void *cif_stack) Patches currently in stable-queue which might be from davem@xxxxxxxxxxxxx are queue-3.17/sparc64-adjust-vmalloc-region-size-based-upon-available-virtual-address-bits.patch queue-3.17/sparc64-fix-fpu-register-corruption-with-aes-crypto-offload.patch queue-3.17/sparc64-move-request_irq-from-ldc_bind-to-ldc_alloc.patch queue-3.17/sparc32-dma_alloc_coherent-must-honour-gfp-flags.patch queue-3.17/sparc64-kill-unnecessary-tables-and-increase-max_banks.patch queue-3.17/sparc-let-memset-return-the-address-argument.patch queue-3.17/sparc64-use-kernel-page-tables-for-vmemmap.patch queue-3.17/sparc64-sparse-irq.patch queue-3.17/sparc64-fix-physical-memory-management-regressions-with-large-max_phys_bits.patch queue-3.17/sparc64-fix-lockdep-warnings-on-reboot-on-ultra-5.patch queue-3.17/sparc64-switch-to-4-level-page-tables.patch queue-3.17/sparc64-sun4v-tlb-error-power-off-events.patch queue-3.17/sparc64-increase-size-of-boot-string-to-1024-bytes.patch queue-3.17/sparc64-find_node-adjustment.patch queue-3.17/sparc64-fix-reversed-start-end-in-flush_tlb_kernel_range.patch queue-3.17/sparc64-increase-max_phys_address_bits-to-53.patch queue-3.17/sparc64-define-va-hole-at-run-time-rather-than-at-compile-time.patch queue-3.17/sparc64-fix-register-corruption-in-top-most-kernel-stack-frame-during-boot.patch queue-3.17/sparc64-support-m6-and-m7-for-building-cpu-distribution-map.patch queue-3.17/sparc64-cpu-hardware-caps-support-for-sparc-m6-and-m7.patch queue-3.17/sparc64-do-not-define-thread-fpregs-save-area-as-zero-length-array.patch queue-3.17/sparc64-t5-pmu.patch queue-3.17/sparc64-adjust-ktsb-assembler-to-support-larger-physical-addresses.patch queue-3.17/sparc64-implement-__get_user_pages_fast.patch queue-3.17/sparc64-fix-corrupted-thread-fault-code.patch queue-3.17/sparc64-fix-hibernation-code-refrence-to-page_offset.patch queue-3.17/sparc64-correctly-recognise-m6-and-m7-cpu-type.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html