drm/amdgpu: reduce redundant uvd context lost warning message
authorLe Ma <le.ma@amd.com>
Wed, 27 Nov 2019 08:51:22 +0000 (16:51 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 5 Dec 2019 21:26:20 +0000 (16:26 -0500)
Move the print out of uvd instance loop in amdgpu_uvd_suspend

v2: drop unnecessary brackets
v3: grab ras_intr state once for multiple times use

Signed-off-by: Le Ma <le.ma@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.c

index e324bfe..d587ffe 100644 (file)
@@ -349,6 +349,7 @@ int amdgpu_uvd_suspend(struct amdgpu_device *adev)
        unsigned size;
        void *ptr;
        int i, j;
+       bool in_ras_intr = amdgpu_ras_intr_triggered();
 
        cancel_delayed_work_sync(&adev->uvd.idle_work);
 
@@ -376,13 +377,15 @@ int amdgpu_uvd_suspend(struct amdgpu_device *adev)
                        return -ENOMEM;
 
                /* re-write 0 since err_event_athub will corrupt VCPU buffer */
-               if (amdgpu_ras_intr_triggered()) {
-                       DRM_WARN("UVD VCPU state may lost due to RAS ERREVENT_ATHUB_INTERRUPT\n");
+               if (in_ras_intr)
                        memset(adev->uvd.inst[j].saved_bo, 0, size);
-               } else {
+               else
                        memcpy_fromio(adev->uvd.inst[j].saved_bo, ptr, size);
-               }
        }
+
+       if (in_ras_intr)
+               DRM_WARN("UVD VCPU state may lost due to RAS ERREVENT_ATHUB_INTERRUPT\n");
+
        return 0;
 }