mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-24 01:27:19 +03:00
Do not disable SEC by default for 64k pages platforms
Default SEC max_alloc option value was 32k, disabling SEC for platforms with lg-page=16. This change enables SEC for all platforms, making minimum max_alloc value equal to PAGE.
This commit is contained in:
parent
eaaa368bab
commit
a93931537e
2 changed files with 2 additions and 2 deletions
|
|
@ -46,7 +46,7 @@ struct sec_opts_s {
|
|||
/* nshards */ \
|
||||
4, \
|
||||
/* max_alloc */ \
|
||||
32 * 1024, \
|
||||
(32 * 1024) < PAGE ? PAGE : (32 * 1024), \
|
||||
/* max_bytes */ \
|
||||
256 * 1024, \
|
||||
/* bytes_after_flush */ \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue