aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-01-27 11:55:44 -0800
committerGravatar Craig Tiller <ctiller@google.com>2016-01-27 11:55:44 -0800
commit493c15113e5b832a21a81a36a18bc6e6cff2e2f3 (patch)
treebebd60bc309139e037e5bfb5a0e6c74cf336cc0c /src/core
parent08f1d8e9923928267e6130295ff5786f0b35ab2f (diff)
Add comment
Diffstat (limited to 'src/core')
-rw-r--r--src/core/client_config/subchannel.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/client_config/subchannel.c b/src/core/client_config/subchannel.c
index e39b7fcf32..748eef9bed 100644
--- a/src/core/client_config/subchannel.c
+++ b/src/core/client_config/subchannel.c
@@ -519,6 +519,10 @@ static void publish_transport(grpc_exec_ctx *exec_ctx, grpc_subchannel *c) {
}
/* publish */
+ /* TODO(ctiller): this full barrier seems to clear up a TSAN failure.
+ I'd have expected the rel_cas below to be enough, but
+ seemingly it's not.
+ Re-evaluate if we really need this. */
gpr_atm_full_barrier();
GPR_ASSERT(gpr_atm_rel_cas(&c->connected_subchannel, 0, (gpr_atm)con));
c->connecting = 0;