mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH rdma-next] RDMA/mlx5: Remove warn on missing representor in query_port_speed
@ 2026-08-11 16:25 Edward Srouji
  2026-09-01 13:28 ` Leon Romanovsky
  0 siblings, 1 reply; 2+ messages in thread
From: Edward Srouji @ 2026-08-11 16:25 UTC (permalink / raw)
  To: Leon Romanovsky, Jason Gunthorpe, Or Har-Toov, Mark Bloch
  Cc: linux-rdma, linux-kernel, Shay Drory, Edward Srouji

From: Or Har-Toov <ohartoov@nvidia.com>

The representor ib_device's phys_port_cnt is set to the total vport
count when the uplink vport rep loads. Individual port[i].rep entries
are populated only as each VF/SF vport rep registers. A NULL .rep for
a given port index is therefore expected while VF reps are still
loading or haven't been enabled yet.

Tools like ibstat and ibv_devinfo iterate over all ports of all RDMA
devices. Some ports may not have an eswitch representor, causing
repeated dmesg warnings when these tools run without a device argument.
This causes dmesg to be flooded with this message on every ibstat
invocation.

Remove the warning and return -ENODEV when no representor exists for
the queried port.

Fixes: aaecff5e13cd ("RDMA/mlx5: Implement query_port_speed callback")
Signed-off-by: Or Har-Toov <ohartoov@nvidia.com>
Reviewed-by: Shay Drory <shayd@nvidia.com>
Signed-off-by: Edward Srouji <edwards@nvidia.com>
---
 drivers/infiniband/hw/mlx5/main.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/drivers/infiniband/hw/mlx5/main.c b/drivers/infiniband/hw/mlx5/main.c
index cc7e9a3e76310b626779837e248d399f84f82ec6..906e636c6408590a902bba16caa81b2aab156776 100644
--- a/drivers/infiniband/hw/mlx5/main.c
+++ b/drivers/infiniband/hw/mlx5/main.c
@@ -1682,11 +1682,8 @@ static int mlx5_ib_query_port_speed_rep(struct mlx5_ib_dev *dev, u32 port_num,
 	struct mlx5_core_dev *mdev;
 	u16 op_mod;
 
-	if (!dev->port[port_num - 1].rep) {
-		mlx5_ib_warn(dev, "Representor doesn't exist for port %u\n",
-			     port_num);
-		return -EINVAL;
-	}
+	if (!dev->port[port_num - 1].rep)
+		return -ENODEV;
 
 	rep = dev->port[port_num - 1].rep;
 	mdev = mlx5_eswitch_get_core_dev(rep->esw);

---
base-commit: a12d9145145b21c50531afb6e3f711b1f34e1465
change-id: 20260811-remove-warn-on-miss-rep-df03a4050e0d

Best regards,
-- 
Edward Srouji <edwards@nvidia.com>


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH rdma-next] RDMA/mlx5: Remove warn on missing representor in query_port_speed
  2026-08-11 16:25 [PATCH rdma-next] RDMA/mlx5: Remove warn on missing representor in query_port_speed Edward Srouji
@ 2026-09-01 13:28 ` Leon Romanovsky
  0 siblings, 0 replies; 2+ messages in thread
From: Leon Romanovsky @ 2026-09-01 13:28 UTC (permalink / raw)
  To: Jason Gunthorpe, Or Har-Toov, Mark Bloch, Edward Srouji
  Cc: linux-rdma, linux-kernel, Shay Drory


On Tue, 11 Aug 2026 19:25:57 +0300, Edward Srouji wrote:
> The representor ib_device's phys_port_cnt is set to the total vport
> count when the uplink vport rep loads. Individual port[i].rep entries
> are populated only as each VF/SF vport rep registers. A NULL .rep for
> a given port index is therefore expected while VF reps are still
> loading or haven't been enabled yet.
> 
> Tools like ibstat and ibv_devinfo iterate over all ports of all RDMA
> devices. Some ports may not have an eswitch representor, causing
> repeated dmesg warnings when these tools run without a device argument.
> This causes dmesg to be flooded with this message on every ibstat
> invocation.
> 
> [...]

Applied, thanks!

[1/1] RDMA/mlx5: Remove warn on missing representor in query_port_speed
      https://git.kernel.org/rdma/rdma/c/2be77295316c2d

Best regards,
-- 
Leon Romanovsky <leon@kernel.org>


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-09-01 13:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-11 16:25 [PATCH rdma-next] RDMA/mlx5: Remove warn on missing representor in query_port_speed Edward Srouji
2026-09-01 13:28 ` Leon Romanovsky

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®