From: Marek Olšák Date: Tue, 1 Sep 2015 02:14:33 +0000 (+0200) Subject: winsys/amdgpu: remove exported buffers from the cache X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=54964c77510b060806615c842692c0f393e807e6;p=mesa.git winsys/amdgpu: remove exported buffers from the cache Cc: 11.0 Reviewed-by: Alex Deucher --- diff --git a/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c b/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c index 50c42e3599a..fe55dc3108a 100644 --- a/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c +++ b/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c @@ -684,6 +684,9 @@ static boolean amdgpu_bo_get_handle(struct pb_buffer *buffer, enum amdgpu_bo_handle_type type; int r; + if ((void*)bo != (void*)buffer) + pb_cache_manager_remove_buffer(buffer); + switch (whandle->type) { case DRM_API_HANDLE_TYPE_SHARED: type = amdgpu_bo_handle_type_gem_flink_name;