mirror of
https://github.com/systemd/systemd.git
synced 2025-01-13 17:18:18 +03:00
core: delay persistent timers by "RandomizedDelaySec=" at boot.
Fixes #5659. Currently, if Persistent=true and the machine is off at the scheduled time of the timer unit, the timer will be triggered immediately at the next boot even if RandomizedDelaySec= is specified. As a result, if multiple timers meet that condition, they will be triggered at the same time and too much CPU/IO work makes boot slow down. With this commit, if the scheduled time of the persistent timer has already elapsed at boot, set the time when systemd first started as the scheduled time and RandomizedDelaySec= is applied to it.
This commit is contained in:
parent
8605a4b9eb
commit
a87c1d3a97
@ -380,6 +380,13 @@ static void timer_enter_waiting(Timer *t, bool time_change) {
|
||||
if (r < 0)
|
||||
continue;
|
||||
|
||||
/* To make the delay due to RandomizedDelaySec= work even at boot,
|
||||
* if the scheduled time has already passed, set the time when systemd
|
||||
* first started as the scheduled time.
|
||||
* Also, we don't have to check t->persistent since the logic implicitly express true. */
|
||||
if (v->next_elapse < UNIT(t)->manager->timestamps[MANAGER_TIMESTAMP_USERSPACE].realtime)
|
||||
v->next_elapse = UNIT(t)->manager->timestamps[MANAGER_TIMESTAMP_USERSPACE].realtime;
|
||||
|
||||
if (!found_realtime)
|
||||
t->next_elapse_realtime = v->next_elapse;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user