public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] slab: fix slab flags for archs use alignment larger 64-bit
@ 2009-02-12 17:51 Giuseppe CAVALLARO
  2009-02-12 18:56 ` Paul Mundt
  0 siblings, 1 reply; 11+ messages in thread
From: Giuseppe CAVALLARO @ 2009-02-12 17:51 UTC (permalink / raw)
  To: linux-kernel; +Cc: Giuseppe Cavallaro

I think, this fix is necessary for all the architectures want to
perform DMA into kmalloc caches and need a guaranteed alignment
larger than the alignment of a 64-bit integer.
An example is sh architecture where ARCH_KMALLOC_MINALIGN is L1_CACHE_BYTES.

As side effect, these kind of objects cannot be visible
within the /proc/slab_allocators file.

Signed-off-by: Giuseppe Cavallaro <peppe.cavallaro@st.com>
---
 mm/slab.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/mm/slab.c b/mm/slab.c
index ddc41f3..031d785 100644
--- a/mm/slab.c
+++ b/mm/slab.c
@@ -2262,7 +2262,7 @@ kmem_cache_create (const char *name, size_t size, size_t align,
 		ralign = align;
 	}
 	/* disable debug if necessary */
-	if (ralign > __alignof__(unsigned long long))
+	if (ralign > ARCH_KMALLOC_MINALIGN)
 		flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
 	/*
 	 * 4) Store it.
-- 
1.5.6.6


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2009-02-18  8:31 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-12 17:51 [PATCH] slab: fix slab flags for archs use alignment larger 64-bit Giuseppe CAVALLARO
2009-02-12 18:56 ` Paul Mundt
2009-02-13 10:00   ` Giuseppe CAVALLARO
2009-02-13  9:22     ` Pekka Enberg
2009-02-13  9:30       ` Pekka Enberg
2009-02-13 10:46       ` Giuseppe CAVALLARO
2009-02-13 10:05         ` Pekka Enberg
2009-02-13 11:15           ` Giuseppe CAVALLARO
2009-02-13 14:11             ` Giuseppe CAVALLARO
2009-02-13 13:41               ` Pekka Enberg
2009-02-18  9:30                 ` Giuseppe CAVALLARO

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox