On 5/30/22 16:41, Christian König wrote:
Hi Dmitry,Yeah, I was looking at the both sides, but missed this one.
Am 30.05.22 um 15:26 schrieb Dmitry Osipenko:
Hello Christian,That sounds like you are underestimating a bit how much trouble this
On 5/30/22 09:50, Christian König wrote:
Hi Dmitry,I assume all the patches will go via the DRM tree in the end since the
First of all please separate out this patch from the rest of the series,
since this is a complex separate structural change.
rest of the DRM patches in this series depend on this dma-buf change.
But I see that separation may ease reviewing of the dma-buf changes, so
let's try it.
will be.
No, I never even finished creating it after realizing how much work itI have tried this before and failed because catching all the locks inSure, I'll fix up all the reported things in the next iteration.
the right code paths are very tricky. So expect some fallout from this
and make sure the kernel test robot and CI systems are clean.
BTW, have you ever posted yours version of the patch? Will be great if
we could compare the changed code paths.
would be.
Yes, I clearly think so.Do we really want to move all the locks to the importers? Seems theThis patch introduces new locking convention for dma-buf users. FromInstead of adding new locked variants please mark all variants which
now
on all dma-buf importers are responsible for holding dma-buf
reservation
lock around operations performed over dma-bufs.
This patch implements the new dma-buf locking convention by:
1. Making dma-buf API functions to take the reservation lock.
2. Adding new locked variants of the dma-buf API functions for
drivers
that need to manage imported dma-bufs under the held lock.
expect to be called without a lock with an _unlocked postfix.
This should make it easier to remove those in a follow up patch set and
then fully move the locking into the importer.
majority of drivers should be happy with the dma-buf helpers handling
the locking for them.
You are looking at the wrong side. You need to fix the export code path,Radeon and Nouveau use gem_prime_import_sg_table() and they take resv3. Converting all drivers to the new locking scheme.I have strong doubts that you got all of them. At least radeon and
nouveau should grab the reservation lock in their ->attach callbacks
somehow.
lock already, seems they should be okay (?)
not the import ones.
See for example attach on radeon works like this
drm_gem_map_attach->drm_gem_pin->radeon_gem_prime_pin->radeon_bo_reserve->ttm_bo_reserve->dma_resv_lock.
Same for nouveau and probably a few other exporters as well. That willThank you very much for the suggestions. I'll implement them in the next
certainly cause a deadlock if you don't fix it.
I strongly suggest to do this step by step, first attach/detach and then
the rest.
version.