From 7ebe93aa9ffc2788d0cf37ab3bb72d711bf6fd7f Mon Sep 17 00:00:00 2001 From: Faith Ekstrand Date: Thu, 14 Aug 2025 16:48:39 -0400 Subject: [PATCH] anv/wsi: Stop requesting signal_*_with_memory Now that we require the dma-buf sync file import/export path, these legacy paths should never be invoked so we can stop requesting them. Acked-by: Daniel Stone Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/vulkan/anv_wsi.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/intel/vulkan/anv_wsi.c b/src/intel/vulkan/anv_wsi.c index 517f914ce40..d56e409707b 100644 --- a/src/intel/vulkan/anv_wsi.c +++ b/src/intel/vulkan/anv_wsi.c @@ -75,10 +75,6 @@ anv_init_wsi(struct anv_physical_device *physical_device) i == VK_ICD_WSI_PLATFORM_DISPLAY; } wsi_device->get_blit_queue = anv_wsi_get_prime_blit_queue; - if (physical_device->info.kmd_type == INTEL_KMD_TYPE_I915) { - wsi_device->signal_semaphore_with_memory = true; - wsi_device->signal_fence_with_memory = true; - } physical_device->vk.wsi_device = wsi_device;