The patch titled srcu-report-out-of-memory-errors-fixlet has been removed from the -mm tree. Its filename is srcu-report-out-of-memory-errors-fixlet.patch This patch was dropped because it was folded into srcu-report-out-of-memory-errors.patch ------------------------------------------------------ Subject: srcu-report-out-of-memory-errors-fixlet From: Andrew Morton <akpm@xxxxxxxx> statements-with-side-effects inside debug macros are a bit worrisome. Cc: Alan Stern <stern@xxxxxxxxxxxxxxxxxxx> Cc: Paul E. McKenney <paulmck@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- kernel/sys.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN kernel/sys.c~srcu-report-out-of-memory-errors-fixlet kernel/sys.c --- a/kernel/sys.c~srcu-report-out-of-memory-errors-fixlet +++ a/kernel/sys.c @@ -517,7 +517,8 @@ EXPORT_SYMBOL_GPL(srcu_notifier_call_cha void srcu_init_notifier_head(struct srcu_notifier_head *nh) { mutex_init(&nh->mutex); - BUG_ON(init_srcu_struct(&nh->srcu) < 0); + if (init_srcu_struct(&nh->srcu) < 0) + BUG(); nh->head = NULL; } _ Patches currently in -mm which might be from akpm@xxxxxxxx are origin.patch hdrcheck-permission-fix.patch mmc-driver-for-ti-flashmedia-card-reader-source.patch ecryptfs.patch fbdev-riva-warning-fix.patch genirq-convert-the-i386-architecture-to-irq-chips.patch genirq-x86_64-irq-reenable-migrating-irqs-to-other-cpus.patch genirq-msi-simplify-msi-enable-and-disable.patch genirq-ia64-irq-dynamic-irq-support.patch genirq-msi-only-build-msi-apicc-on-ia64.patch genirq-i386-irq-remove-the-msi-assumption-that-irq-==-vector.patch genirq-x86_64-irq-make-vector_irq-per-cpu.patch add-hypertransport-capability-defines.patch initial-generic-hypertransport-interrupt-support.patch srcu-report-out-of-memory-errors.patch srcu-report-out-of-memory-errors-fixlet.patch git-powerpc-wrapper-dont-require-execute-permissions.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