const char *filename;
int wd;
- if (inotify_fd < 0)
+ if (inotify_fd < 0 || major(udev_device_get_devnum(dev)) == 0)
return;
wd = inotify_add_watch(inotify_fd, udev_device_get_devnode(dev), IN_CLOSE_WRITE);
DIR *dir;
struct dirent *ent;
+ if (inotify_fd < 0 || major(udev_device_get_devnum(dev)) == 0)
+ return;
+
util_strlcpy(filename, udev_get_dev_path(udev), sizeof(filename));
util_strlcat(filename, "/.udev/watch", sizeof(filename));
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);
+ udev_watch_clear(event->udev, event->dev);
/* apply rules, create node, symlinks */
err = udev_event_execute_rules(event, rules);
udev_event_execute_run(event);
/* apply/restore inotify watch */
- if (err == 0 && event->inotify_watch && inotify_fd != -1 &&
- major(udev_device_get_devnum(event->dev)) != 0 &&
+ 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);