From 9e76f5f2a2208ab3192ffdbe7ff4b3e3877bbab8 Mon Sep 17 00:00:00 2001 From: Pierre-Eric Pelloux-Prayer Date: Wed, 22 Oct 2025 15:44:15 +0200 Subject: [PATCH] radv: enable global BO list if vm_always_valid is supported MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Samuel Pitoiset Reviewed-by: Marek Olšák Part-of: --- src/amd/vulkan/radv_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 4900b229d60..b0c2265a4c4 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -1243,7 +1243,7 @@ radv_CreateDevice(VkPhysicalDevice physicalDevice, const VkDeviceCreateInfo *pCr /* Enable the global BO list by default. */ /* TODO: Remove the per cmdbuf BO list tracking after few Mesa releases if no blockers. */ - device->use_global_bo_list = !pdev->info.is_virtio; + device->use_global_bo_list = pdev->info.has_vm_always_valid; /* Disable it for debugging purposes if no features require it. */ if (instance->debug_flags & RADV_DEBUG_NO_BO_LIST) {