From: FUJITA Tomonori Date: Mon, 24 May 2010 21:31:45 +0000 (-0700) Subject: xtensa: set ARCH_KMALLOC_MINALIGN X-Git-Tag: v3.0~4866 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=498900fc9cd1adbad1ba6b55ed9d8f2f5d655ca3;p=platform%2Fkernel%2Flinux-amlogic.git xtensa: set ARCH_KMALLOC_MINALIGN Architectures that handle DMA-non-coherent memory need to set ARCH_KMALLOC_MINALIGN to make sure that kmalloc'ed buffer is DMA-safe: the buffer doesn't share a cache with the others. Signed-off-by: FUJITA Tomonori Cc: Chris Zankel Acked-by: Pekka Enberg Cc: Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/xtensa/include/asm/cache.h b/arch/xtensa/include/asm/cache.h index f04c989..ed8cd3c 100644 --- a/arch/xtensa/include/asm/cache.h +++ b/arch/xtensa/include/asm/cache.h @@ -29,5 +29,6 @@ # define CACHE_WAY_SIZE ICACHE_WAY_SIZE #endif +#define ARCH_KMALLOC_MINALIGN L1_CACHE_BYTES #endif /* _XTENSA_CACHE_H */