Module: Mesa Branch: master Commit: 1cda9a2fee05effd9c64bd773bc6005281593662 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=1cda9a2fee05effd9c64bd773bc6005281593662
Author: Marek Olšák <[email protected]> Date: Thu Sep 7 00:32:39 2017 +0200 winsys/amdgpu: disable local BOs on Raven It hangs with a high degree of reproducibility. Acked-by: Nicolai Hähnle <[email protected]> --- src/gallium/winsys/amdgpu/drm/amdgpu_bo.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c b/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c index 897b4f0596..4e9022f909 100644 --- a/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c +++ b/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c @@ -411,7 +411,8 @@ static struct amdgpu_winsys_bo *amdgpu_create_bo(struct amdgpu_winsys *ws, if (flags & RADEON_FLAG_GTT_WC) request.flags |= AMDGPU_GEM_CREATE_CPU_GTT_USWC; if (flags & RADEON_FLAG_NO_INTERPROCESS_SHARING && - ws->info.drm_minor >= 20) + ws->info.drm_minor >= 20 && + ws->info.family != CHIP_RAVEN) request.flags |= AMDGPU_GEM_CREATE_VM_ALWAYS_VALID; r = amdgpu_bo_alloc(ws->dev, &request, &buf_handle); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
