All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe: Fix cast on trace variable again
@ 2024-02-20 20:56 Lucas De Marchi
  2024-02-20 21:11 ` ✓ CI.Patch_applied: success for " Patchwork
                   ` (9 more replies)
  0 siblings, 10 replies; 12+ messages in thread
From: Lucas De Marchi @ 2024-02-20 20:56 UTC (permalink / raw)
  To: intel-xe
  Cc: Lucas De Marchi, Matt Roper, Priyanka Dandamudi, Oak Zeng,
	Thomas Hellström

Same fix as commit 8d038f49c1f3 ("drm/xe: Fix cast on trace variable")
that has been inadvertently reverted by a later commit.

Fixes: a0df2cc858c3 ("drm/xe/xe_bo_move: Enhance xe_bo_move trace")
Cc: Matt Roper <matthew.d.roper@intel.com>
Cc: Priyanka Dandamudi <priyanka.dandamudi@intel.com>
Cc: Oak Zeng <oak.zeng@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
 drivers/gpu/drm/xe/xe_trace.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_trace.h b/drivers/gpu/drm/xe/xe_trace.h
index 0cce98a6b14b..e43c3bde3202 100644
--- a/drivers/gpu/drm/xe/xe_trace.h
+++ b/drivers/gpu/drm/xe/xe_trace.h
@@ -32,7 +32,7 @@ DECLARE_EVENT_CLASS(xe_gt_tlb_invalidation_fence,
 			     ),
 
 		    TP_fast_assign(
-			   __entry->fence = (u64)fence;
+			   __entry->fence = (unsigned long)fence;
 			   __entry->seqno = fence->seqno;
 			   ),
 
-- 
2.43.0


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

end of thread, other threads:[~2024-02-21 20:25 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-20 20:56 [PATCH] drm/xe: Fix cast on trace variable again Lucas De Marchi
2024-02-20 21:11 ` ✓ CI.Patch_applied: success for " Patchwork
2024-02-20 21:12 ` ✓ CI.checkpatch: " Patchwork
2024-02-20 21:12 ` ✓ CI.KUnit: " Patchwork
2024-02-20 21:23 ` ✓ CI.Build: " Patchwork
2024-02-20 21:24 ` ✓ CI.Hooks: " Patchwork
2024-02-20 21:25 ` ✓ CI.checksparse: " Patchwork
2024-02-20 21:49 ` ✓ CI.BAT: " Patchwork
2024-02-20 22:54 ` [PATCH] " Matt Roper
2024-02-21 17:58 ` Ville Syrjälä
2024-02-21 20:20   ` Lucas De Marchi
2024-02-21 20:25 ` ✗ CI.Patch_applied: failure for drm/xe: Fix cast on trace variable again (rev2) Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.