All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/nouveau: Check rc from drm_dp_mst_topology_mgr_resume()
@ 2018-11-15  1:39 Lyude Paul
       [not found] ` <20181115013954.587-1-lyude-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Lyude Paul @ 2018-11-15  1:39 UTC (permalink / raw)
  To: nouveau
  Cc: stable, Ben Skeggs, David Airlie, Daniel Vetter,
	Ville Syrjälä, Sean Paul, Ilia Mirkin, dri-devel,
	linux-kernel

We need to actually make sure we check this on resume since otherwise we
won't know whether or not the topology is still there once we've
resumed, which will cause us to still think the topology is connected
even after it's been removed if the removal happens mid-suspend.

Signed-off-by: Lyude Paul <lyude@redhat.com>
Cc: stable@vger.kernel.org
---
 drivers/gpu/drm/nouveau/dispnv50/disp.c | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/nouveau/dispnv50/disp.c b/drivers/gpu/drm/nouveau/dispnv50/disp.c
index 6cbbae3f438b..6aa3521b6326 100644
--- a/drivers/gpu/drm/nouveau/dispnv50/disp.c
+++ b/drivers/gpu/drm/nouveau/dispnv50/disp.c
@@ -1255,8 +1255,16 @@ nv50_mstm_fini(struct nv50_mstm *mstm)
 static void
 nv50_mstm_init(struct nv50_mstm *mstm)
 {
-	if (mstm && mstm->mgr.mst_state)
-		drm_dp_mst_topology_mgr_resume(&mstm->mgr);
+	int ret;
+
+	if (!mstm || !mstm->mgr.mst_state)
+		return;
+
+	ret = drm_dp_mst_topology_mgr_resume(&mstm->mgr);
+	if (ret == -1) {
+		drm_dp_mst_topology_mgr_set_mst(&mstm->mgr, false);
+		drm_kms_helper_hotplug_event(mstm->mgr.dev);
+	}
 }
 
 static void
-- 
2.19.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2018-11-24 15:36 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-15  1:39 [PATCH] drm/nouveau: Check rc from drm_dp_mst_topology_mgr_resume() Lyude Paul
     [not found] ` <20181115013954.587-1-lyude-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2018-11-15 18:05   ` Sasha Levin
2018-11-17  6:05   ` Sasha Levin
2018-11-17  6:05     ` Sasha Levin
     [not found]     ` <20181117060553.A23C020858-+nuXSHJNwjE76Z2rM5mHXA@public.gmane.org>
2018-11-24 15:36       ` Karol Herbst
2018-11-24 15:36         ` [Nouveau] " Karol Herbst
     [not found]         ` <CACO55tvVMt=Rk2nUqtXAvet-zmZ4VMuKHi2fiK+vu-P0NhVscQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2018-11-24 15:36           ` Karol Herbst
2018-11-24 15:36             ` [Nouveau] " Karol Herbst

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.