summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/nvgpu/vgpu/mm_vgpu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/vgpu/mm_vgpu.c b/drivers/gpu/nvgpu/vgpu/mm_vgpu.c
index 9b7c7dbd..b3a8a885 100644
--- a/drivers/gpu/nvgpu/vgpu/mm_vgpu.c
+++ b/drivers/gpu/nvgpu/vgpu/mm_vgpu.c
@@ -116,7 +116,7 @@ static u64 vgpu_locked_gmmu_map(struct vm_gk20a *vm,
116 if (err || msg.ret) 116 if (err || msg.ret)
117 goto fail; 117 goto fail;
118 118
119 g->ops.mm.tlb_invalidate(vm); 119 /* TLB invalidate handled on server side */
120 120
121 return map_offset; 121 return map_offset;
122fail: 122fail:
@@ -158,7 +158,7 @@ static void vgpu_locked_gmmu_unmap(struct vm_gk20a *vm,
158 dev_err(dev_from_vm(vm), 158 dev_err(dev_from_vm(vm),
159 "failed to update gmmu ptes on unmap"); 159 "failed to update gmmu ptes on unmap");
160 160
161 g->ops.mm.tlb_invalidate(vm); 161 /* TLB invalidate handled on server side */
162} 162}
163 163
164static void vgpu_vm_remove_support(struct vm_gk20a *vm) 164static void vgpu_vm_remove_support(struct vm_gk20a *vm)