forked from pool/systemd
Marcus Meissner
f35f0221c2
- Update to new upstream release 218 I really want networkd with a functioning machinectl --network-veth (broken in 13.2). OBS-URL: https://build.opensuse.org/request/show/280821 OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=844
27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
---
|
|
src/udev/udevd.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
Index: systemd-218/src/udev/udevd.c
|
|
===================================================================
|
|
--- systemd-218.orig/src/udev/udevd.c
|
|
+++ systemd-218/src/udev/udevd.c
|
|
@@ -446,7 +446,7 @@ static void event_run(struct event *even
|
|
|
|
if (children >= arg_children_max) {
|
|
if (arg_children_max > 1)
|
|
- log_debug("maximum number (%i) of children reached", children);
|
|
+ log_error("maximum number (%i) of children reached", children);
|
|
return;
|
|
}
|
|
|
|
@@ -1265,7 +1265,7 @@ int main(int argc, char *argv[]) {
|
|
arg_children_max = 8;
|
|
|
|
if (sched_getaffinity(0, sizeof (cpu_set), &cpu_set) == 0) {
|
|
- arg_children_max += CPU_COUNT(&cpu_set) * 2;
|
|
+ arg_children_max += CPU_COUNT(&cpu_set) * 64;
|
|
}
|
|
}
|
|
log_debug("set children_max to %u", arg_children_max);
|