9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] inaccurate etheroq accounting
@ 2009-08-11 20:21 erik quanstrom
  0 siblings, 0 replies; only message in thread
From: erik quanstrom @ 2009-08-11 20:21 UTC (permalink / raw)
  To: 9fans

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



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-08-11 20:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-08-11 20:21 [9fans] inaccurate etheroq accounting erik quanstrom

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).