commit | 86891278164d84797406ddcf67c0e11c8b433414 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Fri Jul 10 08:22:26 2020 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Fri Jul 10 08:52:13 2020 +0200 |
tree | 44298afe23a648c7c4595aa5fb8aeed7002635c7 | |
parent | de4db17dee727f74668cca0e5e6d90a3cdf0c2cf [diff] |
MINOR: buffer: use MT_LIST_ADDQ() for buffer_wait lists additions The TRY_ADDQ there was not needed since the wait list is exclusively owned by the caller. There's a preliminary test on MT_LIST_ADDED() that might have been eliminated by keeping MT_LIST_TRY_ADDQ() but it would have required two more expensive writes before testing so better keep the test the way it is.