aboutsummaryrefslogtreecommitdiffstats
path: root/mm/slab.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/slab.c')
-rw-r--r--mm/slab.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mm/slab.c b/mm/slab.c
index 7d92f08b88d7..a18ba57517af 100644
--- a/mm/slab.c
+++ b/mm/slab.c
@@ -2289,8 +2289,8 @@ kmem_cache_create (const char *name, size_t size, size_t align,
2289 if (ralign < align) { 2289 if (ralign < align) {
2290 ralign = align; 2290 ralign = align;
2291 } 2291 }
2292 /* disable debug if not aligning with REDZONE_ALIGN */ 2292 /* disable debug if necessary */
2293 if (ralign & (__alignof__(unsigned long long) - 1)) 2293 if (ralign > __alignof__(unsigned long long))
2294 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER); 2294 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2295 /* 2295 /*
2296 * 4) Store it. 2296 * 4) Store it.
@@ -2316,8 +2316,8 @@ kmem_cache_create (const char *name, size_t size, size_t align,
2316 */ 2316 */
2317 if (flags & SLAB_RED_ZONE) { 2317 if (flags & SLAB_RED_ZONE) {
2318 /* add space for red zone words */ 2318 /* add space for red zone words */
2319 cachep->obj_offset += align; 2319 cachep->obj_offset += sizeof(unsigned long long);
2320 size += align + sizeof(unsigned long long); 2320 size += 2 * sizeof(unsigned long long);
2321 } 2321 }
2322 if (flags & SLAB_STORE_USER) { 2322 if (flags & SLAB_STORE_USER) {
2323 /* user store requires one word storage behind the end of 2323 /* user store requires one word storage behind the end of