[systemd-commits] src/udev
Harald Hoyer
harald at kemper.freedesktop.org
Tue May 20 03:52:45 PDT 2014
src/udev/udevadm-settle.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
New commits:
commit 83be2c398589a3d64db5999cfd5527c5219bff46
Author: Harald Hoyer <harald at redhat.com>
Date: Tue May 20 12:25:16 2014 +0200
udevadm-settle: fixed return code for empty queue
If the udev queue is empty and "/run/udev/queue" does not exist,
"udevadm settle" would return with EXIT_FAILURE, because the inotify on
"/run/udev/queue" would fail with ENOENT.
This patch lets "udevadm settle" exit with EXIT_SUCCESS in this case.
diff --git a/src/udev/udevadm-settle.c b/src/udev/udevadm-settle.c
index 65fc35f..66fd843 100644
--- a/src/udev/udevadm-settle.c
+++ b/src/udev/udevadm-settle.c
@@ -116,7 +116,11 @@ static int adm_settle(struct udev *udev, int argc, char *argv[])
}
if (inotify_add_watch(pfd[0].fd, "/run/udev/queue" , IN_DELETE) < 0) {
- log_debug("watching /run/udev failed");
+ /* If it does not exist, we don't have to wait */
+ if (errno == ENOENT)
+ rc = EXIT_SUCCESS;
+ else
+ log_debug("watching /run/udev/queue failed");
goto out;
}
More information about the systemd-commits
mailing list