valeriyvdovin / rpms / systemd

Forked from rpms/systemd 3 years ago
Clone
923a60
From 5386dfa655da623cbd5ab1be6c9c66ad866fc17a Mon Sep 17 00:00:00 2001
923a60
From: Lennart Poettering <lennart@poettering.net>
923a60
Date: Thu, 12 Nov 2015 12:33:10 +0100
923a60
Subject: [PATCH] journald: fix accuracy of watchdog timer event
923a60
923a60
Adding 3/4th of the watchdog frequency as accuracy on top of 1/2 of the
923a60
watchdog frequency means we might end up at 5/4th of the frequency which
923a60
means we might miss the message from time to time.
923a60
923a60
Maybe fixes #1804
923a60
923a60
(cherry picked from commit 4de2402b603ea2f518f451d06f09e15aeae54fab)
923a60
923a60
Related: #1511565
923a60
---
923a60
 src/journal/journald-server.c | 2 +-
923a60
 1 file changed, 1 insertion(+), 1 deletion(-)
923a60
923a60
diff --git a/src/journal/journald-server.c b/src/journal/journald-server.c
923a60
index 6e7568b60b..7c69061f47 100644
923a60
--- a/src/journal/journald-server.c
923a60
+++ b/src/journal/journald-server.c
923a60
@@ -1716,7 +1716,7 @@ static int server_connect_notify(Server *s) {
923a60
         if (sd_watchdog_enabled(false, &s->watchdog_usec) > 0) {
923a60
                 s->send_watchdog = true;
923a60
 
923a60
-                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);
923a60
+                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);
923a60
                 if (r < 0)
923a60
                         return log_error_errno(r, "Failed to add watchdog time event: %m");
923a60
         }