drm/xe: Fix crash in trace_dma_fence_init()
authorJosé Roberto de Souza <jose.souza@intel.com>
Wed, 24 Jan 2024 17:18:30 +0000 (09:18 -0800)
committerJosé Roberto de Souza <jose.souza@intel.com>
Thu, 25 Jan 2024 13:31:54 +0000 (05:31 -0800)
commitc6878e47431c72168da08dfbc1496c09b2d3c246
treee03ffad46c440598e2970c34a13517a59a8293ab
parent439987f6f471c2d8c99e77d3aa75cda597796b9d
drm/xe: Fix crash in trace_dma_fence_init()

trace_dma_fence_init() uses dma_fence_ops functions
like get_driver_name() and get_timeline_name() to generate trace
information but the Xe KMD implementation of those functions makes
use of xe_hw_fence_ctx that was being set after dma_fence_init().

So here just inverting the order to fix the crash.

Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel GPUs")
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240124171830.95774-1-jose.souza@intel.com
drivers/gpu/drm/xe/xe_hw_fence.c