mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 02:28:10 +02:00
Revert "winsys/amdgpu: disable local BOs on Raven"
This reverts commit 1cda9a2fee.
It works now.
This commit is contained in:
parent
1a172fb113
commit
4ba20c9473
1 changed files with 1 additions and 2 deletions
|
|
@ -411,8 +411,7 @@ 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.family != CHIP_RAVEN)
|
||||
ws->info.drm_minor >= 20)
|
||||
request.flags |= AMDGPU_GEM_CREATE_VM_ALWAYS_VALID;
|
||||
|
||||
r = amdgpu_bo_alloc(ws->dev, &request, &buf_handle);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue