i was looking to add bytes transmited to
/net/ether?/stats accounting but was derailed
because the existing accounting seems
inaccurate.
i'm pretty sure that etheroq can be called
concurrently on the same ether, so doesn't
that make the outpackets inaccurate at
high packet rates on an mp machine?
even if outpackets were not a vlong, it
would still be a seperate load and store
and meanwhile another processor could
have stored.
static int
etheroq(Ether* ether, Block* bp)
{
int len, loopback, s;
Etherpkt *pkt;
ether->outpackets++;
for my public-facing 8169 chip operating
at a pitiful 10mbps, i do see evidence that
this really happens:
out: 16703370 from stats (e.g. ether->outpackets)
TxOk: 16607827 from the chip's accounting (ifstats)
(i'm pretty sure that lockstats.inglare and
friends in taslock.c have the same issue.)
in any event, it seems like there's got to
be a better way than adding a big fat lock
in the middle of the ether tx and rx paths.
seems like in the ether-specific functions
are going to lock things down at some point,
so maybe that accounting would be better
there?
- erik