From: Yu Watanabe Date: Wed, 12 Feb 2025 00:22:49 +0000 (+0900) Subject: udev-watch: mention that the failure is ignored X-Git-Tag: v258-rc1~1357^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a52aad3b4bb735a22ce67110142d135819589a87;p=thirdparty%2Fsystemd.git udev-watch: mention that the failure is ignored --- diff --git a/src/udev/udev-watch.c b/src/udev/udev-watch.c index 1b8e2b8dbd4..9bd34af858f 100644 --- a/src/udev/udev-watch.c +++ b/src/udev/udev-watch.c @@ -167,7 +167,7 @@ finalize: /* 5. remove symlink ID -> wd. * The file is always owned by the device. Hence, it is safe to remove it unconditionally. */ if (unlinkat(dirfd, id, 0) < 0 && errno != ENOENT) - log_device_debug_errno(dev, errno, "Failed to remove '/run/udev/watch/%s': %m", id); + log_device_debug_errno(dev, errno, "Failed to remove '/run/udev/watch/%s', ignoring: %m", id); return r; }