X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=udev%2Fudevd.c;h=63b4fd7ad26c33a28b17c097cc819461aa692d43;hp=1e12eb38acce556d8262e039b1273a40af6b3743;hb=57c6f8ae5f52a6e8ffc66a54966346f733dded39;hpb=43d5c5f03645c4b842659f9b5bd0ae465e885e92 diff --git a/udev/udevd.c b/udev/udevd.c index 1e12eb38a..63b4fd7ad 100644 --- a/udev/udevd.c +++ b/udev/udevd.c @@ -398,7 +398,7 @@ out: } } -static void event_run(struct event *event, bool force) +static void event_run(struct event *event) { struct udev_list_node *loop; @@ -423,7 +423,7 @@ static void event_run(struct event *event, bool force) return; } - if (!force && children >= children_max) { + if (children >= children_max) { if (children_max > 1) info(event->udev, "maximum number (%i) of children reached\n", children); return; @@ -573,7 +573,7 @@ static void event_queue_start(struct udev *udev) continue; } - event_run(event, false); + event_run(event); } }