summaryrefslogtreecommitdiff
path: root/kernel/power/suspend.c
diff options
context:
space:
mode:
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>2024-01-29 19:11:57 +0300
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2024-02-05 16:25:56 +0300
commitb730bab0b9c4204d7dda3f5bc8adf4292497fc39 (patch)
tree369f2c1cfe5641f6bd250d45cdcc7662202bd17b /kernel/power/suspend.c
parentbc88528cda2eddc3e5ea304fc3f147f1b4186aa4 (diff)
downloadlinux-b730bab0b9c4204d7dda3f5bc8adf4292497fc39.tar.xz
PM: sleep: stats: Use an array of step failure counters
Instead of using a set of individual struct suspend_stats fields representing suspend step failure counters, use an array of counters indexed by enum suspend_stat_step for this purpose, which allows dpm_save_failed_step() to increment the appropriate counter automatically, so that its callers don't need to do that directly. It also allows suspend_stats_show() to carry out a loop over the counters array to print their values. Because the counters cannot become negative, use unsigned int for representing them. The only user-observable impact of this change is a different ordering of entries in the suspend_stats debugfs file which is not expected to matter. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Reviewed-by: Stanislaw Gruszka <stanislaw.gruszka@linux.intel.com> Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'kernel/power/suspend.c')
-rw-r--r--kernel/power/suspend.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/power/suspend.c b/kernel/power/suspend.c
index fa3bf161d13f..07bde5bba49e 100644
--- a/kernel/power/suspend.c
+++ b/kernel/power/suspend.c
@@ -367,7 +367,6 @@ static int suspend_prepare(suspend_state_t state)
if (!error)
return 0;
- suspend_stats.failed_freeze++;
dpm_save_failed_step(SUSPEND_FREEZE);
pm_notifier_call_chain(PM_POST_SUSPEND);
Restore: