more network performance info: ether_output()
Luigi Rizzo
rizzo at iet.unipi.it
Fri Apr 20 18:43:40 UTC 2012
Continuing my profiling on network performance, another place
were we waste a lot of time is if_ethersubr.c::ether_output()
In particular, from the beginning of ether_output() to the
final call to ether_output_frame() the code takes slightly
more than 210ns on my i7-870 CPU running at 2.93 GHz + TurboBoost.
In particular:
- the route does not have a MAC address (lle) attached, which causes
arpresolve() to be called all the times. This consumes about 100ns.
It happens also with locally sourced TCP.
Using the flowtable cuts this time down to about 30-40ns
- another 100ns is spend to copy the MAC header into the mbuf,
and then check whether a local copy should be looped back.
Unfortunately the code here is a bit convoluted so the
header fields are copied twice, and using memcpy on the
individual pieces.
Note that all the above happens not just with my udp flooding
tests, but also with regular TCP traffic.
cheers
luigi
More information about the freebsd-net
mailing list