[Mesa-dev] [PATCH] radv: for external memory imports close the fd on import success
Jason Ekstrand
jason at jlekstrand.net
Mon Jul 24 02:54:31 UTC 2017
Reciewed-by: Jason Ekstrand <jason at jlekstrand.net>
On July 23, 2017 7:51:44 PM Dave Airlie <airlied at gmail.com> wrote:
> From: Dave Airlie <airlied at redhat.com>
>
> If we get an fd, we need to close it before returning.
>
> Fixes CTS test
> dEQP-VK.api.external.memory.opaque_fd.dedicated.device_only.import_multiple_times
>
> Fixes: b70829708a (radv: Implement VK_KHR_external_memory)
> Signed-off-by: Dave Airlie <airlied at redhat.com>
> ---
> src/amd/vulkan/radv_device.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c
> index 3f83b61..40b2f34 100644
> --- a/src/amd/vulkan/radv_device.c
> +++ b/src/amd/vulkan/radv_device.c
> @@ -2253,8 +2253,10 @@ VkResult radv_AllocateMemory(
> if (!mem->bo) {
> result = VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR;
> goto fail;
> - } else
> + } else {
> + close(import_info->fd);
> goto out_success;
> + }
> }
>
> uint64_t alloc_size = align_u64(pAllocateInfo->allocationSize, 4096);
> --
> 2.9.4
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev
More information about the mesa-dev
mailing list