From: Maria Matejka Date: Thu, 19 Jan 2023 09:49:47 +0000 (+0100) Subject: Decoupling loops from threads to allow fixed thread count X-Git-Tag: v3.0-alpha1~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84c298465f6360a8694d4837f3420961ea321fa5;p=thirdparty%2Fbird.git Decoupling loops from threads to allow fixed thread count On large configurations, too many threads would spawn with one thread per loop. Therefore, threads may now run multiple loops at once. The thread count is configurable and may be changed during run. All threads are spawned on startup. This change helps with memory bloating. BIRD filters need large temporary memory blocks to store their stack and also memory management keeps its hot page storage per-thread. Known bugs: * Thread autobalancing is not yet implemented. * Low latency loops are executed together with standard loops. --- diff --git a/conf/conf.h b/conf/conf.h index ce4a3c5a3..9f011ef73 100644 --- a/conf/conf.h +++ b/conf/conf.h @@ -54,6 +54,7 @@ struct config { char *err_file_name; /* File name containing error */ char *file_name; /* Name of main configuration file */ int file_fd; /* File descriptor of main configuration file */ + int thread_count; /* How many worker threads to prefork */ struct sym_scope *root_scope; /* Scope for root symbols */ int obstacle_count; /* Number of items blocking freeing of this config */ diff --git a/doc/bird.sgml b/doc/bird.sgml index 3675d2e84..37028a3b3 100644 --- a/doc/bird.sgml +++ b/doc/bird.sgml @@ -532,6 +532,12 @@ include "tablename.conf";; killed by abort signal. The timeout has effective granularity of seconds, zero means disabled. Default: disabled (0). +