Re: Bug in add_dma_entry()'s debugging code

From: Alan Stern
Date: Tue Nov 28 2023 - 10:18:24 EST


On Tue, Nov 28, 2023 at 02:37:02PM +0100, Christoph Hellwig wrote:
> I'd actually go one step back:
>
> 1) for not cache coherent DMA you can't do overlapping operations inside
> a cache line

Rephrasing slightly: You mustn't perform multiple non-cache-coherent DMA
operations that touch the same cache line concurrently. (The word
"overlapping" is a a little ambiguous in this context.)

(Right now dma-debug considers only DMA-IN operations. In theory this
restriction should apply even when some of the concurrent operations are
DMA-OUT, provided that at least one of them is DMA-IN. Minor point...)

> 2) dma-debug is intended to find DMA API misuses, even if they don't
> have bad effects on your particular system
> 3) the fact that the kmalloc implementation returns differently aligned
> memory depending on the platform breaks how dma-debug works currently

Exactly. That's essentially what Bugzilla #215740 is about.

> The logical confcusion from that would be that IFF dma-debug is enabled on
> any platform we need to set ARCH_DMA_MINALIGN to the cache line size.

(IF, not IFF.) And tell distributions that CONFIG_DMA_API_DEBUG is not
meant for production systems but rather for kernel testing, right?

> BUT: we're actually reduzing our dependency on ARCH_DMA_MINALIGN by
> moving to bounce buffering unaligned memory for non-coherent
> architectures,

What's the reason for this? To allow the minimum allocation size to be
smaller than the cache line size? Does the savings in memory make up
for the extra overhead of bounce buffering?

Or is this just to allow people to be more careless about how they
allocate their DMA buffers (which doesn't seem to make sense)?

> which makes this even more complicated. Right now I
> don't have a good idea how to actually deal with having the cachline
> sanity checks with that, but I'm Ccing some of the usual suspects if
> they have a better idea.

I get the impression that you would really like to have two different
versions of kmalloc() and friends: one for buffers that will be used in
DMA (and hence require cache-line alignment) and one for buffers that
won't be.

Alan Stern