[systemd-commits] src/journal

Dave Reisner dreisner at kemper.freedesktop.org
Fri Feb 21 09:49:08 PST 2014


 src/journal/journald-server.c |   10 ++++++++++
 1 file changed, 10 insertions(+)

New commits:
commit 28def94cc8fd4394b20e2155d7130166662343c4
Author: Dave Reisner <dreisner at archlinux.org>
Date:   Fri Feb 21 10:31:26 2014 -0500

    journald: ignore failure to watch hostname_fd on older kernels
    
    Prior to 3.2, /proc/sys/kernel/hostname isn't a pollable file and
    sd_event_add_io will return EPERM. Ignore this failure, since it isn't
    critical to journald operation.
    
    Reported and tested by user sraue on IRC.

diff --git a/src/journal/journald-server.c b/src/journal/journald-server.c
index 5872e91..96ef66d 100644
--- a/src/journal/journald-server.c
+++ b/src/journal/journald-server.c
@@ -1430,6 +1430,16 @@ static int server_open_hostname(Server *s) {
 
         r = sd_event_add_io(s->event, &s->hostname_event_source, s->hostname_fd, 0, dispatch_hostname_change, s);
         if (r < 0) {
+                /* kernels prior to 3.2 don't support polling this file. Ignore
+                 * the failure. */
+                if (r == -EPERM) {
+                        log_warning("Failed to register hostname fd in event loop: %s. Ignoring.",
+                                        strerror(-r));
+                        close_nointr_nofail(s->hostname_fd);
+                        s->hostname_fd = -1;
+                        return 0;
+                }
+
                 log_error("Failed to register hostname fd in event loop: %s", strerror(-r));
                 return r;
         }



More information about the systemd-commits mailing list