Mike Frysinger wrote: > On Tue, May 11, 2010 at 23:23, FUJITA Tomonori wrote: >> Seems that kmalloc is not cacheline aligned on some architectures but >> they works. Probably, we might be just lucky because in general they >> allocate larger buffers than 64 for DMA via kmalloc and the buffers >> are aligned on the size? > > i think the magic combo is: > - DMA buffer is written to (receive) [...] > - only on arches that need software cache coherency In particular, when the architecture port uses cache invalidates that throw away dirty lines. They're equivalent to writing old data to a cache line, so an unrelated kmalloc allocation in the same cache line gets corrupted. So true, not all architectures need the extra alignment. (And maybe some get lucky too, don't know.) -Marc PS. Sorry about the gratuitous [LKML] in the subject line, mea culpa. -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html