diff options
author | Maria Matejka <mq@ucw.cz> | 2021-11-30 23:57:14 +0100 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2021-12-01 13:00:54 +0100 |
commit | bb63e99d7877023667edaf26495dd657ec2fd57b (patch) | |
tree | 3ae919a00541c27c8f661addb56c6d4ef681d361 /nest/a-path_test.c | |
parent | 385b3ea3956aefc2868cdd838fc0a90f1d8a7857 (diff) |
Page allocator moved from pools to IO loops.
The resource pool system is highly hierarchical and keeping spare pages
in pools leads to unnecessarily complex memory management.
Loops have a flat hiearchy, at least for now, and it is therefore much
easier to keep care of pages, especially in cases of excessive virtual memory
fragmentation.
Diffstat (limited to 'nest/a-path_test.c')
-rw-r--r-- | nest/a-path_test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nest/a-path_test.c b/nest/a-path_test.c index 2e6683f2..2533dbae 100644 --- a/nest/a-path_test.c +++ b/nest/a-path_test.c @@ -198,6 +198,7 @@ t_as_path_converting(void) #endif void resource_sys_init(void); +void io_init(void); int main(int argc, char *argv[]) @@ -207,6 +208,7 @@ main(int argc, char *argv[]) resource_init(); the_bird_lock(); birdloop_init(); + io_init(); bt_test_suite(t_as_path_match, "Testing AS path matching and some a-path utilities."); bt_test_suite(t_path_format, "Testing formating as path into byte buffer"); |