aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/sun
diff options
context:
space:
mode:
authorShannon Nelson <shannon.nelson@oracle.com>2017-03-14 10:24:42 -0700
committerDavid S. Miller <davem@davemloft.net>2017-03-16 20:29:54 -0700
commitb12a96f5cd04583f45a1b6554b8f3786b26db913 (patch)
tree37b4ef6517d4774c7d363b52baed9d73b050638f /drivers/net/ethernet/sun
parentsunvnet: track port queues correctly (diff)
downloadlinux-dev-b12a96f5cd04583f45a1b6554b8f3786b26db913.tar.xz
linux-dev-b12a96f5cd04583f45a1b6554b8f3786b26db913.zip
sunvnet: count multicast packets
Make sure multicast packets get counted in the device. Orabug: 25190537 Signed-off-by: Shannon Nelson <shannon.nelson@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/sun')
-rw-r--r--drivers/net/ethernet/sun/sunvnet_common.c2
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 f8d1cc7e4977..bf7e0fbe5a9d 100644
--- a/drivers/net/ethernet/sun/sunvnet_common.c
+++ b/drivers/net/ethernet/sun/sunvnet_common.c
@@ -409,6 +409,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++;