net/mlx5e: Expose RDMA VPort counters to ethtool
authorGal Pressman <galp@mellanox.com>
Mon, 4 Jul 2016 14:23:11 +0000 (17:23 +0300)
committerDavid S. Miller <davem@davemloft.net>
Tue, 5 Jul 2016 07:06:03 +0000 (00:06 -0700)
Add the needed descriptors to expose RoCE RDMA counters.

Signed-off-by: Gal Pressman <galp@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlx5/core/en_stats.h

index fcd490c..ae29998 100644 (file)
@@ -151,6 +151,22 @@ static const struct counter_desc vport_stats_desc[] = {
                VPORT_COUNTER_OFF(transmitted_eth_broadcast.packets) },
        { "tx_vport_broadcast_bytes",
                VPORT_COUNTER_OFF(transmitted_eth_broadcast.octets) },
+       { "rx_vport_rdma_unicast_packets",
+               VPORT_COUNTER_OFF(received_ib_unicast.packets) },
+       { "rx_vport_rdma_unicast_bytes",
+               VPORT_COUNTER_OFF(received_ib_unicast.octets) },
+       { "tx_vport_rdma_unicast_packets",
+               VPORT_COUNTER_OFF(transmitted_ib_unicast.packets) },
+       { "tx_vport_rdma_unicast_bytes",
+               VPORT_COUNTER_OFF(transmitted_ib_unicast.octets) },
+       { "rx_vport_rdma_multicast_packets",
+               VPORT_COUNTER_OFF(received_ib_multicast.packets) },
+       { "rx_vport_rdma_multicast_bytes",
+               VPORT_COUNTER_OFF(received_ib_multicast.octets) },
+       { "tx_vport_rdma_multicast_packets",
+               VPORT_COUNTER_OFF(transmitted_ib_multicast.packets) },
+       { "tx_vport_rdma_multicast_bytes",
+               VPORT_COUNTER_OFF(transmitted_ib_multicast.octets) },
 };
 
 #define PPORT_802_3_OFF(c) \