The patch titled git-acpi: Early ACPI lockup has been removed from the -mm tree. Its filename was git-acpi-early-acpi-lockup.patch This patch was dropped because it is obsolete ------------------------------------------------------ Subject: git-acpi: Early ACPI lockup From: Frederik Deweerdt <deweerdt@xxxxxxx> The git-acpi.patch replaces earlier "if(!handler) return -EINVAL" by "BUG_ON(!handler)". This locks my machine early at boot with a message along the lines of (It's hand copied): Int 6: cr2: 00000000 eip: c0570e05 flags: 00010046 cs: 60 stack: c054ffac c011db2b c04936d0 c054ff68 c054ffc0 c054fff4 c057da2c Reverting the change as follows, allows booting: Cc: Len Brown <lenb@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/acpi/tables.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff -puN drivers/acpi/tables.c~git-acpi-early-acpi-lockup drivers/acpi/tables.c --- a/drivers/acpi/tables.c~git-acpi-early-acpi-lockup +++ a/drivers/acpi/tables.c @@ -338,7 +338,9 @@ acpi_table_parse_entries(enum acpi_table unsigned int i; unsigned int index = 0; - BUG_ON(!handler); + if (!handler) + return -EINVAL; + /*BUG_ON(!handler);*/ for (i = 0; i < sdt_count; i++) { if (sdt_entry[i].id != id) _ Patches currently in -mm which might be from deweerdt@xxxxxxx are git-acpi-early-acpi-lockup.patch remove-tcp-header-from-tcp_v4_check-take-2.patch disable-init-initramfsc-updated-fix.patch user-ns-prepare-copy_tree-copy_mnt-and-their-callers-to-handle-errs-fix.patch user-ns-implement-user-ns-unshare.patch reiser4-sb_sync_inodes-fix.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