diff options
author | Maria Matejka <mq@ucw.cz> | 2022-04-04 22:34:14 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-04-06 18:14:08 +0200 |
commit | 7e86ff2076f3046c6dcca53e7756f112362aeee9 (patch) | |
tree | 0ae2e3ff87f37704af0c244e14fa116d1df238e7 /proto/mrt | |
parent | dabd7bccb3b9e2b7482cf4ae7619a67559f3ac94 (diff) |
All linpools use pages to allocate regular blocks
Diffstat (limited to 'proto/mrt')
-rw-r--r-- | proto/mrt/mrt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/mrt/mrt.c b/proto/mrt/mrt.c index 70b2aeff..321c6395 100644 --- a/proto/mrt/mrt.c +++ b/proto/mrt/mrt.c @@ -560,8 +560,8 @@ mrt_table_dump_init(pool *pp) struct mrt_table_dump_state *s = mb_allocz(pool, sizeof(struct mrt_table_dump_state)); s->pool = pool; - s->linpool = lp_new(pool, 4080); - s->peer_lp = lp_new(pool, 4080); + s->linpool = lp_new(pool); + s->peer_lp = lp_new(pool); mrt_buffer_init(&s->buf, pool, 2 * MRT_ATTR_BUFFER_SIZE); /* We lock the current config as we may reference it indirectly by filter */ |