diff mbox series

[rdma-next,v1] IB/mlx5: Add HW counter called rx_dct_connect

Message ID 01cd24cd7f591734741309921fdc01fc770d84a8.1690121941.git.leon@kernel.org (mailing list archive)
State Accepted
Headers show
Series [rdma-next,v1] IB/mlx5: Add HW counter called rx_dct_connect | expand

Commit Message

Leon Romanovsky July 23, 2023, 2:21 p.m. UTC
From: Shetu Ayalew <shetu@nvidia.com>

The rx_dct_connect counter shows the number of received connection
requests for the associated DCTs.

Signed-off-by: Shetu Ayalew <shetu@nvidia.com>
Reviewed-by: Maor Gottlieb <maorg@nvidia.com>
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
---
Changelog:
v1:
 * Moved rx_dct_connect from retrans_q_cnts section to basic_q_cnts section.
v0: https://lore.kernel.org/all/6d2313eedc567fc29f5ba53c197d5678962bb43a.1689757404.git.leon@kernel.org
---
 drivers/infiniband/hw/mlx5/counters.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Leon Romanovsky July 31, 2023, 8:40 a.m. UTC | #1
On Sun, 23 Jul 2023 17:21:14 +0300, Leon Romanovsky wrote:
> The rx_dct_connect counter shows the number of received connection
> requests for the associated DCTs.
> 
> 

Applied, thanks!

[1/1] IB/mlx5: Add HW counter called rx_dct_connect
      https://git.kernel.org/rdma/rdma/c/f0ff2a2dd08df5

Best regards,
diff mbox series

Patch

diff --git a/drivers/infiniband/hw/mlx5/counters.c b/drivers/infiniband/hw/mlx5/counters.c
index 93257fa5aae8..8300ce622835 100644
--- a/drivers/infiniband/hw/mlx5/counters.c
+++ b/drivers/infiniband/hw/mlx5/counters.c
@@ -27,6 +27,7 @@  static const struct mlx5_ib_counter basic_q_cnts[] = {
 	INIT_Q_COUNTER(rx_write_requests),
 	INIT_Q_COUNTER(rx_read_requests),
 	INIT_Q_COUNTER(rx_atomic_requests),
+	INIT_Q_COUNTER(rx_dct_connect),
 	INIT_Q_COUNTER(out_of_buffer),
 };
 
@@ -46,6 +47,7 @@  static const struct mlx5_ib_counter vport_basic_q_cnts[] = {
 	INIT_VPORT_Q_COUNTER(rx_write_requests),
 	INIT_VPORT_Q_COUNTER(rx_read_requests),
 	INIT_VPORT_Q_COUNTER(rx_atomic_requests),
+	INIT_VPORT_Q_COUNTER(rx_dct_connect),
 	INIT_VPORT_Q_COUNTER(out_of_buffer),
 };