aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/display
diff options
context:
space:
mode:
authorJerry Zuo <Jerry.Zuo@amd.com>2017-10-06 15:08:07 -0400
committerAlex Deucher <alexander.deucher@amd.com>2017-10-21 16:49:53 -0400
commit9bbc30310f240c9400e31c7ab7b7edd2b76b3589 (patch)
treed8acb6d548e14e62534234e67c7c7ef85862ee8a /drivers/gpu/drm/amd/display
parentdrm/amd/display: Do not set bandwidth on page flips. (diff)
downloadlinux-9bbc30310f240c9400e31c7ab7b7edd2b76b3589.tar.gz
linux-9bbc30310f240c9400e31c7ab7b7edd2b76b3589.zip
drm/amd/display: Remove a false-positive error message
To avoid confusion, need to suppress the error message when get -ERESTARTSYS error code. It is normal when getting interrupted by signals in the process of a wait for the buffer to become unreserved. Only propagate to user-mode for further action, no need to pop up error message. Signed-off-by: Jerry Zuo <Jerry.Zuo@amd.com> Reviewed-by: Sun peng Li <Sunpeng.Li@amd.com> Acked-by: Harry Wentland <Harry.Wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display')
-rw-r--r--drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
index 17fb636648f4..09163d8d9332 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
@@ -1790,7 +1790,9 @@ static int get_fb_info(const struct amdgpu_framebuffer *amdgpu_fb,
int r = amdgpu_bo_reserve(rbo, false);
if (unlikely(r)) {
- DRM_ERROR("Unable to reserve buffer\n");
+ // Don't show error msg. when return -ERESTARTSYS
+ if (r != -ERESTARTSYS)
+ DRM_ERROR("Unable to reserve buffer: %d\n", r);
return r;
}