<html>
<head>
<meta content="text/html; charset=windows-1252"
http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#FFFFFF">
<p><br>
</p>
<br>
<div class="moz-cite-prefix">On 2017-10-26 04:08 PM, Harry Wentland
wrote:<br>
</div>
<blockquote cite="mid:20171026200801.14662-1-harry.wentland@amd.com"
type="cite">
<pre wrap="">v2: Also don't print for ERESTARTSYS or EAGAIN
Signed-off-by: Harry Wentland <a class="moz-txt-link-rfc2396E" href="mailto:harry.wentland@amd.com"><harry.wentland@amd.com></a></pre>
</blockquote>
<br>
<pre wrap="">Reviewed-by: Andrey Grodzovsky <a class="moz-txt-link-rfc2396E" href="mailto:alexander.deucher@amd.com"><andrey.grodzovsky@amd.com></a></pre>
<br>
Thanks,<br>
Andrey<br>
<br>
<blockquote cite="mid:20171026200801.14662-1-harry.wentland@amd.com"
type="cite">
<pre wrap="">
---
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
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 cf15701f208d..4401f0fb3f02 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
@@ -2944,7 +2944,8 @@ static int dm_plane_helper_prepare_fb(struct drm_plane *plane,
amdgpu_bo_unreserve(rbo);
if (unlikely(r != 0)) {
- DRM_ERROR("Failed to pin framebuffer\n");
+ if (!(r == -EINTR || r == -ERESTARTSYS || r == EAGAIN))
+ DRM_ERROR("Failed to pin framebuffer with error %d\n", r);
return r;
}
</pre>
</blockquote>
<br>
</body>
</html>