Summary from my side:
- Sort out pin vs revocable vs dynamic/moveable semantics, make sure
importers have no surprises.
- Adopt whatever new dma-api datastructures pops out of the dma-api
reworks.
- Add pfn based memory access as yet another optional access method, with
helpers so that exporters who support this get all the others for free.
I don't see a strict ordering between these, imo should be driven by
actual users of the dma-buf api.
Already done:
- dmem cgroup so that we can resource control device pinnings just landed
in drm-next for next merge window. So that part is imo sorted and we can
charge ahead with pinning into device memory without all the concerns
we've had years ago when discussing that for p2p dma-buf support.
But there might be some work so that we can p2p pin without requiring
dynamic attachments only, I haven't checked whether that needs
adjustment in dma-buf.c code or just in exporters.
Anything missing?
I feel like this is small enough that m-l archives is good enough. For
some of the bigger projects we do in graphics we sometimes create entries
in our kerneldoc with wip design consensus and things like that. But
feels like overkill here.
My general desire is to move all of RDMA's MR process away from
scatterlist and work using only the new DMA API. This will save *huge*
amounts of memory in common workloads and be the basis for non-struct
page DMA support, including P2P.
Yeah a more memory efficient structure than the scatterlist would be
really nice. That would even benefit the very special dma-buf exporters
where you cannot get a pfn and only the dma_addr_t, altough most of those
(all maybe even?) have contig buffers, so your scatterlist has only one
entry. But it would definitely be nice from a design pov.
Aside: A way to more efficiently create compressed scatterlists would be
neat too, because a lot of drivers hand-roll that and it's a bit brittle
and kinda silly to duplicate. With compressed I mean just a single entry
for a contig range, in practice thanks to huge pages/folios and allocators
trying to hand out contig ranges if there's plenty of memory that saves a
lot of memory too. But currently it's a bit a pain to construct these
efficiently, mostly it's just a two-pass approach and then trying to free
surplus memory or krealloc to fit. Also I don't have good ideas here, but
dma-api folks might have some from looking at too many things that create
scatterlists.