summaryrefslogtreecommitdiffstats
path: root/mm/slub.c
diff options
context:
space:
mode:
authorChristoph Lameter2007-05-09 11:32:36 +0200
committerLinus Torvalds2007-05-09 21:30:44 +0200
commitbe7b3fbcef34452127bed93632b8e788f685d70e (patch)
treea2d1e80103982fd606390d4bb15131d1dd544b45 /mm/slub.c
parentSLUB: add support for dynamic cacheline size determination (diff)
downloadkernel-qcow2-linux-be7b3fbcef34452127bed93632b8e788f685d70e.tar.gz
kernel-qcow2-linux-be7b3fbcef34452127bed93632b8e788f685d70e.tar.xz
kernel-qcow2-linux-be7b3fbcef34452127bed93632b8e788f685d70e.zip
SLUB: after object padding only needed for Redzoning
If no redzoning is selected then we do not need padding before the next object. Signed-off-by: Christoph Lameter <clameter@sgi.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/slub.c')
-rw-r--r--mm/slub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/slub.c b/mm/slub.c
index 40e92d8d4bc6..beac34a5e4fd 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -1661,7 +1661,7 @@ static int calculate_sizes(struct kmem_cache *s)
*/
size += 2 * sizeof(struct track);
- if (flags & DEBUG_DEFAULT_FLAGS)
+ if (flags & SLAB_RED_ZONE)
/*
* Add some empty padding so that we can catch
* overwrites from earlier objects rather than let