From d348e324da8e044b7a04608e7a693ec31b45223f Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Fri, 15 May 2026 14:06:09 +0200 Subject: [PATCH] radv: advertise VK_EXT_device_fault by default This is can still be useful if the kernel has no GPUVM query support becuse it's possible to export GPU hang reports. Signed-off-by: Samuel Pitoiset Part-of: --- src/amd/vulkan/radv_physical_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/radv_physical_device.c b/src/amd/vulkan/radv_physical_device.c index 01f25c6a855..e395f3a6e21 100644 --- a/src/amd/vulkan/radv_physical_device.c +++ b/src/amd/vulkan/radv_physical_device.c @@ -828,7 +828,7 @@ radv_physical_device_get_supported_extensions(const struct radv_physical_device .EXT_descriptor_heap = instance->experimental_flags & RADV_EXPERIMENTAL_DESCRIPTOR_HEAP, .EXT_descriptor_indexing = true, .EXT_device_address_binding_report = true, - .EXT_device_fault = pdev->info.has_gpuvm_fault_query, + .EXT_device_fault = true, .EXT_device_generated_commands = pdev->info.gfx_level >= GFX8, .EXT_device_memory_report = true, .EXT_discard_rectangles = true,