From: Lennart Poettering Date: Thu, 12 Nov 2015 11:33:10 +0000 (+0100) Subject: journald: fix accuracy of watchdog timer event X-Git-Tag: v228~45^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4de2402b603ea2f518f451d06f09e15aeae54fab;p=thirdparty%2Fsystemd.git journald: fix accuracy of watchdog timer event Adding 3/4th of the watchdog frequency as accuracy on top of 1/2 of the watchdog frequency means we might end up at 5/4th of the frequency which means we might miss the message from time to time. Maybe fixes #1804 --- diff --git a/src/journal/journald-server.c b/src/journal/journald-server.c index 762b8101094..be913d26ef4 100644 --- a/src/journal/journald-server.c +++ b/src/journal/journald-server.c @@ -1670,7 +1670,7 @@ static int server_connect_notify(Server *s) { if (sd_watchdog_enabled(false, &s->watchdog_usec) > 0) { s->send_watchdog = true; - r = sd_event_add_time(s->event, &s->watchdog_event_source, CLOCK_MONOTONIC, now(CLOCK_MONOTONIC) + s->watchdog_usec/2, s->watchdog_usec*3/4, dispatch_watchdog, s); + r = sd_event_add_time(s->event, &s->watchdog_event_source, CLOCK_MONOTONIC, now(CLOCK_MONOTONIC) + s->watchdog_usec/2, s->watchdog_usec/4, dispatch_watchdog, s); if (r < 0) return log_error_errno(r, "Failed to add watchdog time event: %m"); }