The patch titled lockdep-show-held-locks-when-showing-a-stackdump fix has been removed from the -mm tree. Its filename was lockdep-show-held-locks-when-showing-a-stackdump-fix.patch This patch was dropped because it was folded into lockdep-show-held-locks-when-showing-a-stackdump.patch ------------------------------------------------------ Subject: lockdep-show-held-locks-when-showing-a-stackdump fix From: Ingo Molnar <mingo@xxxxxxx> on x86_64 this also needs the patch below - NULL means 'current'. Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- kernel/lockdep.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff -puN kernel/lockdep.c~lockdep-show-held-locks-when-showing-a-stackdump-fix kernel/lockdep.c --- a/kernel/lockdep.c~lockdep-show-held-locks-when-showing-a-stackdump-fix +++ a/kernel/lockdep.c @@ -422,7 +422,11 @@ static void print_lock(struct held_lock static void lockdep_print_held_locks(struct task_struct *curr) { - int i, depth = curr->lockdep_depth; + int i, depth; + + if (!curr) + curr = current; + depth = curr->lockdep_depth; if (!depth) { printk("no locks held by %s/%d.\n", curr->comm, curr->pid); _ Patches currently in -mm which might be from mingo@xxxxxxx are origin.patch scheduled-removal-of-sa_xxx-interrupt-flags-fixups-3.patch bugfix-dont-use-the-tsc-in-sched_clock-if-unstable.patch cleanup-unify-tsc_unstable-and-tsc_disable.patch possible-bugfix-make-dmi_mark_tsc_unstable-call-mark_tsc_unstable.patch scheduled-removal-of-sa_xxx-interrupt-flags-fixups-4.patch scheduled-removal-of-sa_xxx-interrupt-flags-fixups-5.patch revert-x86_64-mm-change-sysenter_setup-to-__cpuinit-improve-__init-__initdata.patch x86_64-do-not-enable-the-nmi-watchdog-by-default.patch spin_lock_irq-enable-interrupts-while-spinning-preparatory-patch.patch spin_lock_irq-enable-interrupts-while-spinning-x86_64-implementation.patch spin_lock_irq-enable-interrupts-while-spinning-i386-implementation.patch log-reason-why-tsc-was-marked-unstable.patch cpuset-remove-sched-domain-hooks-from-cpusets.patch simplify-the-stacktrace-code.patch freezer-task-exit_state-should-be-treated-as-bolean.patch softlockup-trivial-s-99-max_rt_prio.patch optimize-timespec_trunc.patch schedule_on_each_cpu-use-preempt_disable.patch workqueue-kill-run_scheduled_work.patch workqueue-dont-save-interrupts-in-run_workqueue.patch workqueue-make-cancel_rearming_delayed_workqueue-work-on-idle-dwork.patch workqueue-introduce-cpu_singlethread_map.patch workqueue-introduce-workqueue_struct-singlethread.patch workqueue-make-init_workqueues-__init.patch aio-is-unlikely.patch sched-fix-idle-load-balancing-in-softirqd-context.patch sched-dynticks-idle-load-balancing-v3.patch speedup-divides-by-cpu_power-in-scheduler.patch sched-add-above-background-load-function.patch mm-implement-swap-prefetching.patch detect-atomic-counter-underflows.patch make-frame_pointer-default=y.patch mutex-subsystem-synchro-test-module.patch vdso-print-fatal-signals.patch vdso-improve-print_fatal_signals-support-by-adding-memory-maps.patch vdso-print-fatal-signals-use-ctl_unnumbered.patch lockdep-show-held-locks-when-showing-a-stackdump.patch lockdep-show-held-locks-when-showing-a-stackdump-fix.patch lockdep-show-held-locks-when-showing-a-stackdump-fix-2.patch kmap_atomic-debugging.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