From: Scott James Remnant Date: Mon, 23 Feb 2009 17:19:05 +0000 (+0000) Subject: Clear existing inotify watch before processing. X-Git-Tag: 174~1162 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=521b3a9211b4e2d98bf7ae61c3844a42dde773e2 Clear existing inotify watch before processing. Likewise when re-processing an event, we want to drop the existing inotify watch first to avoid side-effects. --- diff --git a/udev/udevd.c b/udev/udevd.c index e4fa2b63e..50205f1e4 100644 --- a/udev/udevd.c +++ b/udev/udevd.c @@ -215,6 +215,11 @@ static void event_fork(struct udev_event *event) /* set timeout to prevent hanging processes */ alarm(UDEV_EVENT_TIMEOUT); + /* clear any existing udev watch on the node */ + if (inotify_fd != -1 && + major(udev_device_get_devnum(event->dev)) != 0) + udev_watch_clear(event->udev, event->dev); + /* apply rules, create node, symlinks */ err = udev_event_execute_rules(event, rules); @@ -229,12 +234,9 @@ static void event_fork(struct udev_event *event) /* apply/restore inotify watch */ if (err == 0 && event->inotify_watch && inotify_fd != -1 && major(udev_device_get_devnum(event->dev)) != 0 && - strcmp(udev_device_get_action(event->dev), "remove") != 0) { + strcmp(udev_device_get_action(event->dev), "remove") != 0) info(event->udev, "device will be watched for changes\n"); udev_watch_begin(event->udev, event->dev); - } else { - udev_watch_clear(event->udev, event->dev); - } info(event->udev, "seq %llu exit with %i\n", udev_device_get_seqnum(event->dev), err); logging_close();