public inbox for linux-sh@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH] slab: fix slab flags for archs use alignment larger 64-bit
@ 2009-02-12 16:53 Giuseppe CAVALLARO
  2009-02-12 17:47 ` Giuseppe CAVALLARO
  0 siblings, 1 reply; 4+ messages in thread
From: Giuseppe CAVALLARO @ 2009-02-12 16:53 UTC (permalink / raw)
  To: linux-sh

sorry... patch also sent to linux-kernel@vger.kernel.org

Giuseppe CAVALLARO wrote:
> 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.
>   


^ permalink raw reply	[flat|nested] 4+ messages in thread
[parent not found: <1234461073-23281-1-git-send-email-peppe.cavallaro@st.com>]

end of thread, other threads:[~2009-02-13  9:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-12 16:53 [PATCH] slab: fix slab flags for archs use alignment larger 64-bit Giuseppe CAVALLARO
2009-02-12 17:47 ` Giuseppe CAVALLARO
     [not found] <1234461073-23281-1-git-send-email-peppe.cavallaro@st.com>
2009-02-12 18:56 ` Paul Mundt
2009-02-13  9:00   ` Giuseppe CAVALLARO

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