summaryrefslogtreecommitdiff
path: root/udev/udevd.c
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2009-02-24 15:11:17 +0100
committerKay Sievers <kay.sievers@vrfy.org>2009-02-24 15:11:17 +0100
commit3d3a0a709a38805259fe07240c3ca47a120dd5d6 (patch)
tree3f31488e3123c532cce1dd212be265854c1c1744 /udev/udevd.c
parentd5d04d4f9f75b5c5318bf2aa3bc10719d9a2e3bc (diff)
use the event udev_device to disable the watch on "remove"
Diffstat (limited to 'udev/udevd.c')
-rw-r--r--udev/udevd.c16
1 files changed, 3 insertions, 13 deletions
diff --git a/udev/udevd.c b/udev/udevd.c
index cfc091b699..ee3d6f5033 100644
--- a/udev/udevd.c
+++ b/udev/udevd.c
@@ -215,17 +215,6 @@ 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) {
- struct udev_device *dev_old;
-
- dev_old = udev_device_new_from_syspath(event->udev, udev_device_get_syspath(event->dev));
- if (dev_old != NULL) {
- udev_watch_end(event->udev, dev_old);
- udev_device_unref(dev_old);
- }
- }
-
/* apply rules, create node, symlinks */
err = udev_event_execute_rules(event, rules);
@@ -238,9 +227,10 @@ static void event_fork(struct udev_event *event)
udev_event_execute_run(event);
/* apply/restore inotify watch */
- if (err == 0 && event->inotify_watch &&
- strcmp(udev_device_get_action(event->dev), "remove") != 0)
+ if (err == 0 && event->inotify_watch) {
udev_watch_begin(event->udev, event->dev);
+ udev_device_update_db(event->dev);
+ }
info(event->udev, "seq %llu exit with %i\n", udev_device_get_seqnum(event->dev), err);
logging_close();