sparc: Define ARCH_SLAB_MINALIGN
authorDavid S. Miller <davem@davemloft.net>
Tue, 18 May 2010 22:23:58 +0000 (15:23 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 18 May 2010 22:23:58 +0000 (15:23 -0700)
Because SLOB fancies being different, the default minimum alignment is
only "unsigned long" instead of SLAB/SLUB where the default is
"unsigned long long"

The inconsistency makes no sense and is asking for trouble, but define
ARCH_SLAB_MINALIGN to get it right in all cases even after they fix
the inconsistency.

Signed-off-by: David S. Miller <davem@davemloft.net>
arch/sparc/include/asm/cache.h

index 41f85ae4bd4ad7de07ff2fab14804ad75bac3d80..78b07009f60a9d52c8042fc1c9124fef9d6a2f16 100644 (file)
@@ -7,6 +7,8 @@
 #ifndef _SPARC_CACHE_H
 #define _SPARC_CACHE_H
 
+#define ARCH_SLAB_MINALIGN     __alignof__(unsigned long long)
+
 #define L1_CACHE_SHIFT 5
 #define L1_CACHE_BYTES 32
 #define L1_CACHE_ALIGN(x) ((((x)+(L1_CACHE_BYTES-1))&~(L1_CACHE_BYTES-1)))