Linux Media Controller development
 help / color / mirror / Atom feed
* [PATCH] dma-fence: Correct return of dma_fence_driver_name()
@ 2025-10-24  7:50 Philipp Stanner
  2025-10-24  8:31 ` Tvrtko Ursulin
  0 siblings, 1 reply; 13+ messages in thread
From: Philipp Stanner @ 2025-10-24  7:50 UTC (permalink / raw)
  To: Sumit Semwal, Gustavo Padovan, Christian König,
	Tvrtko Ursulin
  Cc: linux-media, dri-devel, linux-kernel, Philipp Stanner,
	Danilo Krummrich

To decouple the dma_fence_ops lifetime from dma_fences lifetime RCU
support was added to said function, coupled with using the signaled bit
to detect whether the fence_ops might be gone already.

When implementing that a wrong string was set as a default return
parameter, indicating that every driver whose fence is already signalled
must be detached, which is frankly wrong.

Reported-by: Danilo Krummrich <dakr@kernel.org>
Fixes: 506aa8b02a8d ("dma-fence: Add safe access helpers and document the rules")
Signed-off-by: Philipp Stanner <phasta@kernel.org>
---
When this was merged, it sadly slipped by me. I think this entire RCU
mechanism was / is an overengineered idea.

If we look at who actually uses dma_fence_driver_name() and
dma_fence_timeline_name() – functions from which the largest share of
the fence_ops vs. fence lifetime issue stems from – we discover that
there is a single user:

i915.

Isn't that driver even deprecated?

I think the better thing to do is: remove these functions alltogether,
or at least deprecate them. Then the only lifetime issue left so solve
is the callback functions.

P.
---
 drivers/dma-buf/dma-fence.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/dma-buf/dma-fence.c b/drivers/dma-buf/dma-fence.c
index 3f78c56b58dc..1875a0abebd3 100644
--- a/drivers/dma-buf/dma-fence.c
+++ b/drivers/dma-buf/dma-fence.c
@@ -1111,7 +1111,7 @@ const char __rcu *dma_fence_driver_name(struct dma_fence *fence)
 	if (!test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
 		return fence->ops->get_driver_name(fence);
 	else
-		return "detached-driver";
+		return "driver-whose-fence-is-already-signalled";
 }
 EXPORT_SYMBOL(dma_fence_driver_name);
 
-- 
2.49.0


^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2025-10-24 16:18 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-24  7:50 [PATCH] dma-fence: Correct return of dma_fence_driver_name() Philipp Stanner
2025-10-24  8:31 ` Tvrtko Ursulin
2025-10-24 10:59   ` Philipp Stanner
2025-10-24 11:31     ` Tvrtko Ursulin
2025-10-24 12:12       ` Danilo Krummrich
2025-10-24 12:40         ` Tvrtko Ursulin
2025-10-24 13:13           ` Danilo Krummrich
2025-10-24 13:37             ` Tvrtko Ursulin
2025-10-24 14:17               ` Danilo Krummrich
2025-10-24 14:28                 ` Tvrtko Ursulin
2025-10-24 14:36                   ` Danilo Krummrich
2025-10-24 16:06                     ` Tvrtko Ursulin
2025-10-24 16:18                       ` Danilo Krummrich

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