diff options
Diffstat (limited to 'include/linux/slab.h')
-rw-r--r-- | include/linux/slab.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/slab.h b/include/linux/slab.h index 9260abdd67df..d015dec02bf3 100644 --- a/include/linux/slab.h +++ b/include/linux/slab.h | |||
@@ -201,6 +201,17 @@ struct kmem_cache { | |||
201 | #ifndef KMALLOC_SHIFT_LOW | 201 | #ifndef KMALLOC_SHIFT_LOW |
202 | #define KMALLOC_SHIFT_LOW 5 | 202 | #define KMALLOC_SHIFT_LOW 5 |
203 | #endif | 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 | #endif | 215 | #endif |
205 | 216 | ||
206 | #ifdef CONFIG_SLUB | 217 | #ifdef CONFIG_SLUB |