The patch titled ACPI: fix acpi_osi=!Linux has been added to the -mm tree. Its filename is acpi-fix-acpi_osi=linux.patch *** 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 ------------------------------------------------------ Subject: ACPI: fix acpi_osi=!Linux From: Len Brown <lenb@xxxxxxxxxx> Need to check for special case "acpi_osi=!Linux" before general case "acpi_osi=!*", or it will have no effect. Signed-off-by: Len Brown <len.brown@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/acpi/osl.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/acpi/osl.c~acpi-fix-acpi_osi=linux drivers/acpi/osl.c --- a/drivers/acpi/osl.c~acpi-fix-acpi_osi=linux +++ a/drivers/acpi/osl.c @@ -993,11 +993,11 @@ static int __init acpi_osi_setup(char *s if (str == NULL || *str == '\0') { printk(KERN_INFO PREFIX "_OSI method disabled\n"); acpi_gbl_create_osi_method = FALSE; + } else if (!strcmp("!Linux", str)) { + enable_osi_linux(0); } else if (*str == '!') { if (acpi_osi_invalidate(++str) == AE_OK) printk(KERN_INFO PREFIX "Deleted _OSI(%s)\n", str); - } else if (!strcmp("!Linux", str)) { - enable_osi_linux(0); } else if (!strcmp("Linux", str)) { enable_osi_linux(1); } else if (*osi_additional_string == '\0') { _ Patches currently in -mm which might be from lenb@xxxxxxxxxx are acpi-fix-acpi_osi=linux.patch git-acpi-ia64-build-fix.patch git-acpi-tickh-needs-hrtimerh.patch exit-acpi-processor-module-gracefully-if-acpi-is-disabled.patch acpi-video-dont-export-sysfs-backlight-interface-if-query-_bcl-fail.patch use-menuconfig-objects-acpi.patch acpi-do-not-attempt-to-run-s1-standby-workarounds-while-hibernating.patch make-drivers-acpi-oslcosi_linux-static.patch drivers-acpi-processor_throttlingc-make-2-functions.patch drivers-cpuidle-governors-menuc-make-a-struct-static.patch fix-empty-macros-in-acpi.patch acpi-enable-c3-power-state-on-dell-inspiron-8200.patch git-battery-vs-git-acpi.patch revert-acpi-change-for-scsi.patch restore-acpi-change-for-scsi.patch x86_64-acpi-disable-srat-when-numa-emulation-succeeds.patch x86_64-acpi-disable-srat-when-numa-emulation-succeeds-fix.patch x86_64-slit-fake-pxm-to-node-mapping-for-fake-numa-2.patch mmconfig-validate-against-acpi-motherboard-resources-fix-2-3.patch nohz-fix-nohz-x86-dyntick-idle-handling.patch acpi-move-timer-broadcast-and-pmtimer-access-before-c3-arbiter-shutdown.patch rtc-add-support-for-the-st-m48t59-rtc-vs-git-acpi.patch intel-iommu-dmar-detection-and-parsing-logic.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