drm/mst: Fix error handling during MST sideband message reception
authorImre Deak <[email protected]>
Wed, 19 Jul 2017 11:43:28 +0000 (14:43 +0300)
committerDaniel Vetter <[email protected]>
Thu, 20 Jul 2017 08:20:30 +0000 (10:20 +0200)
Handle any error due to partial reads, timeouts etc. to avoid parsing
uninitialized data subsequently. Also bail out if the parsing itself
fails.

Cc: Dave Airlie <[email protected]>
Cc: Lyude <[email protected]>
Cc: Daniel Vetter <[email protected]>
Signed-off-by: Imre Deak <[email protected]>
Reviewed-by: Lyude <[email protected]>
Cc: [email protected]
Signed-off-by: Daniel Vetter <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
drivers/gpu/drm/drm_dp_mst_topology.c

index bfd237c15e76e8cfe9f3c78ffd555f42390a7d5e..ce0e58442939b1efb24c4a9ccb27ba194a96dcfb 100644 (file)
@@ -2196,11 +2196,17 @@ static void drm_dp_get_one_sb_msg(struct drm_dp_mst_topology_mgr *mgr, bool up)
                ret = drm_dp_dpcd_read(mgr->aux, basereg + curreply,
                                    replyblock, len);
                if (ret != len) {
-                       DRM_DEBUG_KMS("failed to read a chunk\n");
+                       DRM_DEBUG_KMS("failed to read a chunk (len %d, ret %d)\n",
+                                     len, ret);
+                       return;
                }
+
                ret = drm_dp_sideband_msg_build(msg, replyblock, len, false);
-               if (ret == false)
+               if (!ret) {
                        DRM_DEBUG_KMS("failed to build sideband msg\n");
+                       return;
+               }
+
                curreply += len;
                replylen -= len;
        }