commit | b238b12e98f402e4bb042d9fda639b891da595a3 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Wed Mar 06 19:34:25 2019 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Thu Mar 07 11:45:44 2019 +0100 |
tree | fb8650652c9a21a26a2cf6506b6a6aeeb92468e5 | |
parent | c5bd311b2a2caa2435ec8b830a492d9e8f0aa131 [diff] |
MINOR: task: use LIST_DEL_INIT() to remove a task from the queue By using LIST_DEL_INIT() instead of LIST_DEL()+LIST_INIT() we manage to bump the peak connection rate by no less than 3% on 8 threads. The perf top profile shows much less contention in this area which suffered from the second reload.