commit | a9d7b76f6a5824fd2d36ce11fa0a1a1c504f1104 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Fri Jul 10 08:28:20 2020 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Fri Jul 10 08:52:13 2020 +0200 |
tree | e840173fe16ad70baa5d0c21e32502bcf1b55155 | |
parent | 86891278164d84797406ddcf67c0e11c8b433414 [diff] |
MINOR: connection: use MT_LIST_ADDQ() to add connections to idle lists When a connection is added to an idle list, it's already detached and cannot be seen by two threads at once, so there's no point using TRY_ADDQ, there will never be any conflict. Let's just use the cheaper ADDQ.