diff options
| author | Samuel Zhang <guoqing.zhang@amd.com> | 2025-07-10 14:23:12 +0800 |
|---|---|---|
| committer | Mario Limonciello <mario.limonciello@amd.com> | 2025-07-10 10:49:45 -0500 |
| commit | c2aaddbd2deded9d3301f1bafed242a0f71baba8 (patch) | |
| tree | 78d89591df1dffc4c7eb50afb68c81f02afc8043 /drivers/base | |
| parent | PM: hibernate: shrink shmem pages after dev_pm_ops.prepare() (diff) | |
| download | linux-c2aaddbd2deded9d3301f1bafed242a0f71baba8.tar.gz linux-c2aaddbd2deded9d3301f1bafed242a0f71baba8.zip | |
PM: hibernate: add new api pm_hibernate_is_recovering()
dev_pm_ops.thaw() is called in following cases:
* normal case: after hibernation image has been created.
* error case 1: creation of a hibernation image has failed.
* error case 2: restoration from a hibernation image has failed.
For normal case, it is called mainly for resume storage devices for
saving the hibernation image. Other devices that are not involved
in the image saving do not need to resume the device. But since there's
no api to know which case thaw() is called, device drivers can't
conditionally resume device in thaw().
The new pm_hibernate_is_recovering() is such a api to query if thaw() is
called in normal case.
Signed-off-by: Samuel Zhang <guoqing.zhang@amd.com>
Acked-by: Rafael J. Wysocki <rafael@kernel.org>
Link: https://lore.kernel.org/r/20250710062313.3226149-5-guoqing.zhang@amd.com
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
Diffstat (limited to 'drivers/base')
| -rw-r--r-- | drivers/base/power/main.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/base/power/main.c b/drivers/base/power/main.c index eebe699fdf4f..63f3a48f434c 100644 --- a/drivers/base/power/main.c +++ b/drivers/base/power/main.c @@ -66,6 +66,20 @@ static pm_message_t pm_transition; static DEFINE_MUTEX(async_wip_mtx); static int async_error; +/** + * pm_hibernate_is_recovering - if recovering from hibernate due to error. + * + * Used to query if dev_pm_ops.thaw() is called for normal hibernation case or + * recovering from some error. + * + * Return: true for error case, false for normal case. + */ +bool pm_hibernate_is_recovering(void) +{ + return pm_transition.event == PM_EVENT_RECOVER; +} +EXPORT_SYMBOL_GPL(pm_hibernate_is_recovering); + static const char *pm_verb(int event) { switch (event) { |
