Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

slab: restrict the number of objects in a slab

To prepare to implement byte sized index for managing the freelist
of a slab, we should restrict the number of objects in a slab to be less
or equal to 256, since byte only represent 256 different values.
Setting the size of object to value equal or more than newly introduced
SLAB_OBJ_MIN_SIZE ensures that the number of objects in a slab is less or
equal to 256 for a slab with 1 page.

If page size is rather larger than 4096, above assumption would be wrong.
In this case, we would fall back on 2 bytes sized index.

If minimum size of kmalloc is less than 16, we use it as minimum object
size and give up this optimization.

Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>

authored by

Joonsoo Kim and committed by
Pekka Enberg
f315e3fa e5c58dfd

+32
+11
include/linux/slab.h
··· 201 201 #ifndef KMALLOC_SHIFT_LOW 202 202 #define KMALLOC_SHIFT_LOW 5 203 203 #endif 204 + 205 + /* 206 + * This restriction comes from byte sized index implementation. 207 + * Page size is normally 2^12 bytes and, in this case, if we want to use 208 + * byte sized index which can represent 2^8 entries, the size of the object 209 + * should be equal or greater to 2^12 / 2^8 = 2^4 = 16. 210 + * If minimum size of kmalloc is less than 16, we use it as minimum object 211 + * size and give up to use byte sized index. 212 + */ 213 + #define SLAB_OBJ_MIN_SIZE (KMALLOC_SHIFT_LOW < 4 ? \ 214 + (1 << KMALLOC_SHIFT_LOW) : 16) 204 215 #endif 205 216 206 217 #ifdef CONFIG_SLUB
+21
mm/slab.c
··· 157 157 #define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN 158 158 #endif 159 159 160 + #define FREELIST_BYTE_INDEX (((PAGE_SIZE >> BITS_PER_BYTE) \ 161 + <= SLAB_OBJ_MIN_SIZE) ? 1 : 0) 162 + 163 + #if FREELIST_BYTE_INDEX 164 + typedef unsigned char freelist_idx_t; 165 + #else 166 + typedef unsigned short freelist_idx_t; 167 + #endif 168 + 169 + #define SLAB_OBJ_MAX_NUM (1 << sizeof(freelist_idx_t) * BITS_PER_BYTE) 170 + 160 171 /* 161 172 * true if a page was allocated from pfmemalloc reserves for network-based 162 173 * swap ··· 2027 2016 if (!num) 2028 2017 continue; 2029 2018 2019 + /* Can't handle number of objects more than SLAB_OBJ_MAX_NUM */ 2020 + if (num > SLAB_OBJ_MAX_NUM) 2021 + break; 2022 + 2030 2023 if (flags & CFLGS_OFF_SLAB) { 2031 2024 /* 2032 2025 * Max number of objs-per-slab for caches which ··· 2273 2258 flags |= CFLGS_OFF_SLAB; 2274 2259 2275 2260 size = ALIGN(size, cachep->align); 2261 + /* 2262 + * We should restrict the number of objects in a slab to implement 2263 + * byte sized index. Refer comment on SLAB_OBJ_MIN_SIZE definition. 2264 + */ 2265 + if (FREELIST_BYTE_INDEX && size < SLAB_OBJ_MIN_SIZE) 2266 + size = ALIGN(SLAB_OBJ_MIN_SIZE, cachep->align); 2276 2267 2277 2268 left_over = calculate_slab_order(cachep, size, cachep->align, flags); 2278 2269