The patch titled lockdep-spin_lock_irqsave_nested-fix has been removed from the -mm tree. Its filename was lockdep-spin_lock_irqsave_nested-fix.patch This patch was dropped because it was folded into lockdep-spin_lock_irqsave_nested.patch ------------------------------------------------------ Subject: lockdep-spin_lock_irqsave_nested-fix From: Andrew Morton <akpm@xxxxxxxx> Make it compile... Cc: Arjan van de Ven <arjan@xxxxxxxxxxxxxxx> Cc: Jiri Kosina <jikos@xxxxxxxx> Cc: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/spinlock.h | 3 +++ 1 file changed, 3 insertions(+) diff -puN include/linux/spinlock.h~lockdep-spin_lock_irqsave_nested-fix include/linux/spinlock.h --- a/include/linux/spinlock.h~lockdep-spin_lock_irqsave_nested-fix +++ a/include/linux/spinlock.h @@ -230,6 +230,9 @@ do { \ BUILD_CHECK_IRQ_FLAGS(flags); \ _write_lock_irqsave(lock, flags); \ } while (0) +#define spin_lock_irqsave_nested(lock, flags, subclass) \ + spin_lock_irqsave(lock, flags) + #endif #define spin_lock_irq(lock) _spin_lock_irq(lock) _ Patches currently in -mm which might be from akpm@xxxxxxxx are origin.patch rtc-framework-handles-periodic-irqs.patch lockdep-spin_lock_irqsave_nested.patch lockdep-spin_lock_irqsave_nested-fix.patch lockdep-spin_lock_irqsave_nested-fix-2.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