bus-unit-util: extend the bus call timeout for UnitFreezer

Follow-up for 1d617b35fe.
Should fix https://github.com/systemd/systemd/issues/33269.

From the logs in the bug:
Jun 10 22:55:37 systemd-logind[909]: The system will suspend now!
Jun 10 22:55:37 ModemManager[996]: <msg> [sleep-monitor-systemd] system is about to suspend
...
Jun 10 22:55:48 systemd-sleep[422408]: Failed to freeze unit 'user.slice': Connection timed out
Jun 10 22:55:48 systemd-sleep[422408]: Performing sleep operation 'suspend'...

The delay is ~11 s, consistent with the patch that set the timeout to 10 s.
Looks like this is not enough. It's the freeze operation that fails, but
thawing might be slow too, so just bump the timeout again.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2024-06-11 12:19:39 +02:00 committed by Luca Boccassi
parent 7efaab482a
commit 835fbe5f75

View file

@ -2945,8 +2945,8 @@ typedef struct UnitFreezer {
sd_bus *bus;
} UnitFreezer;
/* Wait for 10 seconds at maximum for freezer operation */
#define FREEZE_BUS_CALL_TIMEOUT (10 * USEC_PER_SEC)
/* Wait for 60 seconds at maximum for freezer operation */
#define FREEZE_BUS_CALL_TIMEOUT (60 * USEC_PER_SEC)
UnitFreezer* unit_freezer_free(UnitFreezer *f) {
if (!f)