diff options
author | Talat Batheesh <talatb@mellanox.com> | 2016-06-22 16:27:27 +0200 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2016-06-23 16:03:57 +0200 |
commit | 00bf534fce23048aa0e6fd8dbceedf097ee65508 (patch) | |
tree | 3d1303dfd14fb1361966ff75bb2144220c7cd7ca /drivers/infiniband/hw | |
parent | IB/mlx5: Fix post send fence logic (diff) | |
download | linux-00bf534fce23048aa0e6fd8dbceedf097ee65508.tar.xz linux-00bf534fce23048aa0e6fd8dbceedf097ee65508.zip |
IB/mlx5: Fix wrong naming of port_rcv_data counter
port_xmit_data is written instead of port_rcv_data.
Fixes: 3efd9a11212d ('IB/mlx5: Modify MAD reading counters method to use counter registers')
Signed-off-by: Talat Batheesh <talatb@mellanox.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/hw')
-rw-r--r-- | drivers/infiniband/hw/mlx5/mad.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mlx5/mad.c b/drivers/infiniband/hw/mlx5/mad.c index 1534af113058..364aab9f3c9e 100644 --- a/drivers/infiniband/hw/mlx5/mad.c +++ b/drivers/infiniband/hw/mlx5/mad.c @@ -121,7 +121,7 @@ static void pma_cnt_ext_assign(struct ib_pma_portcounters_ext *pma_cnt_ext, pma_cnt_ext->port_xmit_data = cpu_to_be64(MLX5_SUM_CNT(out, transmitted_ib_unicast.octets, transmitted_ib_multicast.octets) >> 2); - pma_cnt_ext->port_xmit_data = + pma_cnt_ext->port_rcv_data = cpu_to_be64(MLX5_SUM_CNT(out, received_ib_unicast.octets, received_ib_multicast.octets) >> 2); pma_cnt_ext->port_xmit_packets = |