diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-05-17 14:50:00 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-05-17 14:50:00 +0200 |
commit | d19617f06b4526bccc2fc5e5e15c43c754b99a4d (patch) | |
tree | cf74bc8e3c56a5d755028c57b02c2baf0c5f0c94 /sysdep | |
parent | 144c10fad1ed6a2520abd1c43501ce00ea2699db (diff) | |
parent | 31874783c44dd59c355921908016f9b42d22ef02 (diff) |
Merge remote-tracking branch 'origin/int-new' into int-new
Diffstat (limited to 'sysdep')
-rw-r--r-- | sysdep/linux/netlink.c | 2 | ||||
-rw-r--r-- | sysdep/unix/krt.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sysdep/linux/netlink.c b/sysdep/linux/netlink.c index 083a8d90..8f44b007 100644 --- a/sysdep/linux/netlink.c +++ b/sysdep/linux/netlink.c @@ -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); } diff --git a/sysdep/unix/krt.c b/sysdep/unix/krt.c index a1b10cea..f0241777 100644 --- a/sysdep/unix/krt.c +++ b/sysdep/unix/krt.c @@ -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(); } |