From 6cd37713781a3092f8166b2178fae35cbfec1e28 Mon Sep 17 00:00:00 2001 From: Maria Matejka Date: Wed, 8 Sep 2021 11:29:49 +0200 Subject: [PATCH] Multipage allocation We can also quite simply allocate bigger blocks. Anyway, we need these blocks to be aligned to their size which needs one mmap() two times bigger and then two munmap()s returning the unaligned parts. The user can specify -B on startup when is the exponent of 2, setting the block size to 2^N. On most systems, N is 12, anyway if you know that your configuration is going to eat gigabytes of RAM, you are almost forced to raise your block size as you may easily get into memory fragmentation issues or you have to raise your maximum mapping count, e.g. "sysctl vm.max_map_count=(number)". --- doc/bird.sgml | 7 +++++++ lib/resource.c | 2 -- lib/slab.c | 2 +- sysdep/unix/alloc.c | 23 +++++++++++++++++++++++ sysdep/unix/main.c | 32 +++++++++++++++++++++++++++++++- 5 files changed, 62 insertions(+), 4 deletions(-) diff --git a/doc/bird.sgml b/doc/bird.sgml index 39dadaf2..ddad4d98 100644 --- a/doc/bird.sgml +++ b/doc/bird.sgml @@ -145,6 +145,13 @@ BIRD executable by configuring out routing protocols you don't use, and

You can pass several command-line options to bird: +