[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20231122075908.160929-1-chris.feng@mediatek.com>
Date: Wed, 22 Nov 2023 15:59:08 +0800
From: Chris Feng <chris.feng@...iatek.com>
To: <rafael@...nel.org>, <pavel@....cz>, <len.brown@...el.com>
CC: <linux-pm@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
<stable@...nel.org>, <hua.yang@...iatek.com>,
<ting.wang@...iatek.com>, <liang.lu@...iatek.com>,
<chetan.kumar@...iatek.com>, Chris Feng <chris.feng@...iatek.com>
Subject: [PATCH v3] PM: hibernate: Avoid missing wakeup events during hibernation
Wakeup events that occur in the hibernation process's
hibernation_platform_enter() cannot wake up the system. Although the
current hibernation framework will execute part of the recovery process
after a wakeup event occurs, it ultimately performs a shutdown operation
because the system does not check the return value of
hibernation_platform_enter(). In short, if a wakeup event occurs before
putting the system into the final low-power state, it will be missed.
To solve this problem, check the return value of
hibernation_platform_enter(). When it returns -EAGAIN or -EBUSY (indicate
the occurrence of a wakeup event), execute the hibernation recovery
process, discard the previously saved image, and ultimately return to the
working state.
Signed-off-by: Chris Feng <chris.feng@...iatek.com>
---
[PATCH v2]:
- Execute the hibernation recovery process and return to the working state
when the return value of the function hibernation_platform_enter() is
-EAGAIN or -EBUSY. Both of the two values may indicate the occurrence of
a wakeup event.
[PATCH v3]:
- Use pr_info instead of pr_err, fix undeclared function 'swsusp_unmark'
build error, refine commit and printing message.
---
kernel/power/hibernate.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c
index 8d35b9f9aaa3..fb3b63e178b0 100644
--- a/kernel/power/hibernate.c
+++ b/kernel/power/hibernate.c
@@ -642,9 +642,9 @@ int hibernation_platform_enter(void)
*/
static void power_down(void)
{
-#ifdef CONFIG_SUSPEND
int error;
+#ifdef CONFIG_SUSPEND
if (hibernation_mode == HIBERNATION_SUSPEND) {
error = suspend_devices_and_enter(mem_sleep_current);
if (error) {
@@ -667,7 +667,15 @@ static void power_down(void)
kernel_restart(NULL);
break;
case HIBERNATION_PLATFORM:
- hibernation_platform_enter();
+ error = hibernation_platform_enter();
+ if (error == -EAGAIN || error == -EBUSY) {
+#ifdef CONFIG_SUSPEND
+ swsusp_unmark();
+#endif
+ events_check_enabled = false;
+ pr_info("Hibernation process aborted due to detected wakeup event.\n");
+ return;
+ }
fallthrough;
case HIBERNATION_SHUTDOWN:
if (kernel_can_power_off())
--
2.17.0
Powered by blists - more mailing lists