diff options
author | Christian König <[email protected]> | 2019-03-14 09:10:01 +0100 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2019-09-16 10:42:55 -0500 |
commit | 807e2994092c0bd863c0141c99f5e3f807d4c7f8 (patch) | |
tree | 45fec8f8a69063fc9de73644f967b2863d149304 /drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | |
parent | 47ca7efa4c13f8698cddc0b9c96938e7febe9258 (diff) |
drm/amdgpu: allow direct submission of PDE updates v2
For handling PDE updates directly in the fault handler.
v2: fix typo in comment
Signed-off-by: Christian König <[email protected]>
Reviewed-by: Felix Kuehling <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c index f6537476b542..49b767b7238f 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c @@ -847,7 +847,7 @@ static int amdgpu_cs_vm_handling(struct amdgpu_cs_parser *p) if (r) return r; - r = amdgpu_vm_update_directories(adev, vm); + r = amdgpu_vm_update_pdes(adev, vm, false); if (r) return r; |