> -----Original Message-----
> From: linux-rdma-ow...@vger.kernel.org [mailto:linux-rdma-
> ow...@vger.kernel.org] On Behalf Of Hal Rosenstock
> Sent: Wednesday, January 14, 2015 6:07 AM
> To: Weiny, Ira
> Cc: linux-rdma (linux-rdma@vger.kernel.org)
> Subject: [PATCHv2 infiniband-diags] ibnetdisc.c: Add additional supported
> device IDs to is_mlnx_ext_port_info_supported
> 
> Similar to previous ibdiag_common.c patch, this adds additional device IDs to
> be supported to the ibnetdiscover internal is_mlnx_ext_port_info routine.
> These IDs are ConnectX-4, ConnectX-IB, and Switch-IB.
> 
> Signed-off-by: Hal Rosenstock <h...@mellanox.com>

Thanks applied.
Ira



> ---
> Change from v1:
> Changed ConnectX-3 to ConnectX-IB in patch description
> 
> diff --git a/libibnetdisc/src/ibnetdisc.c b/libibnetdisc/src/ibnetdisc.c index
> 121fe35..f3c6000 100644
> --- a/libibnetdisc/src/ibnetdisc.c
> +++ b/libibnetdisc/src/ibnetdisc.c
> @@ -203,9 +203,9 @@ static int is_mlnx_ext_port_info_supported(ibnd_port_t
> * port)  {
>       uint16_t devid = (uint16_t) mad_get_field(port->node->info, 0,
> IB_NODE_DEVID_F);
> 
> -     if (devid == 0xc738)
> +     if (devid == 0xc738 || devid == 0xcb84)
>               return 1;
> -     if (devid >= 0x1003 && devid <= 0x1011)
> +     if (devid >= 0x1003 && devid <= 0x1016)
>               return 1;
>       return 0;
>  }
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the 
> body
> of a message to majord...@vger.kernel.org More majordomo info at
> http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to