commit | 3dd0c4e20eea1b3169417484c4ad10bef0990598 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Fri Oct 26 00:58:22 2012 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Fri Oct 26 01:13:24 2012 +0200 |
tree | ffa866f68f4686b5e57b56892ef1b7e5c0f371c7 | |
parent | 24e6d972aa6388455b501074f34ff098592c870b [diff] |
OPTIM: tools: inline hex2i() This tiny function was not inlined because initially not much used. However it's been used un the chunk parser for a while and it became one of the most CPU-cycle eater there. By inlining it, the chunk parser speed was increased by 74 %. We're almost 3 times faster than original with just the last 4 commits.