The patch titled fix "ACPI: Processor native C-states using MWAIT" has been removed from the -mm tree. Its filename was fix-acpi-processor-native-c-states-using-mwait.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: fix "ACPI: Processor native C-states using MWAIT" From: "Darrick J. Wong" <djwong@xxxxxxxxxx> This patch breaks C-state discovery on my IBM IntelliStation Z30 because the return value of acpi_processor_get_power_info_fadt is not assigned to "result" in the case that acpi_processor_get_power_info_cst returns -ENODEV. Thus, if ACPI provides C-state data via the FADT and not _CST (as is the case on this machine), we incorrectly exit the function with -ENODEV after reading the FADT. The attached patch sets the value of result so that we don't exit early. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> Acked-by: "Pallipadi, Venkatesh" <venkatesh.pallipadi@xxxxxxxxx> Acked-by: "Brown, Len" <len.brown@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/acpi/processor_idle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/acpi/processor_idle.c~fix-acpi-processor-native-c-states-using-mwait drivers/acpi/processor_idle.c --- a/drivers/acpi/processor_idle.c~fix-acpi-processor-native-c-states-using-mwait +++ a/drivers/acpi/processor_idle.c @@ -962,7 +962,7 @@ static int acpi_processor_get_power_info result = acpi_processor_get_power_info_cst(pr); if (result == -ENODEV) - acpi_processor_get_power_info_fadt(pr); + result = acpi_processor_get_power_info_fadt(pr); if (result) return result; _ Patches currently in -mm which might be from djwong@xxxxxxxxxx are origin.patch aic94xx-sata-tag-mask-not-set-correctly.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