public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ACPI/Sleep: pm_power_off need more sanity check to be installed
@ 2014-02-26  2:46 Li, Aubrey
  2014-02-26 23:50 ` Rafael J. Wysocki
  0 siblings, 1 reply; 7+ messages in thread
From: Li, Aubrey @ 2014-02-26  2:46 UTC (permalink / raw)
  To: linux-kernel, linux-acpi, Len.Brown, rjw, alan@linux.intel.com,
	Raj, Ashok

Sleep control and status registers need santity check before ACPI
install acpi_power_off to pm_power_off hook. The checking code in
acpi_enter_sleep_state() is too late, we should not allow a not-working
pm_power_off function hooked.

Signed-off-by: Aubrey Li <aubrey.li@intel.com>
---
 drivers/acpi/sleep.c |    7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/drivers/acpi/sleep.c b/drivers/acpi/sleep.c
index b718806..0284d22 100644
--- a/drivers/acpi/sleep.c
+++ b/drivers/acpi/sleep.c
@@ -809,8 +809,11 @@ int __init acpi_sleep_init(void)
 	status = acpi_get_sleep_type_data(ACPI_STATE_S5, &type_a, &type_b);
 	if (ACPI_SUCCESS(status)) {
 		sleep_states[ACPI_STATE_S5] = 1;
-		pm_power_off_prepare = acpi_power_off_prepare;
-		pm_power_off = acpi_power_off;
+		if (acpi_gbl_FADT.sleep_control.address &&
+			acpi_gbl_FADT.sleep_status.address) {
+			pm_power_off_prepare = acpi_power_off_prepare;
+			pm_power_off = acpi_power_off;
+		}
 	}

 	supported[0] = 0;
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2014-03-02 23:23 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-26  2:46 [PATCH] ACPI/Sleep: pm_power_off need more sanity check to be installed Li, Aubrey
2014-02-26 23:50 ` Rafael J. Wysocki
2014-02-28  5:33   ` Li, Aubrey
2014-02-28 22:24     ` Li, Aubrey
2014-03-02  0:39       ` Rafael J. Wysocki
2014-03-02  0:53         ` Li, Aubrey
2014-03-02 23:38           ` Rafael J. Wysocki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox