From: Ben Hutchings <bhutchings@solarflare.com>
To: "Choi, David" <David.Choi@Micrel.Com>
Cc: "davem@davemloft.net" <davem@davemloft.net>,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
"Doong, Ping" <Ping.Doong@Micrel.Com>
Subject: Re: [patch 3.8-rc2] drivers/net/ethernet/micrel/ks8851_mll
Date: Wed, 9 Jan 2013 20:59:12 +0000 [thread overview]
Message-ID: <1357765152.2654.9.camel@bwh-desktop.uk.solarflarecom.com> (raw)
In-Reply-To: <FD9AD8C5375B924CABC56D982DB3A802079D2520@EXMB1.micrel.com>
Again this needs a proper subject, like 'ks8851_mll: Implement basic
statistics'.
It should be based on the 'net-next' tree.
On Wed, 2013-01-09 at 20:17 +0000, Choi, David wrote:
> From: David J. Choi <david.choi@micrel.com>
>
> Summary of changes:
> .add codes to collect statistical information(for example rx/tx packets/bytes, error packets)
> about Ethernet packets.
>
> Signed-off-by: David J. Choi <david.choi@micrel.com>
> ---
>
> --- linux-3.8-rc2/drivers/net/ethernet/micrel/ks8851_mll.c.orig 2013-01-03 09:45:57.830447923 -0800
> +++ linux-3.8-rc2/drivers/net/ethernet/micrel/ks8851_mll.c 2013-01-03 10:05:57.675756568 -0800
> @@ -801,7 +801,14 @@ static void ks_rcv(struct ks_net *ks, st
> skb_put(skb, frame_hdr->len);
> skb->protocol = eth_type_trans(skb, netdev);
> netif_rx(skb);
> + netdev->stats.rx_packets++;
> + netdev->stats.rx_bytes += (frame_hdr->len - 4);
You're subtracting 4 for the CRC? That really shouldn't be visible to
the kernel (unless the NETIF_F_RXFCS feature is enabled on the device).
So you should also substract 4 from the length passed to skb_put().
(That would be a separate patch, probably suitable for the 'net' tree.)
> } else {
> + netdev->stats.rx_dropped++;
> + if ((frame_hdr->len >= RX_BUF_SIZE) || (frame_hdr->len == 0))
> + netdev->stats.rx_length_errors++;
> + if (frame_hdr->sts & RXFSHR_RXFV)
> + netdev->stats.rx_frame_errors++;
[...]
These two increment statements are indented wrongly.
Ben.
--
Ben Hutchings, Staff Engineer, Solarflare
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.
prev parent reply other threads:[~2013-01-09 20:59 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-09 20:17 [patch 3.8-rc2] drivers/net/ethernet/micrel/ks8851_mll Choi, David
2013-01-09 20:59 ` Ben Hutchings [this message]
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=1357765152.2654.9.camel@bwh-desktop.uk.solarflarecom.com \
--to=bhutchings@solarflare.com \
--cc=David.Choi@Micrel.Com \
--cc=Ping.Doong@Micrel.Com \
--cc=davem@davemloft.net \
--cc=netdev@vger.kernel.org \
/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