if (inotify_fd < 0 || major(udev_device_get_devnum(dev)) == 0)
return;
+ info(udev, "adding watch on '%s'\n", udev_device_get_devnode(dev));
wd = inotify_add_watch(inotify_fd, udev_device_get_devnode(dev), IN_CLOSE_WRITE);
if (wd < 0) {
err(udev, "inotify_add_watch(%d, %s, %o) failed: %m\n",
/* apply/restore inotify watch */
if (err == 0 && event->inotify_watch &&
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);
info(event->udev, "seq %llu exit with %i\n", udev_device_get_seqnum(event->dev), err);