diff options
author | Rich Felker <dalias@libc.org> | 2021-02-17 20:34:59 -0500 |
---|---|---|
committer | Rich Felker <dalias@libc.org> | 2021-12-06 10:09:49 -0500 |
commit | 9b22e72e623edfb57046cf61edfa0762f0e8bc13 (patch) | |
tree | 6e9ee7c970b82da596f3c83d5ebf841248e353d3 | |
parent | 4c7333b0fb9e29f4f84e997c05793053b5a21114 (diff) | |
download | linux-sh-9b22e72e623edfb57046cf61edfa0762f0e8bc13.tar.gz |
extra percpu memory
-rw-r--r-- | mm/percpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/percpu.c b/mm/percpu.c index f5b2c2ea5a54..3c2e8c884600 100644 --- a/mm/percpu.c +++ b/mm/percpu.c @@ -3300,7 +3300,7 @@ void __init setup_per_cpu_areas(void) * what the legacy allocator did. */ rc = pcpu_embed_first_chunk(PERCPU_MODULE_RESERVE, - PERCPU_DYNAMIC_RESERVE, PAGE_SIZE, NULL, + PERCPU_DYNAMIC_RESERVE+(32<<10), PAGE_SIZE, NULL, pcpu_dfl_fc_alloc, pcpu_dfl_fc_free); if (rc < 0) panic("Failed to initialize percpu areas."); |