commit | c8987b3664a703440ed80a2086d262898873d173 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Fri Dec 06 23:43:17 2013 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Mon Dec 09 16:06:22 2013 +0100 |
tree | e91c294fe6a113271ed9ac7826120d04b6951456 | |
parent | 721854f0ac442754aa315b270e8fb62ef6bf615a [diff] |
DIET/MINOR: http: reduce the size of struct http_txn by 8 bytes Here again we had some oversized and misaligned entries. The method and the status don't need 4 bytes each, and there was a hole after the status that does not exist anymore. That's 8 additional bytes saved from http_txn and as much for the session. Also some fields were slightly moved to present better memory access patterns resulting in a steady 0.5% performance increase.