All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH blktests] common/multipath-over-rdma: fix has_soft_rdma checking when mlx card as netdev
@ 2022-10-11 17:24 Yi Zhang
  2022-10-21  7:53 ` Shinichiro Kawasaki
  0 siblings, 1 reply; 2+ messages in thread
From: Yi Zhang @ 2022-10-11 17:24 UTC (permalink / raw)
  To: bvanassche, shinichiro.kawasaki; +Cc: linux-block

The mlx dev will be ignored in has_soft_rdma when it was used as netdev,
add more filter keywords.

link mlx5_0/1 state ACTIVE physical_state LINK_UP netdev enp33s0f0np0
link mlx5_1/1 state DOWN physical_state DISABLED netdev enp33s0f1np1

Signed-off-by: Yi Zhang <yi.zhang@redhat.com>
---
 common/multipath-over-rdma | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/multipath-over-rdma b/common/multipath-over-rdma
index fb820d6..6b9629a 100644
--- a/common/multipath-over-rdma
+++ b/common/multipath-over-rdma
@@ -387,7 +387,7 @@ all_primary_gids() {
 # Check whether or not an rdma_rxe or siw instance has been associated with
 # network interface $1.
 has_soft_rdma() {
-	rdma link | grep -q " netdev $1[[:blank:]]*\$"
+	rdma link | grep -q "link $1.*netdev $1[[:blank:]]*\$"
 }
 
 # Load the rdma_rxe or siw kernel module and associate it with all network
-- 
2.34.1


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

* Re: [PATCH blktests] common/multipath-over-rdma: fix has_soft_rdma checking when mlx card as netdev
  2022-10-11 17:24 [PATCH blktests] common/multipath-over-rdma: fix has_soft_rdma checking when mlx card as netdev Yi Zhang
@ 2022-10-21  7:53 ` Shinichiro Kawasaki
  0 siblings, 0 replies; 2+ messages in thread
From: Shinichiro Kawasaki @ 2022-10-21  7:53 UTC (permalink / raw)
  To: Yi Zhang; +Cc: bvanassche, linux-block

On Oct 12, 2022 / 01:24, Yi Zhang wrote:
> The mlx dev will be ignored in has_soft_rdma when it was used as netdev,
> add more filter keywords.
> 
> link mlx5_0/1 state ACTIVE physical_state LINK_UP netdev enp33s0f0np0
> link mlx5_1/1 state DOWN physical_state DISABLED netdev enp33s0f1np1
> 
> Signed-off-by: Yi Zhang <yi.zhang@redhat.com>
> ---
>  common/multipath-over-rdma | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/common/multipath-over-rdma b/common/multipath-over-rdma
> index fb820d6..6b9629a 100644
> --- a/common/multipath-over-rdma
> +++ b/common/multipath-over-rdma
> @@ -387,7 +387,7 @@ all_primary_gids() {
>  # Check whether or not an rdma_rxe or siw instance has been associated with
>  # network interface $1.
>  has_soft_rdma() {
> -	rdma link | grep -q " netdev $1[[:blank:]]*\$"
> +	rdma link | grep -q "link $1.*netdev $1[[:blank:]]*\$"
>  }

Question, what value do you expect in $1 here for mlx devices?

To match with the rdma link command output below, 1st $1 should be "mlx5",
and 2nd $1 should be "enp33s0f0np0", but $1 can not be both. ??

  link mlx5_0/1 state ACTIVE physical_state LINK_UP netdev enp33s0f0np0

-- 
Shin'ichiro Kawasaki

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

end of thread, other threads:[~2022-10-21  7:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-11 17:24 [PATCH blktests] common/multipath-over-rdma: fix has_soft_rdma checking when mlx card as netdev Yi Zhang
2022-10-21  7:53 ` Shinichiro Kawasaki

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.