mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 17:13:52 +02:00
drm/amdgpu: validate duplicates first
Most VM BOs end up in the duplicates list, validate it first make -ENOMEM less likely. Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Chunming Zhou <David1.Zhou@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
eceb8a1562
commit
d8e0cae645
|
|
@ -421,11 +421,11 @@ static int amdgpu_cs_parser_relocs(struct amdgpu_cs_parser *p)
|
||||||
|
|
||||||
amdgpu_vm_get_pt_bos(&fpriv->vm, &duplicates);
|
amdgpu_vm_get_pt_bos(&fpriv->vm, &duplicates);
|
||||||
|
|
||||||
r = amdgpu_cs_list_validate(p->adev, &fpriv->vm, &p->validated);
|
r = amdgpu_cs_list_validate(p->adev, &fpriv->vm, &duplicates);
|
||||||
if (r)
|
if (r)
|
||||||
goto error_validate;
|
goto error_validate;
|
||||||
|
|
||||||
r = amdgpu_cs_list_validate(p->adev, &fpriv->vm, &duplicates);
|
r = amdgpu_cs_list_validate(p->adev, &fpriv->vm, &p->validated);
|
||||||
|
|
||||||
error_validate:
|
error_validate:
|
||||||
if (r) {
|
if (r) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user