* [PATH v5 0/3] vdpa: support set mac address from vdpa tool
@ 2024-07-23 5:39 Cindy Lu
2024-07-23 5:39 ` [PATH v5 1/3] " Cindy Lu
` (3 more replies)
0 siblings, 4 replies; 16+ messages in thread
From: Cindy Lu @ 2024-07-23 5:39 UTC (permalink / raw)
To: lulu, dtatulea, mst, jasowang, parav, sgarzare, netdev,
virtualization, linux-kernel
Add support for setting the MAC address using the VDPA tool.
This feature will allow setting the MAC address using the VDPA tool.
For example, in vdpa_sim_net, the implementation sets the MAC address
to the config space. However, for other drivers, they can implement their
own function, not limited to the config space.
Changelog v2
- Changed the function name to prevent misunderstanding
- Added check for blk device
- Addressed the comments
Changelog v3
- Split the function of the net device from vdpa_nl_cmd_dev_attr_set_doit
- Add a lock for the network device's dev_set_attr operation
- Address the comments
Changelog v4
- Address the comments
- Add a lock for the vdap_sim?_net device's dev_set_attr operation
Changelog v5
- Address the comments
Cindy Lu (3):
vdpa: support set mac address from vdpa tool
vdpa_sim_net: Add the support of set mac address
vdpa/mlx5: Add the support of set mac address
drivers/vdpa/mlx5/net/mlx5_vnet.c | 28 ++++++++++
drivers/vdpa/vdpa.c | 84 ++++++++++++++++++++++++++++
drivers/vdpa/vdpa_sim/vdpa_sim_net.c | 22 +++++++-
include/linux/vdpa.h | 9 +++
include/uapi/linux/vdpa.h | 1 +
5 files changed, 143 insertions(+), 1 deletion(-)
--
2.45.0
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATH v5 1/3] vdpa: support set mac address from vdpa tool
2024-07-23 5:39 [PATH v5 0/3] vdpa: support set mac address from vdpa tool Cindy Lu
@ 2024-07-23 5:39 ` Cindy Lu
2024-07-23 6:01 ` Jason Wang
2024-07-23 18:48 ` Andrew Lunn
2024-07-23 5:39 ` [PATH v5 2/3] vdpa_sim_net: Add the support of set mac address Cindy Lu
` (2 subsequent siblings)
3 siblings, 2 replies; 16+ messages in thread
From: Cindy Lu @ 2024-07-23 5:39 UTC (permalink / raw)
To: lulu, dtatulea, mst, jasowang, parav, sgarzare, netdev,
virtualization, linux-kernel
Add new UAPI to support the mac address from vdpa tool
Function vdpa_nl_cmd_dev_attr_set_doit() will get the
new MAC address from the vdpa tool and then set it to the device.
The usage is: vdpa dev set name vdpa_name mac **:**:**:**:**:**
Here is example:
root@L1# vdpa -jp dev config show vdpa0
{
"config": {
"vdpa0": {
"mac": "82:4d:e9:5d:d7:e6",
"link ": "up",
"link_announce ": false,
"mtu": 1500
}
}
}
root@L1# vdpa dev set name vdpa0 mac 00:11:22:33:44:55
root@L1# vdpa -jp dev config show vdpa0
{
"config": {
"vdpa0": {
"mac": "00:11:22:33:44:55",
"link ": "up",
"link_announce ": false,
"mtu": 1500
}
}
}
Signed-off-by: Cindy Lu <lulu@redhat.com>
---
drivers/vdpa/vdpa.c | 84 +++++++++++++++++++++++++++++++++++++++
include/linux/vdpa.h | 9 +++++
include/uapi/linux/vdpa.h | 1 +
3 files changed, 94 insertions(+)
diff --git a/drivers/vdpa/vdpa.c b/drivers/vdpa/vdpa.c
index 8d391947eb8d..07d61ee62839 100644
--- a/drivers/vdpa/vdpa.c
+++ b/drivers/vdpa/vdpa.c
@@ -1361,6 +1361,85 @@ static int vdpa_nl_cmd_dev_config_get_doit(struct sk_buff *skb, struct genl_info
return err;
}
+static int vdpa_dev_net_device_attr_set(struct vdpa_device *vdev,
+ struct genl_info *info)
+{
+ struct vdpa_dev_set_config set_config = {};
+ const u8 *macaddr;
+ struct vdpa_mgmt_dev *mdev = vdev->mdev;
+ struct nlattr **nl_attrs = info->attrs;
+ int err = -EINVAL;
+
+ if (!vdev->mdev)
+ return -EINVAL;
+
+ down_write(&vdev->cf_lock);
+ if ((mdev->supported_features & BIT_ULL(VIRTIO_NET_F_MAC)) &&
+ nl_attrs[VDPA_ATTR_DEV_NET_CFG_MACADDR]) {
+ set_config.mask |= BIT_ULL(VDPA_ATTR_DEV_NET_CFG_MACADDR);
+ macaddr = nla_data(nl_attrs[VDPA_ATTR_DEV_NET_CFG_MACADDR]);
+
+ if (is_valid_ether_addr(macaddr)) {
+ memcpy(set_config.net.mac, macaddr, ETH_ALEN);
+ if (mdev->ops->dev_set_attr) {
+ err = mdev->ops->dev_set_attr(mdev, vdev,
+ &set_config);
+ } else {
+ NL_SET_ERR_MSG_FMT_MOD(info->extack,
+ "device not supported");
+ }
+ } else {
+ NL_SET_ERR_MSG_FMT_MOD(info->extack,
+ "Invalid MAC address");
+ }
+ }
+ up_write(&vdev->cf_lock);
+ return err;
+}
+static int vdpa_nl_cmd_dev_attr_set_doit(struct sk_buff *skb,
+ struct genl_info *info)
+{
+ const char *name;
+ int err = 0;
+ struct device *dev;
+ struct vdpa_device *vdev;
+ u64 classes;
+
+ if (!info->attrs[VDPA_ATTR_DEV_NAME])
+ return -EINVAL;
+
+ name = nla_data(info->attrs[VDPA_ATTR_DEV_NAME]);
+
+ down_write(&vdpa_dev_lock);
+ dev = bus_find_device(&vdpa_bus, NULL, name, vdpa_name_match);
+ if (!dev) {
+ NL_SET_ERR_MSG_MOD(info->extack, "device not found");
+ err = -ENODEV;
+ goto dev_err;
+ }
+ vdev = container_of(dev, struct vdpa_device, dev);
+ if (!vdev->mdev) {
+ NL_SET_ERR_MSG_MOD(
+ info->extack,
+ "Fail to find the specified management device");
+ err = -EINVAL;
+ goto mdev_err;
+ }
+ classes = vdpa_mgmtdev_get_classes(vdev->mdev, NULL);
+ if (classes & BIT_ULL(VIRTIO_ID_NET)) {
+ err = vdpa_dev_net_device_attr_set(vdev, info);
+ } else {
+ NL_SET_ERR_MSG_FMT_MOD(info->extack, "%s device not supported",
+ name);
+ }
+
+mdev_err:
+ put_device(dev);
+dev_err:
+ up_write(&vdpa_dev_lock);
+ return err;
+}
+
static int vdpa_dev_config_dump(struct device *dev, void *data)
{
struct vdpa_device *vdev = container_of(dev, struct vdpa_device, dev);
@@ -1497,6 +1576,11 @@ static const struct genl_ops vdpa_nl_ops[] = {
.doit = vdpa_nl_cmd_dev_stats_get_doit,
.flags = GENL_ADMIN_PERM,
},
+ {
+ .cmd = VDPA_CMD_DEV_ATTR_SET,
+ .doit = vdpa_nl_cmd_dev_attr_set_doit,
+ .flags = GENL_ADMIN_PERM,
+ },
};
static struct genl_family vdpa_nl_family __ro_after_init = {
diff --git a/include/linux/vdpa.h b/include/linux/vdpa.h
index 7977ca03ac7a..3511156c10db 100644
--- a/include/linux/vdpa.h
+++ b/include/linux/vdpa.h
@@ -582,11 +582,20 @@ void vdpa_set_status(struct vdpa_device *vdev, u8 status);
* @dev: vdpa device to remove
* Driver need to remove the specified device by calling
* _vdpa_unregister_device().
+ * @dev_set_attr: change a vdpa device's attr after it was create
+ * @mdev: parent device to use for device
+ * @dev: vdpa device structure
+ * @config:Attributes to be set for the device.
+ * The driver needs to check the mask of the structure and then set
+ * the related information to the vdpa device. The driver must return 0
+ * if set successfully.
*/
struct vdpa_mgmtdev_ops {
int (*dev_add)(struct vdpa_mgmt_dev *mdev, const char *name,
const struct vdpa_dev_set_config *config);
void (*dev_del)(struct vdpa_mgmt_dev *mdev, struct vdpa_device *dev);
+ int (*dev_set_attr)(struct vdpa_mgmt_dev *mdev, struct vdpa_device *dev,
+ const struct vdpa_dev_set_config *config);
};
/**
diff --git a/include/uapi/linux/vdpa.h b/include/uapi/linux/vdpa.h
index 842bf1201ac4..71edf2c70cc3 100644
--- a/include/uapi/linux/vdpa.h
+++ b/include/uapi/linux/vdpa.h
@@ -19,6 +19,7 @@ enum vdpa_command {
VDPA_CMD_DEV_GET, /* can dump */
VDPA_CMD_DEV_CONFIG_GET, /* can dump */
VDPA_CMD_DEV_VSTATS_GET,
+ VDPA_CMD_DEV_ATTR_SET,
};
enum vdpa_attr {
--
2.45.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATH v5 2/3] vdpa_sim_net: Add the support of set mac address
2024-07-23 5:39 [PATH v5 0/3] vdpa: support set mac address from vdpa tool Cindy Lu
2024-07-23 5:39 ` [PATH v5 1/3] " Cindy Lu
@ 2024-07-23 5:39 ` Cindy Lu
2024-07-23 6:01 ` Jason Wang
2024-07-23 18:51 ` Andrew Lunn
2024-07-23 5:39 ` [PATH v5 3/3] vdpa/mlx5: " Cindy Lu
2024-07-23 18:45 ` [PATH v5 0/3] vdpa: support set mac address from vdpa tool Andrew Lunn
3 siblings, 2 replies; 16+ messages in thread
From: Cindy Lu @ 2024-07-23 5:39 UTC (permalink / raw)
To: lulu, dtatulea, mst, jasowang, parav, sgarzare, netdev,
virtualization, linux-kernel
Add the function to support setting the MAC address.
For vdpa_sim_net, the driver will write the MAC address
to the config space, and other devices can implement
their own functions to support this.
Signed-off-by: Cindy Lu <lulu@redhat.com>
---
drivers/vdpa/vdpa_sim/vdpa_sim_net.c | 22 +++++++++++++++++++++-
1 file changed, 21 insertions(+), 1 deletion(-)
diff --git a/drivers/vdpa/vdpa_sim/vdpa_sim_net.c b/drivers/vdpa/vdpa_sim/vdpa_sim_net.c
index cfe962911804..936e33e5021a 100644
--- a/drivers/vdpa/vdpa_sim/vdpa_sim_net.c
+++ b/drivers/vdpa/vdpa_sim/vdpa_sim_net.c
@@ -414,6 +414,25 @@ static void vdpasim_net_get_config(struct vdpasim *vdpasim, void *config)
net_config->status = cpu_to_vdpasim16(vdpasim, VIRTIO_NET_S_LINK_UP);
}
+static int vdpasim_net_set_attr(struct vdpa_mgmt_dev *mdev,
+ struct vdpa_device *dev,
+ const struct vdpa_dev_set_config *config)
+{
+ struct vdpasim *vdpasim = container_of(dev, struct vdpasim, vdpa);
+ struct virtio_net_config *vio_config = vdpasim->config;
+
+ mutex_lock(&vdpasim->mutex);
+
+ if (config->mask & (1 << VDPA_ATTR_DEV_NET_CFG_MACADDR)) {
+ memcpy(vio_config->mac, config->net.mac, ETH_ALEN);
+ mutex_unlock(&vdpasim->mutex);
+ return 0;
+ }
+
+ mutex_unlock(&vdpasim->mutex);
+ return -EINVAL;
+}
+
static void vdpasim_net_setup_config(struct vdpasim *vdpasim,
const struct vdpa_dev_set_config *config)
{
@@ -510,7 +529,8 @@ static void vdpasim_net_dev_del(struct vdpa_mgmt_dev *mdev,
static const struct vdpa_mgmtdev_ops vdpasim_net_mgmtdev_ops = {
.dev_add = vdpasim_net_dev_add,
- .dev_del = vdpasim_net_dev_del
+ .dev_del = vdpasim_net_dev_del,
+ .dev_set_attr = vdpasim_net_set_attr
};
static struct virtio_device_id id_table[] = {
--
2.45.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATH v5 3/3] vdpa/mlx5: Add the support of set mac address
2024-07-23 5:39 [PATH v5 0/3] vdpa: support set mac address from vdpa tool Cindy Lu
2024-07-23 5:39 ` [PATH v5 1/3] " Cindy Lu
2024-07-23 5:39 ` [PATH v5 2/3] vdpa_sim_net: Add the support of set mac address Cindy Lu
@ 2024-07-23 5:39 ` Cindy Lu
2024-07-23 6:02 ` Jason Wang
2024-07-23 7:49 ` Dragos Tatulea
2024-07-23 18:45 ` [PATH v5 0/3] vdpa: support set mac address from vdpa tool Andrew Lunn
3 siblings, 2 replies; 16+ messages in thread
From: Cindy Lu @ 2024-07-23 5:39 UTC (permalink / raw)
To: lulu, dtatulea, mst, jasowang, parav, sgarzare, netdev,
virtualization, linux-kernel
Add the function to support setting the MAC address.
For vdpa/mlx5, the function will use mlx5_mpfs_add_mac
to set the mac address
Tested in ConnectX-6 Dx device
Signed-off-by: Cindy Lu <lulu@redhat.com>
---
drivers/vdpa/mlx5/net/mlx5_vnet.c | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/drivers/vdpa/mlx5/net/mlx5_vnet.c b/drivers/vdpa/mlx5/net/mlx5_vnet.c
index ecfc16151d61..7fce952d650f 100644
--- a/drivers/vdpa/mlx5/net/mlx5_vnet.c
+++ b/drivers/vdpa/mlx5/net/mlx5_vnet.c
@@ -3785,10 +3785,38 @@ static void mlx5_vdpa_dev_del(struct vdpa_mgmt_dev *v_mdev, struct vdpa_device *
destroy_workqueue(wq);
mgtdev->ndev = NULL;
}
+static int mlx5_vdpa_set_attr(struct vdpa_mgmt_dev *v_mdev,
+ struct vdpa_device *dev,
+ const struct vdpa_dev_set_config *add_config)
+{
+ struct virtio_net_config *config;
+ struct mlx5_core_dev *pfmdev;
+ struct mlx5_vdpa_dev *mvdev;
+ struct mlx5_vdpa_net *ndev;
+ struct mlx5_core_dev *mdev;
+ int err = -EINVAL;
+
+ mvdev = to_mvdev(dev);
+ ndev = to_mlx5_vdpa_ndev(mvdev);
+ mdev = mvdev->mdev;
+ config = &ndev->config;
+
+ down_write(&ndev->reslock);
+ if (add_config->mask & (1 << VDPA_ATTR_DEV_NET_CFG_MACADDR)) {
+ pfmdev = pci_get_drvdata(pci_physfn(mdev->pdev));
+ err = mlx5_mpfs_add_mac(pfmdev, config->mac);
+ if (0 == err)
+ memcpy(config->mac, add_config->net.mac, ETH_ALEN);
+ }
+
+ up_write(&ndev->reslock);
+ return err;
+}
static const struct vdpa_mgmtdev_ops mdev_ops = {
.dev_add = mlx5_vdpa_dev_add,
.dev_del = mlx5_vdpa_dev_del,
+ .dev_set_attr = mlx5_vdpa_set_attr,
};
static struct virtio_device_id id_table[] = {
--
2.45.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATH v5 1/3] vdpa: support set mac address from vdpa tool
2024-07-23 5:39 ` [PATH v5 1/3] " Cindy Lu
@ 2024-07-23 6:01 ` Jason Wang
2024-07-23 6:16 ` Cindy Lu
2024-07-23 18:48 ` Andrew Lunn
1 sibling, 1 reply; 16+ messages in thread
From: Jason Wang @ 2024-07-23 6:01 UTC (permalink / raw)
To: Cindy Lu
Cc: dtatulea, mst, parav, sgarzare, netdev, virtualization,
linux-kernel
On Tue, Jul 23, 2024 at 1:41 PM Cindy Lu <lulu@redhat.com> wrote:
>
> Add new UAPI to support the mac address from vdpa tool
> Function vdpa_nl_cmd_dev_attr_set_doit() will get the
> new MAC address from the vdpa tool and then set it to the device.
>
> The usage is: vdpa dev set name vdpa_name mac **:**:**:**:**:**
>
> Here is example:
> root@L1# vdpa -jp dev config show vdpa0
> {
> "config": {
> "vdpa0": {
> "mac": "82:4d:e9:5d:d7:e6",
> "link ": "up",
> "link_announce ": false,
> "mtu": 1500
> }
> }
> }
>
> root@L1# vdpa dev set name vdpa0 mac 00:11:22:33:44:55
>
> root@L1# vdpa -jp dev config show vdpa0
> {
> "config": {
> "vdpa0": {
> "mac": "00:11:22:33:44:55",
> "link ": "up",
> "link_announce ": false,
> "mtu": 1500
> }
> }
> }
>
> Signed-off-by: Cindy Lu <lulu@redhat.com>
> ---
> drivers/vdpa/vdpa.c | 84 +++++++++++++++++++++++++++++++++++++++
> include/linux/vdpa.h | 9 +++++
> include/uapi/linux/vdpa.h | 1 +
> 3 files changed, 94 insertions(+)
>
> diff --git a/drivers/vdpa/vdpa.c b/drivers/vdpa/vdpa.c
> index 8d391947eb8d..07d61ee62839 100644
> --- a/drivers/vdpa/vdpa.c
> +++ b/drivers/vdpa/vdpa.c
> @@ -1361,6 +1361,85 @@ static int vdpa_nl_cmd_dev_config_get_doit(struct sk_buff *skb, struct genl_info
> return err;
> }
>
> +static int vdpa_dev_net_device_attr_set(struct vdpa_device *vdev,
> + struct genl_info *info)
> +{
> + struct vdpa_dev_set_config set_config = {};
> + const u8 *macaddr;
> + struct vdpa_mgmt_dev *mdev = vdev->mdev;
> + struct nlattr **nl_attrs = info->attrs;
> + int err = -EINVAL;
> +
> + if (!vdev->mdev)
> + return -EINVAL;
It looks like the caller has already done this check?
> +
> + down_write(&vdev->cf_lock);
> + if ((mdev->supported_features & BIT_ULL(VIRTIO_NET_F_MAC)) &&
This is not a virtio feature, so I don't get why we need to check
VIRTIO_NET_F_MAC.
> + nl_attrs[VDPA_ATTR_DEV_NET_CFG_MACADDR]) {
> + set_config.mask |= BIT_ULL(VDPA_ATTR_DEV_NET_CFG_MACADDR);
> + macaddr = nla_data(nl_attrs[VDPA_ATTR_DEV_NET_CFG_MACADDR]);
> +
> + if (is_valid_ether_addr(macaddr)) {
> + memcpy(set_config.net.mac, macaddr, ETH_ALEN);
> + if (mdev->ops->dev_set_attr) {
> + err = mdev->ops->dev_set_attr(mdev, vdev,
> + &set_config);
> + } else {
> + NL_SET_ERR_MSG_FMT_MOD(info->extack,
> + "device not supported");
"Device does not support setting mac address" ?
> + }
> + } else {
> + NL_SET_ERR_MSG_FMT_MOD(info->extack,
> + "Invalid MAC address");
> + }
> + }
> + up_write(&vdev->cf_lock);
> + return err;
> +}
> +static int vdpa_nl_cmd_dev_attr_set_doit(struct sk_buff *skb,
> + struct genl_info *info)
> +{
> + const char *name;
> + int err = 0;
> + struct device *dev;
> + struct vdpa_device *vdev;
> + u64 classes;
> +
> + if (!info->attrs[VDPA_ATTR_DEV_NAME])
> + return -EINVAL;
> +
> + name = nla_data(info->attrs[VDPA_ATTR_DEV_NAME]);
> +
> + down_write(&vdpa_dev_lock);
> + dev = bus_find_device(&vdpa_bus, NULL, name, vdpa_name_match);
> + if (!dev) {
> + NL_SET_ERR_MSG_MOD(info->extack, "device not found");
> + err = -ENODEV;
> + goto dev_err;
> + }
> + vdev = container_of(dev, struct vdpa_device, dev);
> + if (!vdev->mdev) {
> + NL_SET_ERR_MSG_MOD(
> + info->extack,
> + "Fail to find the specified management device");
> + err = -EINVAL;
> + goto mdev_err;
> + }
> + classes = vdpa_mgmtdev_get_classes(vdev->mdev, NULL);
> + if (classes & BIT_ULL(VIRTIO_ID_NET)) {
> + err = vdpa_dev_net_device_attr_set(vdev, info);
> + } else {
> + NL_SET_ERR_MSG_FMT_MOD(info->extack, "%s device not supported",
> + name);
> + }
> +
> +mdev_err:
> + put_device(dev);
> +dev_err:
> + up_write(&vdpa_dev_lock);
> + return err;
> +}
> +
> static int vdpa_dev_config_dump(struct device *dev, void *data)
> {
> struct vdpa_device *vdev = container_of(dev, struct vdpa_device, dev);
> @@ -1497,6 +1576,11 @@ static const struct genl_ops vdpa_nl_ops[] = {
> .doit = vdpa_nl_cmd_dev_stats_get_doit,
> .flags = GENL_ADMIN_PERM,
> },
> + {
> + .cmd = VDPA_CMD_DEV_ATTR_SET,
> + .doit = vdpa_nl_cmd_dev_attr_set_doit,
> + .flags = GENL_ADMIN_PERM,
> + },
> };
>
> static struct genl_family vdpa_nl_family __ro_after_init = {
> diff --git a/include/linux/vdpa.h b/include/linux/vdpa.h
> index 7977ca03ac7a..3511156c10db 100644
> --- a/include/linux/vdpa.h
> +++ b/include/linux/vdpa.h
> @@ -582,11 +582,20 @@ void vdpa_set_status(struct vdpa_device *vdev, u8 status);
> * @dev: vdpa device to remove
> * Driver need to remove the specified device by calling
> * _vdpa_unregister_device().
> + * @dev_set_attr: change a vdpa device's attr after it was create
> + * @mdev: parent device to use for device
> + * @dev: vdpa device structure
> + * @config:Attributes to be set for the device.
> + * The driver needs to check the mask of the structure and then set
> + * the related information to the vdpa device. The driver must return 0
> + * if set successfully.
> */
> struct vdpa_mgmtdev_ops {
> int (*dev_add)(struct vdpa_mgmt_dev *mdev, const char *name,
> const struct vdpa_dev_set_config *config);
> void (*dev_del)(struct vdpa_mgmt_dev *mdev, struct vdpa_device *dev);
> + int (*dev_set_attr)(struct vdpa_mgmt_dev *mdev, struct vdpa_device *dev,
> + const struct vdpa_dev_set_config *config);
> };
>
> /**
> diff --git a/include/uapi/linux/vdpa.h b/include/uapi/linux/vdpa.h
> index 842bf1201ac4..71edf2c70cc3 100644
> --- a/include/uapi/linux/vdpa.h
> +++ b/include/uapi/linux/vdpa.h
> @@ -19,6 +19,7 @@ enum vdpa_command {
> VDPA_CMD_DEV_GET, /* can dump */
> VDPA_CMD_DEV_CONFIG_GET, /* can dump */
> VDPA_CMD_DEV_VSTATS_GET,
> + VDPA_CMD_DEV_ATTR_SET,
> };
>
> enum vdpa_attr {
> --
> 2.45.0
>
Thanks
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATH v5 2/3] vdpa_sim_net: Add the support of set mac address
2024-07-23 5:39 ` [PATH v5 2/3] vdpa_sim_net: Add the support of set mac address Cindy Lu
@ 2024-07-23 6:01 ` Jason Wang
2024-07-23 18:51 ` Andrew Lunn
1 sibling, 0 replies; 16+ messages in thread
From: Jason Wang @ 2024-07-23 6:01 UTC (permalink / raw)
To: Cindy Lu
Cc: dtatulea, mst, parav, sgarzare, netdev, virtualization,
linux-kernel
On Tue, Jul 23, 2024 at 1:41 PM Cindy Lu <lulu@redhat.com> wrote:
>
> Add the function to support setting the MAC address.
> For vdpa_sim_net, the driver will write the MAC address
> to the config space, and other devices can implement
> their own functions to support this.
>
> Signed-off-by: Cindy Lu <lulu@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Thanks
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATH v5 3/3] vdpa/mlx5: Add the support of set mac address
2024-07-23 5:39 ` [PATH v5 3/3] vdpa/mlx5: " Cindy Lu
@ 2024-07-23 6:02 ` Jason Wang
2024-07-23 7:49 ` Dragos Tatulea
1 sibling, 0 replies; 16+ messages in thread
From: Jason Wang @ 2024-07-23 6:02 UTC (permalink / raw)
To: Cindy Lu
Cc: dtatulea, mst, parav, sgarzare, netdev, virtualization,
linux-kernel
On Tue, Jul 23, 2024 at 1:41 PM Cindy Lu <lulu@redhat.com> wrote:
>
> Add the function to support setting the MAC address.
> For vdpa/mlx5, the function will use mlx5_mpfs_add_mac
> to set the mac address
>
> Tested in ConnectX-6 Dx device
>
> Signed-off-by: Cindy Lu <lulu@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Thanks
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATH v5 1/3] vdpa: support set mac address from vdpa tool
2024-07-23 6:01 ` Jason Wang
@ 2024-07-23 6:16 ` Cindy Lu
0 siblings, 0 replies; 16+ messages in thread
From: Cindy Lu @ 2024-07-23 6:16 UTC (permalink / raw)
To: Jason Wang
Cc: dtatulea, mst, parav, sgarzare, netdev, virtualization,
linux-kernel
On Tue, 23 Jul 2024 at 14:01, Jason Wang <jasowang@redhat.com> wrote:
>
> On Tue, Jul 23, 2024 at 1:41 PM Cindy Lu <lulu@redhat.com> wrote:
> >
> > Add new UAPI to support the mac address from vdpa tool
> > Function vdpa_nl_cmd_dev_attr_set_doit() will get the
> > new MAC address from the vdpa tool and then set it to the device.
> >
> > The usage is: vdpa dev set name vdpa_name mac **:**:**:**:**:**
> >
> > Here is example:
> > root@L1# vdpa -jp dev config show vdpa0
> > {
> > "config": {
> > "vdpa0": {
> > "mac": "82:4d:e9:5d:d7:e6",
> > "link ": "up",
> > "link_announce ": false,
> > "mtu": 1500
> > }
> > }
> > }
> >
> > root@L1# vdpa dev set name vdpa0 mac 00:11:22:33:44:55
> >
> > root@L1# vdpa -jp dev config show vdpa0
> > {
> > "config": {
> > "vdpa0": {
> > "mac": "00:11:22:33:44:55",
> > "link ": "up",
> > "link_announce ": false,
> > "mtu": 1500
> > }
> > }
> > }
> >
> > Signed-off-by: Cindy Lu <lulu@redhat.com>
> > ---
> > drivers/vdpa/vdpa.c | 84 +++++++++++++++++++++++++++++++++++++++
> > include/linux/vdpa.h | 9 +++++
> > include/uapi/linux/vdpa.h | 1 +
> > 3 files changed, 94 insertions(+)
> >
> > diff --git a/drivers/vdpa/vdpa.c b/drivers/vdpa/vdpa.c
> > index 8d391947eb8d..07d61ee62839 100644
> > --- a/drivers/vdpa/vdpa.c
> > +++ b/drivers/vdpa/vdpa.c
> > @@ -1361,6 +1361,85 @@ static int vdpa_nl_cmd_dev_config_get_doit(struct sk_buff *skb, struct genl_info
> > return err;
> > }
> >
> > +static int vdpa_dev_net_device_attr_set(struct vdpa_device *vdev,
> > + struct genl_info *info)
> > +{
> > + struct vdpa_dev_set_config set_config = {};
> > + const u8 *macaddr;
> > + struct vdpa_mgmt_dev *mdev = vdev->mdev;
> > + struct nlattr **nl_attrs = info->attrs;
> > + int err = -EINVAL;
> > +
> > + if (!vdev->mdev)
> > + return -EINVAL;
>
> It looks like the caller has already done this check?
>
sure, will remove this
> > +
> > + down_write(&vdev->cf_lock);
> > + if ((mdev->supported_features & BIT_ULL(VIRTIO_NET_F_MAC)) &&
>
> This is not a virtio feature, so I don't get why we need to check
> VIRTIO_NET_F_MAC.
>
will remove this
> > + nl_attrs[VDPA_ATTR_DEV_NET_CFG_MACADDR]) {
> > + set_config.mask |= BIT_ULL(VDPA_ATTR_DEV_NET_CFG_MACADDR);
> > + macaddr = nla_data(nl_attrs[VDPA_ATTR_DEV_NET_CFG_MACADDR]);
> > +
> > + if (is_valid_ether_addr(macaddr)) {
> > + memcpy(set_config.net.mac, macaddr, ETH_ALEN);
> > + if (mdev->ops->dev_set_attr) {
> > + err = mdev->ops->dev_set_attr(mdev, vdev,
> > + &set_config);
> > + } else {
> > + NL_SET_ERR_MSG_FMT_MOD(info->extack,
> > + "device not supported");
>
> "Device does not support setting mac address" ?
>
sure, will change this
Thanks
cindy
> > + }
> > + } else {
> > + NL_SET_ERR_MSG_FMT_MOD(info->extack,
> > + "Invalid MAC address");
> > + }
> > + }
> > + up_write(&vdev->cf_lock);
> > + return err;
> > +}
> > +static int vdpa_nl_cmd_dev_attr_set_doit(struct sk_buff *skb,
> > + struct genl_info *info)
> > +{
> > + const char *name;
> > + int err = 0;
> > + struct device *dev;
> > + struct vdpa_device *vdev;
> > + u64 classes;
> > +
> > + if (!info->attrs[VDPA_ATTR_DEV_NAME])
> > + return -EINVAL;
> > +
> > + name = nla_data(info->attrs[VDPA_ATTR_DEV_NAME]);
> > +
> > + down_write(&vdpa_dev_lock);
> > + dev = bus_find_device(&vdpa_bus, NULL, name, vdpa_name_match);
> > + if (!dev) {
> > + NL_SET_ERR_MSG_MOD(info->extack, "device not found");
> > + err = -ENODEV;
> > + goto dev_err;
> > + }
> > + vdev = container_of(dev, struct vdpa_device, dev);
> > + if (!vdev->mdev) {
> > + NL_SET_ERR_MSG_MOD(
> > + info->extack,
> > + "Fail to find the specified management device");
> > + err = -EINVAL;
> > + goto mdev_err;
> > + }
> > + classes = vdpa_mgmtdev_get_classes(vdev->mdev, NULL);
> > + if (classes & BIT_ULL(VIRTIO_ID_NET)) {
> > + err = vdpa_dev_net_device_attr_set(vdev, info);
> > + } else {
> > + NL_SET_ERR_MSG_FMT_MOD(info->extack, "%s device not supported",
> > + name);
> > + }
> > +
> > +mdev_err:
> > + put_device(dev);
> > +dev_err:
> > + up_write(&vdpa_dev_lock);
> > + return err;
> > +}
> > +
> > static int vdpa_dev_config_dump(struct device *dev, void *data)
> > {
> > struct vdpa_device *vdev = container_of(dev, struct vdpa_device, dev);
> > @@ -1497,6 +1576,11 @@ static const struct genl_ops vdpa_nl_ops[] = {
> > .doit = vdpa_nl_cmd_dev_stats_get_doit,
> > .flags = GENL_ADMIN_PERM,
> > },
> > + {
> > + .cmd = VDPA_CMD_DEV_ATTR_SET,
> > + .doit = vdpa_nl_cmd_dev_attr_set_doit,
> > + .flags = GENL_ADMIN_PERM,
> > + },
> > };
> >
> > static struct genl_family vdpa_nl_family __ro_after_init = {
> > diff --git a/include/linux/vdpa.h b/include/linux/vdpa.h
> > index 7977ca03ac7a..3511156c10db 100644
> > --- a/include/linux/vdpa.h
> > +++ b/include/linux/vdpa.h
> > @@ -582,11 +582,20 @@ void vdpa_set_status(struct vdpa_device *vdev, u8 status);
> > * @dev: vdpa device to remove
> > * Driver need to remove the specified device by calling
> > * _vdpa_unregister_device().
> > + * @dev_set_attr: change a vdpa device's attr after it was create
> > + * @mdev: parent device to use for device
> > + * @dev: vdpa device structure
> > + * @config:Attributes to be set for the device.
> > + * The driver needs to check the mask of the structure and then set
> > + * the related information to the vdpa device. The driver must return 0
> > + * if set successfully.
> > */
> > struct vdpa_mgmtdev_ops {
> > int (*dev_add)(struct vdpa_mgmt_dev *mdev, const char *name,
> > const struct vdpa_dev_set_config *config);
> > void (*dev_del)(struct vdpa_mgmt_dev *mdev, struct vdpa_device *dev);
> > + int (*dev_set_attr)(struct vdpa_mgmt_dev *mdev, struct vdpa_device *dev,
> > + const struct vdpa_dev_set_config *config);
> > };
> >
> > /**
> > diff --git a/include/uapi/linux/vdpa.h b/include/uapi/linux/vdpa.h
> > index 842bf1201ac4..71edf2c70cc3 100644
> > --- a/include/uapi/linux/vdpa.h
> > +++ b/include/uapi/linux/vdpa.h
> > @@ -19,6 +19,7 @@ enum vdpa_command {
> > VDPA_CMD_DEV_GET, /* can dump */
> > VDPA_CMD_DEV_CONFIG_GET, /* can dump */
> > VDPA_CMD_DEV_VSTATS_GET,
> > + VDPA_CMD_DEV_ATTR_SET,
> > };
> >
> > enum vdpa_attr {
> > --
> > 2.45.0
> >
>
> Thanks
>
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATH v5 3/3] vdpa/mlx5: Add the support of set mac address
2024-07-23 5:39 ` [PATH v5 3/3] vdpa/mlx5: " Cindy Lu
2024-07-23 6:02 ` Jason Wang
@ 2024-07-23 7:49 ` Dragos Tatulea
2024-07-23 11:29 ` Michael S. Tsirkin
1 sibling, 1 reply; 16+ messages in thread
From: Dragos Tatulea @ 2024-07-23 7:49 UTC (permalink / raw)
To: Parav Pandit, sgarzare@redhat.com,
virtualization@lists.linux-foundation.org,
linux-kernel@vger.kernel.org, lulu@redhat.com,
netdev@vger.kernel.org, mst@redhat.com, jasowang@redhat.com
On Tue, 2024-07-23 at 13:39 +0800, Cindy Lu wrote:
> Add the function to support setting the MAC address.
> For vdpa/mlx5, the function will use mlx5_mpfs_add_mac
> to set the mac address
>
> Tested in ConnectX-6 Dx device
>
> Signed-off-by: Cindy Lu <lulu@redhat.com>
> ---
> drivers/vdpa/mlx5/net/mlx5_vnet.c | 28 ++++++++++++++++++++++++++++
> 1 file changed, 28 insertions(+)
>
> diff --git a/drivers/vdpa/mlx5/net/mlx5_vnet.c b/drivers/vdpa/mlx5/net/mlx5_vnet.c
> index ecfc16151d61..7fce952d650f 100644
> --- a/drivers/vdpa/mlx5/net/mlx5_vnet.c
> +++ b/drivers/vdpa/mlx5/net/mlx5_vnet.c
> @@ -3785,10 +3785,38 @@ static void mlx5_vdpa_dev_del(struct vdpa_mgmt_dev *v_mdev, struct vdpa_device *
> destroy_workqueue(wq);
> mgtdev->ndev = NULL;
> }
> +static int mlx5_vdpa_set_attr(struct vdpa_mgmt_dev *v_mdev,
> + struct vdpa_device *dev,
> + const struct vdpa_dev_set_config *add_config)
> +{
> + struct virtio_net_config *config;
> + struct mlx5_core_dev *pfmdev;
> + struct mlx5_vdpa_dev *mvdev;
> + struct mlx5_vdpa_net *ndev;
> + struct mlx5_core_dev *mdev;
> + int err = -EINVAL;
> +
> + mvdev = to_mvdev(dev);
> + ndev = to_mlx5_vdpa_ndev(mvdev);
> + mdev = mvdev->mdev;
> + config = &ndev->config;
> +
> + down_write(&ndev->reslock);
> + if (add_config->mask & (1 << VDPA_ATTR_DEV_NET_CFG_MACADDR)) {
> + pfmdev = pci_get_drvdata(pci_physfn(mdev->pdev));
> + err = mlx5_mpfs_add_mac(pfmdev, config->mac);
> + if (0 == err)
if (!err) would be nicer. Not a deal breaker though.
Reviewed-by: Dragos Tatulea <dtatulea@nvidia.com>
> + memcpy(config->mac, add_config->net.mac, ETH_ALEN);
> + }
> +
> + up_write(&ndev->reslock);
> + return err;
> +}
>
> static const struct vdpa_mgmtdev_ops mdev_ops = {
> .dev_add = mlx5_vdpa_dev_add,
> .dev_del = mlx5_vdpa_dev_del,
> + .dev_set_attr = mlx5_vdpa_set_attr,
> };
>
> static struct virtio_device_id id_table[] = {
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATH v5 3/3] vdpa/mlx5: Add the support of set mac address
2024-07-23 7:49 ` Dragos Tatulea
@ 2024-07-23 11:29 ` Michael S. Tsirkin
2024-07-24 2:12 ` Cindy Lu
0 siblings, 1 reply; 16+ messages in thread
From: Michael S. Tsirkin @ 2024-07-23 11:29 UTC (permalink / raw)
To: Dragos Tatulea
Cc: Parav Pandit, sgarzare@redhat.com,
virtualization@lists.linux-foundation.org,
linux-kernel@vger.kernel.org, lulu@redhat.com,
netdev@vger.kernel.org, jasowang@redhat.com
On Tue, Jul 23, 2024 at 07:49:44AM +0000, Dragos Tatulea wrote:
> On Tue, 2024-07-23 at 13:39 +0800, Cindy Lu wrote:
> > Add the function to support setting the MAC address.
> > For vdpa/mlx5, the function will use mlx5_mpfs_add_mac
> > to set the mac address
> >
> > Tested in ConnectX-6 Dx device
> >
> > Signed-off-by: Cindy Lu <lulu@redhat.com>
> > ---
> > drivers/vdpa/mlx5/net/mlx5_vnet.c | 28 ++++++++++++++++++++++++++++
> > 1 file changed, 28 insertions(+)
> >
> > diff --git a/drivers/vdpa/mlx5/net/mlx5_vnet.c b/drivers/vdpa/mlx5/net/mlx5_vnet.c
> > index ecfc16151d61..7fce952d650f 100644
> > --- a/drivers/vdpa/mlx5/net/mlx5_vnet.c
> > +++ b/drivers/vdpa/mlx5/net/mlx5_vnet.c
> > @@ -3785,10 +3785,38 @@ static void mlx5_vdpa_dev_del(struct vdpa_mgmt_dev *v_mdev, struct vdpa_device *
> > destroy_workqueue(wq);
> > mgtdev->ndev = NULL;
> > }
> > +static int mlx5_vdpa_set_attr(struct vdpa_mgmt_dev *v_mdev,
> > + struct vdpa_device *dev,
> > + const struct vdpa_dev_set_config *add_config)
> > +{
> > + struct virtio_net_config *config;
> > + struct mlx5_core_dev *pfmdev;
> > + struct mlx5_vdpa_dev *mvdev;
> > + struct mlx5_vdpa_net *ndev;
> > + struct mlx5_core_dev *mdev;
> > + int err = -EINVAL;
> > +
> > + mvdev = to_mvdev(dev);
> > + ndev = to_mlx5_vdpa_ndev(mvdev);
> > + mdev = mvdev->mdev;
> > + config = &ndev->config;
> > +
> > + down_write(&ndev->reslock);
> > + if (add_config->mask & (1 << VDPA_ATTR_DEV_NET_CFG_MACADDR)) {
> > + pfmdev = pci_get_drvdata(pci_physfn(mdev->pdev));
> > + err = mlx5_mpfs_add_mac(pfmdev, config->mac);
> > + if (0 == err)
> if (!err) would be nicer. Not a deal breaker though.
yes, no yodda style please. It, I can not stand.
> Reviewed-by: Dragos Tatulea <dtatulea@nvidia.com>
>
> > + memcpy(config->mac, add_config->net.mac, ETH_ALEN);
> > + }
> > +
> > + up_write(&ndev->reslock);
> > + return err;
> > +}
> >
> > static const struct vdpa_mgmtdev_ops mdev_ops = {
> > .dev_add = mlx5_vdpa_dev_add,
> > .dev_del = mlx5_vdpa_dev_del,
> > + .dev_set_attr = mlx5_vdpa_set_attr,
> > };
> >
> > static struct virtio_device_id id_table[] = {
>
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATH v5 0/3] vdpa: support set mac address from vdpa tool
2024-07-23 5:39 [PATH v5 0/3] vdpa: support set mac address from vdpa tool Cindy Lu
` (2 preceding siblings ...)
2024-07-23 5:39 ` [PATH v5 3/3] vdpa/mlx5: " Cindy Lu
@ 2024-07-23 18:45 ` Andrew Lunn
2024-07-24 2:12 ` Cindy Lu
3 siblings, 1 reply; 16+ messages in thread
From: Andrew Lunn @ 2024-07-23 18:45 UTC (permalink / raw)
To: Cindy Lu
Cc: dtatulea, mst, jasowang, parav, sgarzare, netdev, virtualization,
linux-kernel
On Tue, Jul 23, 2024 at 01:39:19PM +0800, Cindy Lu wrote:
> Add support for setting the MAC address using the VDPA tool.
> This feature will allow setting the MAC address using the VDPA tool.
> For example, in vdpa_sim_net, the implementation sets the MAC address
> to the config space. However, for other drivers, they can implement their
> own function, not limited to the config space.
>
> Changelog v2
> - Changed the function name to prevent misunderstanding
> - Added check for blk device
> - Addressed the comments
> Changelog v3
> - Split the function of the net device from vdpa_nl_cmd_dev_attr_set_doit
> - Add a lock for the network device's dev_set_attr operation
> - Address the comments
> Changelog v4
> - Address the comments
> - Add a lock for the vdap_sim?_net device's dev_set_attr operation
> Changelog v5
> - Address the comments
This history is to help reviewers of previous versions know if there
comments have been addressed. Just saying 'Address the comments' is
not useful. Please give a one line summary of each of the comment
which has been addressed, maybe including how it was addressed.
Andrew
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATH v5 1/3] vdpa: support set mac address from vdpa tool
2024-07-23 5:39 ` [PATH v5 1/3] " Cindy Lu
2024-07-23 6:01 ` Jason Wang
@ 2024-07-23 18:48 ` Andrew Lunn
2024-07-24 2:12 ` Cindy Lu
1 sibling, 1 reply; 16+ messages in thread
From: Andrew Lunn @ 2024-07-23 18:48 UTC (permalink / raw)
To: Cindy Lu
Cc: dtatulea, mst, jasowang, parav, sgarzare, netdev, virtualization,
linux-kernel
On Tue, Jul 23, 2024 at 01:39:20PM +0800, Cindy Lu wrote:
> Add new UAPI to support the mac address from vdpa tool
> Function vdpa_nl_cmd_dev_attr_set_doit() will get the
> new MAC address from the vdpa tool and then set it to the device.
>
> The usage is: vdpa dev set name vdpa_name mac **:**:**:**:**:**
>
> Here is example:
> root@L1# vdpa -jp dev config show vdpa0
> {
> "config": {
> "vdpa0": {
> "mac": "82:4d:e9:5d:d7:e6",
> "link ": "up",
> "link_announce ": false,
> "mtu": 1500
> }
> }
> }
>
> root@L1# vdpa dev set name vdpa0 mac 00:11:22:33:44:55
>
> root@L1# vdpa -jp dev config show vdpa0
> {
> "config": {
> "vdpa0": {
> "mac": "00:11:22:33:44:55",
> "link ": "up",
> "link_announce ": false,
> "mtu": 1500
> }
> }
> }
>
> Signed-off-by: Cindy Lu <lulu@redhat.com>
> ---
> drivers/vdpa/vdpa.c | 84 +++++++++++++++++++++++++++++++++++++++
> include/linux/vdpa.h | 9 +++++
> include/uapi/linux/vdpa.h | 1 +
> 3 files changed, 94 insertions(+)
>
> diff --git a/drivers/vdpa/vdpa.c b/drivers/vdpa/vdpa.c
> index 8d391947eb8d..07d61ee62839 100644
> --- a/drivers/vdpa/vdpa.c
> +++ b/drivers/vdpa/vdpa.c
> @@ -1361,6 +1361,85 @@ static int vdpa_nl_cmd_dev_config_get_doit(struct sk_buff *skb, struct genl_info
> return err;
> }
>
> +static int vdpa_dev_net_device_attr_set(struct vdpa_device *vdev,
> + struct genl_info *info)
> +{
> + struct vdpa_dev_set_config set_config = {};
> + const u8 *macaddr;
> + struct vdpa_mgmt_dev *mdev = vdev->mdev;
> + struct nlattr **nl_attrs = info->attrs;
> + int err = -EINVAL;
> +
> + if (!vdev->mdev)
> + return -EINVAL;
> +
> + down_write(&vdev->cf_lock);
> + if ((mdev->supported_features & BIT_ULL(VIRTIO_NET_F_MAC)) &&
> + nl_attrs[VDPA_ATTR_DEV_NET_CFG_MACADDR]) {
> + set_config.mask |= BIT_ULL(VDPA_ATTR_DEV_NET_CFG_MACADDR);
> + macaddr = nla_data(nl_attrs[VDPA_ATTR_DEV_NET_CFG_MACADDR]);
> +
> + if (is_valid_ether_addr(macaddr)) {
> + memcpy(set_config.net.mac, macaddr, ETH_ALEN);
> + if (mdev->ops->dev_set_attr) {
> + err = mdev->ops->dev_set_attr(mdev, vdev,
> + &set_config);
> + } else {
> + NL_SET_ERR_MSG_FMT_MOD(info->extack,
> + "device not supported");
> + }
> + } else {
> + NL_SET_ERR_MSG_FMT_MOD(info->extack,
> + "Invalid MAC address");
> + }
> + }
> + up_write(&vdev->cf_lock);
> + return err;
> +}
> +static int vdpa_nl_cmd_dev_attr_set_doit(struct sk_buff *skb,
> + struct genl_info *info)
> +{
> + const char *name;
> + int err = 0;
> + struct device *dev;
> + struct vdpa_device *vdev;
> + u64 classes;
> +
> + if (!info->attrs[VDPA_ATTR_DEV_NAME])
> + return -EINVAL;
> +
> + name = nla_data(info->attrs[VDPA_ATTR_DEV_NAME]);
> +
> + down_write(&vdpa_dev_lock);
> + dev = bus_find_device(&vdpa_bus, NULL, name, vdpa_name_match);
> + if (!dev) {
> + NL_SET_ERR_MSG_MOD(info->extack, "device not found");
> + err = -ENODEV;
> + goto dev_err;
> + }
> + vdev = container_of(dev, struct vdpa_device, dev);
> + if (!vdev->mdev) {
> + NL_SET_ERR_MSG_MOD(
> + info->extack,
> + "Fail to find the specified management device");
> + err = -EINVAL;
> + goto mdev_err;
> + }
> + classes = vdpa_mgmtdev_get_classes(vdev->mdev, NULL);
> + if (classes & BIT_ULL(VIRTIO_ID_NET)) {
> + err = vdpa_dev_net_device_attr_set(vdev, info);
> + } else {
> + NL_SET_ERR_MSG_FMT_MOD(info->extack, "%s device not supported",
> + name);
> + }
> +
> +mdev_err:
> + put_device(dev);
> +dev_err:
> + up_write(&vdpa_dev_lock);
> + return err;
> +}
> +
> static int vdpa_dev_config_dump(struct device *dev, void *data)
> {
> struct vdpa_device *vdev = container_of(dev, struct vdpa_device, dev);
> @@ -1497,6 +1576,11 @@ static const struct genl_ops vdpa_nl_ops[] = {
> .doit = vdpa_nl_cmd_dev_stats_get_doit,
> .flags = GENL_ADMIN_PERM,
> },
> + {
> + .cmd = VDPA_CMD_DEV_ATTR_SET,
> + .doit = vdpa_nl_cmd_dev_attr_set_doit,
> + .flags = GENL_ADMIN_PERM,
> + },
> };
>
> static struct genl_family vdpa_nl_family __ro_after_init = {
> diff --git a/include/linux/vdpa.h b/include/linux/vdpa.h
> index 7977ca03ac7a..3511156c10db 100644
> --- a/include/linux/vdpa.h
> +++ b/include/linux/vdpa.h
> @@ -582,11 +582,20 @@ void vdpa_set_status(struct vdpa_device *vdev, u8 status);
> * @dev: vdpa device to remove
> * Driver need to remove the specified device by calling
> * _vdpa_unregister_device().
> + * @dev_set_attr: change a vdpa device's attr after it was create
> + * @mdev: parent device to use for device
The indentation looks a bit odd here.
Andrew
---
pw-bot: cr
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATH v5 2/3] vdpa_sim_net: Add the support of set mac address
2024-07-23 5:39 ` [PATH v5 2/3] vdpa_sim_net: Add the support of set mac address Cindy Lu
2024-07-23 6:01 ` Jason Wang
@ 2024-07-23 18:51 ` Andrew Lunn
1 sibling, 0 replies; 16+ messages in thread
From: Andrew Lunn @ 2024-07-23 18:51 UTC (permalink / raw)
To: Cindy Lu
Cc: dtatulea, mst, jasowang, parav, sgarzare, netdev, virtualization,
linux-kernel
> +static int vdpasim_net_set_attr(struct vdpa_mgmt_dev *mdev,
> + struct vdpa_device *dev,
> + const struct vdpa_dev_set_config *config)
> +{
> + struct vdpasim *vdpasim = container_of(dev, struct vdpasim, vdpa);
> + struct virtio_net_config *vio_config = vdpasim->config;
> +
> + mutex_lock(&vdpasim->mutex);
> +
> + if (config->mask & (1 << VDPA_ATTR_DEV_NET_CFG_MACADDR)) {
> + memcpy(vio_config->mac, config->net.mac, ETH_ALEN);
ether_addr_copy()
Andrew
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATH v5 0/3] vdpa: support set mac address from vdpa tool
2024-07-23 18:45 ` [PATH v5 0/3] vdpa: support set mac address from vdpa tool Andrew Lunn
@ 2024-07-24 2:12 ` Cindy Lu
0 siblings, 0 replies; 16+ messages in thread
From: Cindy Lu @ 2024-07-24 2:12 UTC (permalink / raw)
To: Andrew Lunn
Cc: dtatulea, mst, jasowang, parav, sgarzare, netdev, virtualization,
linux-kernel
On Wed, 24 Jul 2024 at 02:45, Andrew Lunn <andrew@lunn.ch> wrote:
>
> On Tue, Jul 23, 2024 at 01:39:19PM +0800, Cindy Lu wrote:
> > Add support for setting the MAC address using the VDPA tool.
> > This feature will allow setting the MAC address using the VDPA tool.
> > For example, in vdpa_sim_net, the implementation sets the MAC address
> > to the config space. However, for other drivers, they can implement their
> > own function, not limited to the config space.
> >
> > Changelog v2
> > - Changed the function name to prevent misunderstanding
> > - Added check for blk device
> > - Addressed the comments
> > Changelog v3
> > - Split the function of the net device from vdpa_nl_cmd_dev_attr_set_doit
> > - Add a lock for the network device's dev_set_attr operation
> > - Address the comments
> > Changelog v4
> > - Address the comments
> > - Add a lock for the vdap_sim?_net device's dev_set_attr operation
> > Changelog v5
> > - Address the comments
>
> This history is to help reviewers of previous versions know if there
> comments have been addressed. Just saying 'Address the comments' is
> not useful. Please give a one line summary of each of the comment
> which has been addressed, maybe including how it was addressed.
>
> Andrew
>
will change this
Thanks
cindy
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATH v5 1/3] vdpa: support set mac address from vdpa tool
2024-07-23 18:48 ` Andrew Lunn
@ 2024-07-24 2:12 ` Cindy Lu
0 siblings, 0 replies; 16+ messages in thread
From: Cindy Lu @ 2024-07-24 2:12 UTC (permalink / raw)
To: Andrew Lunn
Cc: dtatulea, mst, jasowang, parav, sgarzare, netdev, virtualization,
linux-kernel
On Wed, 24 Jul 2024 at 02:48, Andrew Lunn <andrew@lunn.ch> wrote:
>
> On Tue, Jul 23, 2024 at 01:39:20PM +0800, Cindy Lu wrote:
> > Add new UAPI to support the mac address from vdpa tool
> > Function vdpa_nl_cmd_dev_attr_set_doit() will get the
> > new MAC address from the vdpa tool and then set it to the device.
> >
> > The usage is: vdpa dev set name vdpa_name mac **:**:**:**:**:**
> >
> > Here is example:
> > root@L1# vdpa -jp dev config show vdpa0
> > {
> > "config": {
> > "vdpa0": {
> > "mac": "82:4d:e9:5d:d7:e6",
> > "link ": "up",
> > "link_announce ": false,
> > "mtu": 1500
> > }
> > }
> > }
> >
> > root@L1# vdpa dev set name vdpa0 mac 00:11:22:33:44:55
> >
> > root@L1# vdpa -jp dev config show vdpa0
> > {
> > "config": {
> > "vdpa0": {
> > "mac": "00:11:22:33:44:55",
> > "link ": "up",
> > "link_announce ": false,
> > "mtu": 1500
> > }
> > }
> > }
> >
> > Signed-off-by: Cindy Lu <lulu@redhat.com>
> > ---
> > drivers/vdpa/vdpa.c | 84 +++++++++++++++++++++++++++++++++++++++
> > include/linux/vdpa.h | 9 +++++
> > include/uapi/linux/vdpa.h | 1 +
> > 3 files changed, 94 insertions(+)
> >
> > diff --git a/drivers/vdpa/vdpa.c b/drivers/vdpa/vdpa.c
> > index 8d391947eb8d..07d61ee62839 100644
> > --- a/drivers/vdpa/vdpa.c
> > +++ b/drivers/vdpa/vdpa.c
> > @@ -1361,6 +1361,85 @@ static int vdpa_nl_cmd_dev_config_get_doit(struct sk_buff *skb, struct genl_info
> > return err;
> > }
> >
> > +static int vdpa_dev_net_device_attr_set(struct vdpa_device *vdev,
> > + struct genl_info *info)
> > +{
> > + struct vdpa_dev_set_config set_config = {};
> > + const u8 *macaddr;
> > + struct vdpa_mgmt_dev *mdev = vdev->mdev;
> > + struct nlattr **nl_attrs = info->attrs;
> > + int err = -EINVAL;
> > +
> > + if (!vdev->mdev)
> > + return -EINVAL;
> > +
> > + down_write(&vdev->cf_lock);
> > + if ((mdev->supported_features & BIT_ULL(VIRTIO_NET_F_MAC)) &&
> > + nl_attrs[VDPA_ATTR_DEV_NET_CFG_MACADDR]) {
> > + set_config.mask |= BIT_ULL(VDPA_ATTR_DEV_NET_CFG_MACADDR);
> > + macaddr = nla_data(nl_attrs[VDPA_ATTR_DEV_NET_CFG_MACADDR]);
> > +
> > + if (is_valid_ether_addr(macaddr)) {
> > + memcpy(set_config.net.mac, macaddr, ETH_ALEN);
> > + if (mdev->ops->dev_set_attr) {
> > + err = mdev->ops->dev_set_attr(mdev, vdev,
> > + &set_config);
> > + } else {
> > + NL_SET_ERR_MSG_FMT_MOD(info->extack,
> > + "device not supported");
> > + }
> > + } else {
> > + NL_SET_ERR_MSG_FMT_MOD(info->extack,
> > + "Invalid MAC address");
> > + }
> > + }
> > + up_write(&vdev->cf_lock);
> > + return err;
> > +}
> > +static int vdpa_nl_cmd_dev_attr_set_doit(struct sk_buff *skb,
> > + struct genl_info *info)
> > +{
> > + const char *name;
> > + int err = 0;
> > + struct device *dev;
> > + struct vdpa_device *vdev;
> > + u64 classes;
> > +
> > + if (!info->attrs[VDPA_ATTR_DEV_NAME])
> > + return -EINVAL;
> > +
> > + name = nla_data(info->attrs[VDPA_ATTR_DEV_NAME]);
> > +
> > + down_write(&vdpa_dev_lock);
> > + dev = bus_find_device(&vdpa_bus, NULL, name, vdpa_name_match);
> > + if (!dev) {
> > + NL_SET_ERR_MSG_MOD(info->extack, "device not found");
> > + err = -ENODEV;
> > + goto dev_err;
> > + }
> > + vdev = container_of(dev, struct vdpa_device, dev);
> > + if (!vdev->mdev) {
> > + NL_SET_ERR_MSG_MOD(
> > + info->extack,
> > + "Fail to find the specified management device");
> > + err = -EINVAL;
> > + goto mdev_err;
> > + }
> > + classes = vdpa_mgmtdev_get_classes(vdev->mdev, NULL);
> > + if (classes & BIT_ULL(VIRTIO_ID_NET)) {
> > + err = vdpa_dev_net_device_attr_set(vdev, info);
> > + } else {
> > + NL_SET_ERR_MSG_FMT_MOD(info->extack, "%s device not supported",
> > + name);
> > + }
> > +
> > +mdev_err:
> > + put_device(dev);
> > +dev_err:
> > + up_write(&vdpa_dev_lock);
> > + return err;
> > +}
> > +
> > static int vdpa_dev_config_dump(struct device *dev, void *data)
> > {
> > struct vdpa_device *vdev = container_of(dev, struct vdpa_device, dev);
> > @@ -1497,6 +1576,11 @@ static const struct genl_ops vdpa_nl_ops[] = {
> > .doit = vdpa_nl_cmd_dev_stats_get_doit,
> > .flags = GENL_ADMIN_PERM,
> > },
> > + {
> > + .cmd = VDPA_CMD_DEV_ATTR_SET,
> > + .doit = vdpa_nl_cmd_dev_attr_set_doit,
> > + .flags = GENL_ADMIN_PERM,
> > + },
> > };
> >
> > static struct genl_family vdpa_nl_family __ro_after_init = {
> > diff --git a/include/linux/vdpa.h b/include/linux/vdpa.h
> > index 7977ca03ac7a..3511156c10db 100644
> > --- a/include/linux/vdpa.h
> > +++ b/include/linux/vdpa.h
> > @@ -582,11 +582,20 @@ void vdpa_set_status(struct vdpa_device *vdev, u8 status);
> > * @dev: vdpa device to remove
> > * Driver need to remove the specified device by calling
> > * _vdpa_unregister_device().
> > + * @dev_set_attr: change a vdpa device's attr after it was create
> > + * @mdev: parent device to use for device
>
> The indentation looks a bit odd here.
>
> Andrew
>
sure, Will fix this
thanks
cindy
> ---
> pw-bot: cr
>
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATH v5 3/3] vdpa/mlx5: Add the support of set mac address
2024-07-23 11:29 ` Michael S. Tsirkin
@ 2024-07-24 2:12 ` Cindy Lu
0 siblings, 0 replies; 16+ messages in thread
From: Cindy Lu @ 2024-07-24 2:12 UTC (permalink / raw)
To: Michael S. Tsirkin
Cc: Dragos Tatulea, Parav Pandit, sgarzare@redhat.com,
virtualization@lists.linux-foundation.org,
linux-kernel@vger.kernel.org, netdev@vger.kernel.org,
jasowang@redhat.com
On Tue, 23 Jul 2024 at 19:29, Michael S. Tsirkin <mst@redhat.com> wrote:
>
> On Tue, Jul 23, 2024 at 07:49:44AM +0000, Dragos Tatulea wrote:
> > On Tue, 2024-07-23 at 13:39 +0800, Cindy Lu wrote:
> > > Add the function to support setting the MAC address.
> > > For vdpa/mlx5, the function will use mlx5_mpfs_add_mac
> > > to set the mac address
> > >
> > > Tested in ConnectX-6 Dx device
> > >
> > > Signed-off-by: Cindy Lu <lulu@redhat.com>
> > > ---
> > > drivers/vdpa/mlx5/net/mlx5_vnet.c | 28 ++++++++++++++++++++++++++++
> > > 1 file changed, 28 insertions(+)
> > >
> > > diff --git a/drivers/vdpa/mlx5/net/mlx5_vnet.c b/drivers/vdpa/mlx5/net/mlx5_vnet.c
> > > index ecfc16151d61..7fce952d650f 100644
> > > --- a/drivers/vdpa/mlx5/net/mlx5_vnet.c
> > > +++ b/drivers/vdpa/mlx5/net/mlx5_vnet.c
> > > @@ -3785,10 +3785,38 @@ static void mlx5_vdpa_dev_del(struct vdpa_mgmt_dev *v_mdev, struct vdpa_device *
> > > destroy_workqueue(wq);
> > > mgtdev->ndev = NULL;
> > > }
> > > +static int mlx5_vdpa_set_attr(struct vdpa_mgmt_dev *v_mdev,
> > > + struct vdpa_device *dev,
> > > + const struct vdpa_dev_set_config *add_config)
> > > +{
> > > + struct virtio_net_config *config;
> > > + struct mlx5_core_dev *pfmdev;
> > > + struct mlx5_vdpa_dev *mvdev;
> > > + struct mlx5_vdpa_net *ndev;
> > > + struct mlx5_core_dev *mdev;
> > > + int err = -EINVAL;
> > > +
> > > + mvdev = to_mvdev(dev);
> > > + ndev = to_mlx5_vdpa_ndev(mvdev);
> > > + mdev = mvdev->mdev;
> > > + config = &ndev->config;
> > > +
> > > + down_write(&ndev->reslock);
> > > + if (add_config->mask & (1 << VDPA_ATTR_DEV_NET_CFG_MACADDR)) {
> > > + pfmdev = pci_get_drvdata(pci_physfn(mdev->pdev));
> > > + err = mlx5_mpfs_add_mac(pfmdev, config->mac);
> > > + if (0 == err)
> > if (!err) would be nicer. Not a deal breaker though.
>
> yes, no yodda style please. It, I can not stand.
>
sure, Will fix this
Thanks
cindy
>
> > Reviewed-by: Dragos Tatulea <dtatulea@nvidia.com>
> >
> > > + memcpy(config->mac, add_config->net.mac, ETH_ALEN);
> > > + }
> > > +
> > > + up_write(&ndev->reslock);
> > > + return err;
> > > +}
> > >
> > > static const struct vdpa_mgmtdev_ops mdev_ops = {
> > > .dev_add = mlx5_vdpa_dev_add,
> > > .dev_del = mlx5_vdpa_dev_del,
> > > + .dev_set_attr = mlx5_vdpa_set_attr,
> > > };
> > >
> > > static struct virtio_device_id id_table[] = {
> >
>
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2024-07-24 2:19 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-23 5:39 [PATH v5 0/3] vdpa: support set mac address from vdpa tool Cindy Lu
2024-07-23 5:39 ` [PATH v5 1/3] " Cindy Lu
2024-07-23 6:01 ` Jason Wang
2024-07-23 6:16 ` Cindy Lu
2024-07-23 18:48 ` Andrew Lunn
2024-07-24 2:12 ` Cindy Lu
2024-07-23 5:39 ` [PATH v5 2/3] vdpa_sim_net: Add the support of set mac address Cindy Lu
2024-07-23 6:01 ` Jason Wang
2024-07-23 18:51 ` Andrew Lunn
2024-07-23 5:39 ` [PATH v5 3/3] vdpa/mlx5: " Cindy Lu
2024-07-23 6:02 ` Jason Wang
2024-07-23 7:49 ` Dragos Tatulea
2024-07-23 11:29 ` Michael S. Tsirkin
2024-07-24 2:12 ` Cindy Lu
2024-07-23 18:45 ` [PATH v5 0/3] vdpa: support set mac address from vdpa tool Andrew Lunn
2024-07-24 2:12 ` Cindy Lu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).