]> Gentwo Git Trees - linux/.git/commit
drm/xe: Fix oops in xe_gem_fault when running core_hotunplug test.
authorMaarten Lankhorst <dev@lankhorst.se>
Tue, 15 Jul 2025 15:20:58 +0000 (17:20 +0200)
committerMaarten Lankhorst <dev@lankhorst.se>
Thu, 31 Jul 2025 11:45:03 +0000 (13:45 +0200)
commit1cda3c755bb7770be07d75949bb0f45fb88651f6
tree5e88d726d673668ee8bc4034a0586238b2a74b16
parent552dbba1caaf0cb40ce961806d757615e26ec668
drm/xe: Fix oops in xe_gem_fault when running core_hotunplug test.

I saw an oops in xe_gem_fault when running the xe-fast-feedback
testlist against the realtime kernel without debug options enabled.

The panic happens after core_hotunplug unbind-rebind finishes.
Presumably what happens is that a process mmaps, unlocks because
of the FAULT_FLAG_RETRY_NOWAIT logic, has no process memory left,
causing ttm_bo_vm_dummy_page() to return VM_FAULT_NOPAGE, since
there was nothing left to populate, and then oopses in
"mem_type_is_vram(tbo->resource->mem_type)" because tbo->resource
is NULL.

It's convoluted, but fits the data and explains the oops after
the test exits.

Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Link: https://lore.kernel.org/r/20250715152057.23254-2-dev@lankhorst.se
Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
drivers/gpu/drm/xe/xe_bo.c