1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Merge remote-tracking branch 'origin/int-new' into int-new

This commit is contained in:
Ondrej Zajicek (work)
2017-05-17 14:50:00 +02:00
19 changed files with 475 additions and 434 deletions

View File

@@ -1906,7 +1906,7 @@ nl_open_async(void)
void
krt_sys_io_init(void)
{
nl_linpool = lp_new(krt_pool, 4080);
nl_linpool = lp_new_default(krt_pool);
HASH_INIT(nl_table_map, krt_pool, 6);
}

View File

@@ -75,7 +75,7 @@ void
krt_io_init(void)
{
krt_pool = rp_new(&root_pool, "Kernel Syncer");
krt_filter_lp = lp_new(krt_pool, 4080);
krt_filter_lp = lp_new_default(krt_pool);
init_list(&krt_proto_list);
krt_sys_io_init();
}