]> www.infradead.org Git - users/hch/configfs.git/commitdiff
drm/xe: Drop trace_xe_hw_fence_free
authorMatthew Brost <matthew.brost@intel.com>
Mon, 8 Jul 2024 21:10:08 +0000 (14:10 -0700)
committerMatthew Brost <matthew.brost@intel.com>
Mon, 8 Jul 2024 22:15:02 +0000 (15:15 -0700)
fence->ctx may be stale memory when trace_xe_hw_fence_free is called
resuling UAF bug when deriving the device name. This tracepoint is not
all that useful, so just drop it.

Fixes: 501c4255c409 ("drm/xe/trace: Print device_id in xe_trace events")
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Gustavo Sousa <gustavo.sousa@intel.com>
Cc: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
Cc: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240708211008.956384-1-matthew.brost@intel.com
drivers/gpu/drm/xe/xe_hw_fence.c
drivers/gpu/drm/xe/xe_trace.h

index 35c0063a831af256ed9c7805e621b4bfbb7acc43..45a9789cf50191bdbccbf47b4e9bd5de3f23c92f 100644 (file)
@@ -187,7 +187,6 @@ static void xe_hw_fence_release(struct dma_fence *dma_fence)
 {
        struct xe_hw_fence *fence = to_xe_hw_fence(dma_fence);
 
-       trace_xe_hw_fence_free(fence);
        XE_WARN_ON(!list_empty(&fence->irq_link));
        call_rcu(&dma_fence->rcu, fence_free);
 }
index 09ca1ad057b058bafbfcdae59e1aa93b1e267841..baba14fb1e32e6b511dff637e7330c5221b9bdf7 100644 (file)
@@ -341,11 +341,6 @@ DEFINE_EVENT(xe_hw_fence, xe_hw_fence_try_signal,
             TP_ARGS(fence)
 );
 
-DEFINE_EVENT(xe_hw_fence, xe_hw_fence_free,
-            TP_PROTO(struct xe_hw_fence *fence),
-            TP_ARGS(fence)
-);
-
 TRACE_EVENT(xe_reg_rw,
        TP_PROTO(struct xe_gt *gt, bool write, u32 reg, u64 val, int len),