All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/amdgpu: fix clear_all and replace handling in the VM
@ 2018-06-04 10:59 Christian König
       [not found] ` <20180604105952.72796-1-christian.koenig-5C7GfCeVMHo@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: Christian König @ 2018-06-04 10:59 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW

We need to put the lose ends on the invalid list because it is possible
that we need to split up huge pages for them.

Signed-off-by: Christian König <christian.koenig@amd.com>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c
index ccba88cc8c54..dec8a793d38d 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c
@@ -2123,7 +2123,7 @@ int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
 			before->last = saddr - 1;
 			before->offset = tmp->offset;
 			before->flags = tmp->flags;
-			list_add(&before->list, &tmp->list);
+			list_add(&before->list, &tmp->bo_va->invalids);
 		}
 
 		/* Remember mapping split at the end */
@@ -2133,7 +2133,7 @@ int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
 			after->offset = tmp->offset;
 			after->offset += after->start - tmp->start;
 			after->flags = tmp->flags;
-			list_add(&after->list, &tmp->list);
+			list_add(&after->list, &tmp->bo_va->invalids);
 		}
 
 		list_del(&tmp->list);
-- 
2.14.1

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-06-05  9:01 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-04 10:59 [PATCH] drm/amdgpu: fix clear_all and replace handling in the VM Christian König
     [not found] ` <20180604105952.72796-1-christian.koenig-5C7GfCeVMHo@public.gmane.org>
2018-06-04 11:02   ` Michel Dänzer
     [not found]     ` <96ad02c2-4792-a12e-3002-385f30140971-otUistvHUpPR7s880joybQ@public.gmane.org>
2018-06-05  8:45       ` Christian König
     [not found]         ` <c9988a0c-9166-fb64-87d5-d848995e3e6d-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2018-06-05  8:47           ` Zhang, Jerry (Junwei)
     [not found]             ` <5B164E24.6080004-5C7GfCeVMHo@public.gmane.org>
2018-06-05  8:54               ` Christian König
     [not found]                 ` <5c0183aa-115b-f9c9-4159-5aaaa9a871c2-5C7GfCeVMHo@public.gmane.org>
2018-06-05  9:01                   ` Zhang, Jerry (Junwei)

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.