From d315bba6f6c9d929acdbf3c37cbcf6c9a72365ac Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Mon, 4 Jun 2012 16:40:31 +0200 Subject: [PATCH] udev: limit minimum worker count to 16 --- src/udev/udevd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/udev/udevd.c b/src/udev/udevd.c index 229031ccb..8ad1eccac 100644 --- a/src/udev/udevd.c +++ b/src/udev/udevd.c @@ -1353,9 +1353,9 @@ int main(int argc, char *argv[]) /* set value depending on the amount of RAM */ if (memsize > 0) - children_max = 28 + (memsize / 8); + children_max = 16 + (memsize / 8); else - children_max = 28; + children_max = 16; } log_debug("set children_max to %u\n", children_max); -- 2.30.2