mirror of
https://github.com/systemd/systemd.git
synced 2026-08-04 15:10:33 +00:00
sleep-config: check sleep mode only when hibernation
With the previous change, this should only be used when doing hibernation.
This commit is contained in:
@@ -309,15 +309,15 @@ static int sleep_supported_internal(
|
||||
return false;
|
||||
}
|
||||
|
||||
r = sleep_mode_supported(sleep_config->modes[operation]);
|
||||
if (r < 0)
|
||||
return r;
|
||||
if (r == 0) {
|
||||
*ret_support = SLEEP_STATE_OR_MODE_NOT_SUPPORTED;
|
||||
return false;
|
||||
}
|
||||
|
||||
if (IN_SET(operation, SLEEP_HIBERNATE, SLEEP_HYBRID_SLEEP)) {
|
||||
r = sleep_mode_supported(sleep_config->modes[operation]);
|
||||
if (r < 0)
|
||||
return r;
|
||||
if (r == 0) {
|
||||
*ret_support = SLEEP_STATE_OR_MODE_NOT_SUPPORTED;
|
||||
return false;
|
||||
}
|
||||
|
||||
r = hibernation_is_safe();
|
||||
if (r == -ENOTRECOVERABLE) {
|
||||
*ret_support = SLEEP_RESUME_NOT_SUPPORTED;
|
||||
@@ -329,7 +329,8 @@ static int sleep_supported_internal(
|
||||
}
|
||||
if (r < 0)
|
||||
return r;
|
||||
}
|
||||
} else
|
||||
assert(!sleep_config->modes[operation]);
|
||||
|
||||
*ret_support = SLEEP_SUPPORTED;
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user