lkml.org 
[lkml]   [2022]   [May]   [14]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectRe: [PATCH] net/mlx5: Add sysfs entry for vhca to /sys/class/infiniband/mlx5
On Fri, May 13, 2022 at 05:46:16PM +0000, Rohit Sajan Kumar wrote:
> Hey,
>
> Sending this as a gentle reminder to review the patch sent earlier this week which can be found in this email chain.

Patches that sent in HTML format, to wrong addresses and not visible
in patchworks/ML, without target net-next/rdma-next/e.t.c., with wrong
title are generally ignored.

Why vhca_id that returned from MLX5_IB_METHOD_QUERY_PORT is not enough?

Anyway, sysfs file in IB driver for the property of mlx5_core is no-go.

Thanks

>
> Thank you.
>
> Best,
> Rohit.
> ________________________________
> From: Rohit Nair <rohit.sajan.kumar@oracle.com>
> Sent: Monday, May 9, 2022 4:00 PM
> To: matanb@mellanox.com <matanb@mellanox.com>; leonro@mellanox.com <leonro@mellanox.com>; dledford@redhat.com <dledford@redhat.com>; sean.hefty@intel.com <sean.hefty@intel.com>; hal.rosenstock@gmail.com <hal.rosenstock@gmail.com>; Rohit Sajan Kumar <rohit.sajan.kumar@oracle.com>; Manjunath Patil <manjunath.b.patil@oracle.com>; Rama Nichanamatlu <rama.nichanamatlu@oracle.com>
> Cc: linux-rdma@vger.kernel.org <linux-rdma@vger.kernel.org>; linux-kernel@vger.kernel.org <linux-kernel@vger.kernel.org>
> Subject: [PATCH] net/mlx5: Add sysfs entry for vhca to /sys/class/infiniband/mlx5
>
> While collecting diagnostic information (Ex:wqdump) in virtual
> environment, we need vhca id to collect data belonging a particular VF.
> This patch adds a sysfs entry to show the vhca id inside guest.
>
> Signed-off-by: Rohit Nair <rohit.sajan.kumar@oracle.com>
> ---
> drivers/infiniband/hw/mlx5/main.c | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/drivers/infiniband/hw/mlx5/main.c b/drivers/infiniband/hw/mlx5/main.c
> index 32a0ea8..dd935bc 100644
> --- a/drivers/infiniband/hw/mlx5/main.c
> +++ b/drivers/infiniband/hw/mlx5/main.c
> @@ -2499,12 +2499,24 @@ static ssize_t board_id_show(struct device *device,
> }
> static DEVICE_ATTR_RO(board_id);
>
> +static ssize_t vhca_id_show(struct device *device,
> + struct device_attribute *attr, char *buf)
> +{
> + struct mlx5_ib_dev *dev =
> + container_of(device, struct mlx5_ib_dev, ib_dev.dev);
> + return sysfs_emit(buf, "%d [0x%x]\n",
> + MLX5_CAP_GEN(dev->mdev, vhca_id),
> + MLX5_CAP_GEN(dev->mdev, vhca_id));
> +}
> +static DEVICE_ATTR_RO(vhca_id);
> +
> static struct attribute *mlx5_class_attributes[] = {
> &dev_attr_hw_rev.attr,
> &dev_attr_hca_type.attr,
> &dev_attr_board_id.attr,
> &dev_attr_fw_pages.attr,
> &dev_attr_reg_pages.attr,
> + &dev_attr_vhca_id.attr,
> NULL,
> };
>
> --
> 1.8.3.1
>

\
 
 \ /
  Last update: 2022-05-14 07:13    [W:0.091 / U:0.404 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site