diff options
author | Chunming Zhou <David1.Zhou@amd.com> | 2015-12-07 02:02:52 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2015-12-09 00:18:33 -0500 |
commit | e410b5cbabe70b1f1da08146481f6bd7e904643c (patch) | |
tree | 0184b2e5e16d37abd59407e1012e67fb49d46cf2 /drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c | |
parent | df4d4aa96d1db1657e14b848a341fc614c8d61eb (diff) |
drm/amdgpu: fix the lost duplicates checking
Signed-off-by: Chunming Zhou <David1.Zhou@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Jammy Zhou <Jammy.Zhou@amd.com>
Cc: stable@vger.kernel.org
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c index f6ea4b43a60c..9c253c535d26 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c | |||
@@ -477,6 +477,14 @@ static void amdgpu_gem_va_update_vm(struct amdgpu_device *adev, | |||
477 | if (domain == AMDGPU_GEM_DOMAIN_CPU) | 477 | if (domain == AMDGPU_GEM_DOMAIN_CPU) |
478 | goto error_unreserve; | 478 | goto error_unreserve; |
479 | } | 479 | } |
480 | list_for_each_entry(entry, &duplicates, head) { | ||
481 | domain = amdgpu_mem_type_to_domain(entry->bo->mem.mem_type); | ||
482 | /* if anything is swapped out don't swap it in here, | ||
483 | just abort and wait for the next CS */ | ||
484 | if (domain == AMDGPU_GEM_DOMAIN_CPU) | ||
485 | goto error_unreserve; | ||
486 | } | ||
487 | |||
480 | r = amdgpu_vm_update_page_directory(adev, bo_va->vm); | 488 | r = amdgpu_vm_update_page_directory(adev, bo_va->vm); |
481 | if (r) | 489 | if (r) |
482 | goto error_unreserve; | 490 | goto error_unreserve; |