Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe/ufence: ufence can be signaled right after wait_woken
@ 2024-10-11 13:25 Nirmoy Das
  2024-10-11 14:10 ` Nirmoy Das
  0 siblings, 1 reply; 4+ messages in thread
From: Nirmoy Das @ 2024-10-11 13:25 UTC (permalink / raw)
  To: intel-xe
  Cc: Nirmoy Das, stable, Bommu Krishnaiah, Matthew Auld, Matthew Brost

do_comapre() can return success after wait_woken() which is treated as
-ETIME here.

Fixes: e670f0b4ef24 ("drm/xe/uapi: Return correct error code for xe_wait_user_fence_ioctl")
Cc: <stable@vger.kernel.org> # v6.8+
Cc: Bommu Krishnaiah <krishnaiah.bommu@intel.com>
Link: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/1630
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
---
 drivers/gpu/drm/xe/xe_wait_user_fence.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_wait_user_fence.c b/drivers/gpu/drm/xe/xe_wait_user_fence.c
index d46fa8374980..d532283d4aa3 100644
--- a/drivers/gpu/drm/xe/xe_wait_user_fence.c
+++ b/drivers/gpu/drm/xe/xe_wait_user_fence.c
@@ -169,7 +169,7 @@ int xe_wait_user_fence_ioctl(struct drm_device *dev, void *data,
 			args->timeout = 0;
 	}
 
-	if (!timeout && !(err < 0))
+	if (!timeout && err < 0)
 		err = -ETIME;
 
 	if (q)
-- 
2.46.0


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

end of thread, other threads:[~2024-10-11 15:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-11 13:25 [PATCH] drm/xe/ufence: ufence can be signaled right after wait_woken Nirmoy Das
2024-10-11 14:10 ` Nirmoy Das
2024-10-11 15:16   ` Matthew Auld
2024-10-11 15:44     ` Nirmoy Das

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