commit | 237985b22800113ac35983626b0a4b22aadee6af | [log] [tgz] |
---|---|---|
author | Olivier Houchard <ohouchard@haproxy.com> | Wed Mar 13 18:52:21 2019 +0100 |
committer | Olivier Houchard <cognet@ci0.org> | Thu Mar 14 15:55:15 2019 +0100 |
tree | ace3ffaad39f42d7202d72e2e0f7999921e9baa6 | |
parent | 9f8d821a5554de765e89267d02f7caafb9972f77 [diff] |
MEDIUM: connections: Use _HA_ATOMIC_* Use _HA_ATOMIC_ instead of HA_ATOMIC_ because we know we don't need barriers
diff --git a/include/proto/connection.h b/include/proto/connection.h index 1326a15..dba8dea 100644 --- a/include/proto/connection.h +++ b/include/proto/connection.h
@@ -693,7 +693,7 @@ */ if (conn->idle_time > 0) { struct server *srv = __objt_server(conn->target); - HA_ATOMIC_SUB(&srv->curr_idle_conns, 1); + _HA_ATOMIC_SUB(&srv->curr_idle_conns, 1); srv->curr_idle_thr[tid]--; }