diff --git a/src/intel/ci/anv-jsl-flakes.txt b/src/intel/ci/anv-jsl-flakes.txt index 51ceb3c5ca3..e69de29bb2d 100644 --- a/src/intel/ci/anv-jsl-flakes.txt +++ b/src/intel/ci/anv-jsl-flakes.txt @@ -1,8 +0,0 @@ -# ci-collate: Issue found in https://gitlab.freedesktop.org/mesa/mesa/-/jobs/49442241 -dEQP-VK.synchronization2.timeline_semaphore.one_to_n.write_copy_buffer_read_ssbo_vertex.buffer_16384 -# ci-collate: Issue found in https://gitlab.freedesktop.org/mesa/mesa/-/jobs/49442242 -dEQP-VK.synchronization.timeline_semaphore.wait_before_signal.write_image_compute_read_copy_image_to_buffer.image_128_r32_uint - -# Found crashing https://gitlab.freedesktop.org/mesa/mesa/-/jobs/49649616 and -# passing in https://gitlab.freedesktop.org/mesa/mesa/-/jobs/49668558 -dEQP-VK.synchronization.timeline_semaphore.wait_before_signal.write_blit_image_read_image_geometry.image_128_r32_uint,Crash diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index b85d5a5cdfb..b1444977190 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -3677,6 +3677,10 @@ void anv_DestroyDevice( struct anv_physical_device *pdevice = device->physical; + for (uint32_t i = 0; i < device->queue_count; i++) + anv_queue_finish(&device->queues[i]); + vk_free(&device->vk.alloc, device->queues); + anv_device_utrace_finish(device); anv_device_finish_blorp(device); @@ -3756,10 +3760,6 @@ void anv_DestroyDevice( pthread_cond_destroy(&device->queue_submit); pthread_mutex_destroy(&device->mutex); - for (uint32_t i = 0; i < device->queue_count; i++) - anv_queue_finish(&device->queues[i]); - vk_free(&device->vk.alloc, device->queues); - ralloc_free(device->fp64_nir); anv_device_destroy_context_or_vm(device);