udev: fix inotify handling

This partly reverts:

    commit 6d1b1e0bc6
    Author: Tom Gundersen <teg@jklm.no>
    Date:   Sun May 24 15:10:04 2015 +0200

        udevd: worker - fully clean up unnecessary fds

The inotify-fd _is_ used in the workers, so don't close it! Have a look at
udev-watch.c, which keeps track of the inotify-fd as a global variable
(ugh!).
This commit is contained in:
David Herrmann 2015-05-26 13:03:15 +02:00
parent db47294f41
commit 185abfc3d6

View file

@ -337,7 +337,6 @@ static void worker_spawn(Manager *manager, struct event *event) {
manager->fd_ep = safe_close(manager->fd_ep);
manager->fd_signal = safe_close(manager->fd_signal);
manager->fd_inotify = safe_close(manager->fd_inotify);
manager->worker_watch[READ_END] = safe_close(manager->worker_watch[READ_END]);
sigfillset(&mask);