* [PATCH] drm/mst: update the link_address_sent before sending the link address
@ 2015-09-05 7:44 Dave Airlie
0 siblings, 0 replies; only message in thread
From: Dave Airlie @ 2015-09-05 7:44 UTC (permalink / raw)
To: dri-devel
There is a race where the reply could get processed by another
work queue before we've updated the state.
Update the state before sending the msg to close it.
Pointed out by Adam J Richter on
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=91481
Signed-off-by: Dave Airlie <airlied@redhat.com>
---
drivers/gpu/drm/drm_dp_mst_topology.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/drm_dp_mst_topology.c b/drivers/gpu/drm/drm_dp_mst_topology.c
index e23df5f..18c2a74 100644
--- a/drivers/gpu/drm/drm_dp_mst_topology.c
+++ b/drivers/gpu/drm/drm_dp_mst_topology.c
@@ -1106,8 +1106,8 @@ static void drm_dp_add_port(struct drm_dp_mst_branch *mstb,
ret = drm_dp_port_setup_pdt(port);
if (ret == true) {
- drm_dp_send_link_address(mstb->mgr, port->mstb);
port->mstb->link_address_sent = true;
+ drm_dp_send_link_address(mstb->mgr, port->mstb);
}
}
@@ -1203,8 +1203,8 @@ static void drm_dp_check_and_send_link_address(struct drm_dp_mst_topology_mgr *m
struct drm_dp_mst_port *port;
struct drm_dp_mst_branch *mstb_child;
if (!mstb->link_address_sent) {
- drm_dp_send_link_address(mgr, mstb);
mstb->link_address_sent = true;
+ drm_dp_send_link_address(mgr, mstb);
}
list_for_each_entry(port, &mstb->ports, next) {
if (port->input)
--
2.4.3
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-09-05 7:49 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-05 7:44 [PATCH] drm/mst: update the link_address_sent before sending the link address Dave Airlie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox