commit | e9df7d7f584666533b1bdfcf5c60a43d64689198 | [log] [tgz] |
---|---|---|
author | Benjamin LaHaise <benjamin.c.lahaise@intel.com> | Mon Mar 20 21:29:05 2006 -0800 |
committer | David S. Miller <davem@davemloft.net> | Mon Mar 20 21:29:05 2006 -0800 |
tree | 78faaa085edfb24784e40779864d41fd9ddeb168 | |
parent | 231d06ae826664b83369166449144304859a62fa [diff] |
[AF_UNIX]: use shift instead of integer division The patch below replaces a divide by 2 with a shift -- sk_sndbuf is an integer, so gcc emits an idiv, which takes 10x longer than a shift by 1. This improves af_unix bandwidth by ~6-10K/s. Also, tidy up the comment to fit in 80 columns while we're at it. Signed-off-by: Benjamin LaHaise <benjamin.c.lahaise@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>