Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1593800
| From | Shannon Nelson <shannon.nelson@oracle.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH net-next 4/5] sunvnet: count multicast packets |
| Date | 2017-03-07 00:50 +0100 |
| Message-ID | <tiay6-78t-5@gated-at.bofh.it> (permalink) |
| References | <tiay6-78t-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Make sure multicast packets get counted in the device. Signed-off-by: Shannon Nelson <shannon.nelson@oracle.com> --- drivers/net/ethernet/sun/sunvnet_common.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/net/ethernet/sun/sunvnet_common.c b/drivers/net/ethernet/sun/sunvnet_common.c index 8afc659..7eb53af 100644 --- a/drivers/net/ethernet/sun/sunvnet_common.c +++ b/drivers/net/ethernet/sun/sunvnet_common.c @@ -410,6 +410,8 @@ static int vnet_rx_one(struct vnet_port *port, struct vio_net_desc *desc) skb->ip_summed = port->switch_port ? CHECKSUM_NONE : CHECKSUM_PARTIAL; + if (unlikely(is_multicast_ether_addr(eth_hdr(skb)->h_dest))) + dev->stats.multicast++; dev->stats.rx_packets++; dev->stats.rx_bytes += len; port->stats.rx_packets++; -- 1.7.1
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH net-next 4/5] sunvnet: count multicast packets Shannon Nelson <shannon.nelson@oracle.com> - 2017-03-07 00:50 +0100
csiph-web