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]--;
 	}