commit | 0cf33176bdb84fe8633f634620ce543b7ffe15d1 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Wed Mar 06 15:26:33 2019 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Thu Mar 07 14:08:26 2019 +0100 |
tree | e34cceb3ca6583bfe7fcff9c701e1703b5d1145b | |
parent | 9f1d4e7f7fbd249aed553d8c3b82e1fb35b14746 [diff] |
MINOR: listener: move thr_idx from the bind_conf to the listener Tests show that it's slightly faster to have this field in the listener. The cache walk patterns are under heavy stress and having only this field written to in the bind_conf was wasting a cache line that was heavily read. Let's move this close to the other entries already written to in the listener. Warning, the position does have an impact on peak performance.