diff options
author | Marek Olšák <[email protected]> | 2015-09-01 04:14:33 +0200 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-09-06 19:00:32 +0100 |
commit | 747cd2c27382f4cdd1cb9149447b677af340335e (patch) | |
tree | 7df51c73c742f1352a1f895b048486298f64ed37 /src | |
parent | ecdd69cd0509119adfd01c4fed512609963d0720 (diff) |
winsys/amdgpu: remove exported buffers from the cache
Cc: 11.0 <[email protected]>
Reviewed-by: Alex Deucher <[email protected]>
(cherry picked from commit 54964c77510b060806615c842692c0f393e807e6)
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/winsys/amdgpu/drm/amdgpu_bo.c | 3 |
1 files changed, 3 insertions, 0 deletions
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; |