diff options
author | Maria Matejka <mq@ucw.cz> | 2021-10-13 18:59:45 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2021-10-13 18:59:45 +0200 |
commit | bea582cbb53e30dd32a5b6829c7443e0e5558d11 (patch) | |
tree | d4d594187d1985bd7444a9c879ba875d4141a8af /lib | |
parent | 7f0e59820899c30a243c18556ce2e3fb72d6d221 (diff) |
fixup! Bound allocated pages to resource pools with page caches to avoid unnecessary syscalls
Diffstat (limited to 'lib')
-rw-r--r-- | lib/slab.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -178,7 +178,7 @@ struct sl_alignment { /* Magic structure for testing of alignment */ int x[0]; }; -#define SL_GET_HEAD(x) ((struct sl_head *) (((uintptr_t) (x)) & ~(get_page_size()-1))) +#define SL_GET_HEAD(x) ((struct sl_head *) (((uintptr_t) (x)) & ~(page_size-1))) /** * sl_new - create a new Slab |