The patch titled acpi: add acpi_osi_dmi_table evaluation procedure for ia64 machines has been added to the -mm tree. Its filename is acpi-add-acpi_osi_dmi_table-evaluation-procedure-for-ia64-machines.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: acpi: add acpi_osi_dmi_table evaluation procedure for ia64 machines From: Taku Izumi <izumi.taku@xxxxxxxxxxxxxx> Currently, acpi_osi_dmi_table is valid only for x86 machines. This patch makes its table valid for ia64 machines too and adds evaluation procedure for the purpose of checking if OSI(Linux) should be enabled or not. Signed-off-by: Taku Izumi <izumi.taku@xxxxxxxxxxxxxx> Cc: Len Brown <lenb@xxxxxxxxxx> Cc: "Luck, Tony" <tony.luck@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/ia64/kernel/setup.c | 7 +++++++ drivers/acpi/Makefile | 1 + 2 files changed, 8 insertions(+) diff -puN arch/ia64/kernel/setup.c~acpi-add-acpi_osi_dmi_table-evaluation-procedure-for-ia64-machines arch/ia64/kernel/setup.c --- a/arch/ia64/kernel/setup.c~acpi-add-acpi_osi_dmi_table-evaluation-procedure-for-ia64-machines +++ a/arch/ia64/kernel/setup.c @@ -1041,3 +1041,10 @@ static int __init run_dmi_scan(void) return 0; } core_initcall(run_dmi_scan); + +static int __init invoke_acpi_blacklisted(void) +{ + acpi_blacklisted(); + return 0; +} +postcore_initcall(invoke_acpi_blacklisted); diff -puN drivers/acpi/Makefile~acpi-add-acpi_osi_dmi_table-evaluation-procedure-for-ia64-machines drivers/acpi/Makefile --- a/drivers/acpi/Makefile~acpi-add-acpi_osi_dmi_table-evaluation-procedure-for-ia64-machines +++ a/drivers/acpi/Makefile @@ -17,6 +17,7 @@ EXTRA_CFLAGS += $(ACPI_CFLAGS) # obj-y += tables.o obj-$(CONFIG_X86) += blacklist.o +obj-$(CONFIG_IA64) += blacklist.o # # ACPI Core Subsystem (Interpreter) _ Patches currently in -mm which might be from izumi.taku@xxxxxxxxxxxxxx are acpi-add-acpi_osi_dmi_table-evaluation-procedure-for-ia64-machines.patch acpi-add-dmi-info-to-enable-osilinux-on-primequest.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