Explicitly sync VM updates to the moving fence in PDs and PTs.
Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
 {
        unsigned int i;
        uint64_t value;
+       int r;
+
+       if (bo->tbo.moving) {
+               r = dma_fence_wait(bo->tbo.moving, true);
+               if (r)
+                       return r;
+       }
 
        pe += (unsigned long)amdgpu_bo_kptr(bo);
 
 
        uint64_t *pte;
        int r;
 
+       /* Wait for PD/PT moves to be completed */
+       r = amdgpu_sync_fence(&p->job->sync, bo->tbo.moving, false);
+       if (r)
+               return r;
+
        do {
                ndw = p->num_dw_left;
                ndw -= p->job->ibs->length_dw;