netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ben Greear <greearb@candelatech.com>
To: "David S. Miller" <davem@redhat.com>
Cc: netdev@oss.sgi.com
Subject: Re: How to count tx and rx bytes?
Date: Mon, 15 Dec 2003 14:46:59 -0800	[thread overview]
Message-ID: <3FDE39E3.4000408@candelatech.com> (raw)
In-Reply-To: <20031215141729.15387fc1.davem@redhat.com>

David S. Miller wrote:
> On Mon, 15 Dec 2003 12:03:58 -0800
> Ben Greear <greearb@candelatech.com> wrote:
> 
> 
>>Is there an agreed upon standard for exactly what ethernet drivers
>>should be counting for rx-bytes and tx-bytes?  For example, should the
>>counters include the 4-byte FCS?  Should they include the ethernet header?
> 
> 
> Good question.
> 
> It should be that all drivers use what skb->len ends up with at
> rx/tx time.

A more noticeable problem is what I found in e100:  It was adding
skb->len after doing eth_type_trans, which yanks off the ethernet
header...  I moved it before the eth_type_trans and I am getting
much better numbers.  It does appear that the e1000 is counting the
FCS in transmitted bytes, however, and unless we tell the e100 to
receive the FCS, it will not count those on receive.

> However, it is often faster to just let the hardware keep track
> of these statistics (tg3 is one example of a chip that can do
> this).  And sometimes these mechanisms take the FCS or whatever
> into account and this as you note makes the numbers different.

Maybe the stats-polling code in the driver could do the necessary subtraction
to remove the FCS from the results (ie, subtract (packets-since-last-sample * 4) bytes.

Thanks,
Ben

-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com

  parent reply	other threads:[~2003-12-15 22:46 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-12-15 20:03 How to count tx and rx bytes? Ben Greear
2003-12-15 22:17 ` David S. Miller
2003-12-15 22:40   ` Randy.Dunlap
2003-12-15 23:19     ` Donald Becker
2003-12-15 23:22       ` Randy.Dunlap
2003-12-15 22:46   ` Ben Greear [this message]
2003-12-15 22:54     ` David S. Miller
2003-12-15 23:17       ` Ben Greear
2003-12-16  0:08         ` David S. Miller
2003-12-16 13:38 ` Rask Ingemann Lambertsen
2003-12-16 15:45   ` Randy.Dunlap
2003-12-16 19:38     ` Ben Greear

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3FDE39E3.4000408@candelatech.com \
    --to=greearb@candelatech.com \
    --cc=davem@redhat.com \
    --cc=netdev@oss.sgi.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).