From: Jason Wang <jasowang@redhat.com>
To: "Zhu, Lingshan" <lingshan.zhu@intel.com>
Cc: netdev <netdev@vger.kernel.org>,
virtualization <virtualization@lists.linux-foundation.org>,
kvm <kvm@vger.kernel.org>, mst <mst@redhat.com>
Subject: Re: [PATCH 1/4] vDPA: allow userspace to query features of a vDPA device
Date: Wed, 21 Sep 2022 15:44:42 +0800 [thread overview]
Message-ID: <CACGkMEvf0sQyFTowg9DtVS3QbAHidv_cOBCk5hUaaKNxwods8Q@mail.gmail.com> (raw)
In-Reply-To: <27b04293-2225-c78d-f6e3-ffe8a7472ea1@intel.com>
On Wed, Sep 21, 2022 at 2:00 PM Zhu, Lingshan <lingshan.zhu@intel.com> wrote:
>
>
>
> On 9/21/2022 10:17 AM, Jason Wang wrote:
> > On Tue, Sep 20, 2022 at 5:58 PM Zhu, Lingshan <lingshan.zhu@intel.com> wrote:
> >>
> >>
> >> On 9/20/2022 10:02 AM, Jason Wang wrote:
> >>> On Fri, Sep 9, 2022 at 5:05 PM Zhu Lingshan <lingshan.zhu@intel.com> wrote:
> >>>> This commit adds a new vDPA netlink attribution
> >>>> VDPA_ATTR_VDPA_DEV_SUPPORTED_FEATURES. Userspace can query
> >>>> features of vDPA devices through this new attr.
> >>>>
> >>>> This commit invokes vdpa_config_ops.get_config() than
> >>>> vdpa_get_config_unlocked() to read the device config
> >>>> spcae, so no raeces in vdpa_set_features_unlocked()
> >>>>
> >>>> Signed-off-by: Zhu Lingshan <lingshan.zhu@intel.com>
> >>> It's better to share the userspace code as well.
> >> OK, will share it in V2.
> >>>> ---
> >>>> drivers/vdpa/vdpa.c | 19 ++++++++++++++-----
> >>>> include/uapi/linux/vdpa.h | 4 ++++
> >>>> 2 files changed, 18 insertions(+), 5 deletions(-)
> >>>>
> >>>> diff --git a/drivers/vdpa/vdpa.c b/drivers/vdpa/vdpa.c
> >>>> index c06c02704461..798a02c7aa94 100644
> >>>> --- a/drivers/vdpa/vdpa.c
> >>>> +++ b/drivers/vdpa/vdpa.c
> >>>> @@ -491,6 +491,8 @@ static int vdpa_mgmtdev_fill(const struct vdpa_mgmt_dev *mdev, struct sk_buff *m
> >>>> err = -EMSGSIZE;
> >>>> goto msg_err;
> >>>> }
> >>>> +
> >>>> + /* report features of a vDPA management device through VDPA_ATTR_DEV_SUPPORTED_FEATURES */
> >>> The code explains itself, there's no need for the comment.
> >> these comments are required in other discussions
> > I think it's more than sufficient to clarify the semantic where it is defined.
> OK, then only comments in the header file
> >
> >>>> if (nla_put_u64_64bit(msg, VDPA_ATTR_DEV_SUPPORTED_FEATURES,
> >>>> mdev->supported_features, VDPA_ATTR_PAD)) {
> >>>> err = -EMSGSIZE;
> >>>> @@ -815,10 +817,10 @@ static int vdpa_dev_net_mq_config_fill(struct vdpa_device *vdev,
> >>>> static int vdpa_dev_net_config_fill(struct vdpa_device *vdev, struct sk_buff *msg)
> >>>> {
> >>>> struct virtio_net_config config = {};
> >>>> - u64 features;
> >>>> + u64 features_device, features_driver;
> >>>> u16 val_u16;
> >>>>
> >>>> - vdpa_get_config_unlocked(vdev, 0, &config, sizeof(config));
> >>>> + vdev->config->get_config(vdev, 0, &config, sizeof(config));
> >>>>
> >>>> if (nla_put(msg, VDPA_ATTR_DEV_NET_CFG_MACADDR, sizeof(config.mac),
> >>>> config.mac))
> >>>> @@ -832,12 +834,19 @@ static int vdpa_dev_net_config_fill(struct vdpa_device *vdev, struct sk_buff *ms
> >>>> if (nla_put_u16(msg, VDPA_ATTR_DEV_NET_CFG_MTU, val_u16))
> >>>> return -EMSGSIZE;
> >>>>
> >>>> - features = vdev->config->get_driver_features(vdev);
> >>>> - if (nla_put_u64_64bit(msg, VDPA_ATTR_DEV_NEGOTIATED_FEATURES, features,
> >>>> + features_driver = vdev->config->get_driver_features(vdev);
> >>>> + if (nla_put_u64_64bit(msg, VDPA_ATTR_DEV_NEGOTIATED_FEATURES, features_driver,
> >>>> + VDPA_ATTR_PAD))
> >>>> + return -EMSGSIZE;
> >>>> +
> >>>> + features_device = vdev->config->get_device_features(vdev);
> >>>> +
> >>>> + /* report features of a vDPA device through VDPA_ATTR_VDPA_DEV_SUPPORTED_FEATURES */
> >>>> + if (nla_put_u64_64bit(msg, VDPA_ATTR_VDPA_DEV_SUPPORTED_FEATURES, features_device,
> >>>> VDPA_ATTR_PAD))
> >>>> return -EMSGSIZE;
> >>>>
> >>>> - return vdpa_dev_net_mq_config_fill(vdev, msg, features, &config);
> >>>> + return vdpa_dev_net_mq_config_fill(vdev, msg, features_driver, &config);
> >>>> }
> >>>>
> >>>> static int
> >>>> diff --git a/include/uapi/linux/vdpa.h b/include/uapi/linux/vdpa.h
> >>>> index 25c55cab3d7c..97531b52dcbe 100644
> >>>> --- a/include/uapi/linux/vdpa.h
> >>>> +++ b/include/uapi/linux/vdpa.h
> >>>> @@ -46,12 +46,16 @@ enum vdpa_attr {
> >>>>
> >>>> VDPA_ATTR_DEV_NEGOTIATED_FEATURES, /* u64 */
> >>>> VDPA_ATTR_DEV_MGMTDEV_MAX_VQS, /* u32 */
> >>>> + /* features of a vDPA management device */
> >>>> VDPA_ATTR_DEV_SUPPORTED_FEATURES, /* u64 */
> >>>>
> >>>> VDPA_ATTR_DEV_QUEUE_INDEX, /* u32 */
> >>>> VDPA_ATTR_DEV_VENDOR_ATTR_NAME, /* string */
> >>>> VDPA_ATTR_DEV_VENDOR_ATTR_VALUE, /* u64 */
> >>>>
> >>>> + /* features of a vDPA device, e.g., /dev/vhost-vdpa0 */
> >>>> + VDPA_ATTR_VDPA_DEV_SUPPORTED_FEATURES, /* u64 */
> >>> What's the difference between this and VDPA_ATTR_DEV_SUPPORTED_FEATURES?
> >> This is to report a vDPA device features, and
> >> VDPA_ATTR_DEV_SUPPORTED_FEATURES
> >> is used for reporting the management device features, we have a long
> >> discussion
> >> on this before.
> > Yes, but the comment is not clear in many ways:
> >
> > " features of a vDPA management device" sounds like features that is
> > out of the scope of the virtio.
> I think the term "vDPA device" implies that it is a virtio device.
> So how about: "virtio features of a vDPA management device"
Not a native speaker, but how about "virtio features that are
supported by the vDPA management device?"
Thanks
> >
> > And
> >
> > "/dev/vhost-vdpa0" is not a vDPA device but a vhost-vDPA device.
> will remove this example here.
>
> Thanks
> >
> > Thanks
> >
> >>> Thanks
> >>>
> >>>> +
> >>>> /* new attributes must be added above here */
> >>>> VDPA_ATTR_MAX,
> >>>> };
> >>>> --
> >>>> 2.31.1
> >>>>
>
_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization
next prev parent reply other threads:[~2022-09-21 7:45 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20220909085712.46006-1-lingshan.zhu@intel.com>
[not found] ` <20220909085712.46006-2-lingshan.zhu@intel.com>
2022-09-20 2:02 ` [PATCH 1/4] vDPA: allow userspace to query features of a vDPA device Jason Wang
[not found] ` <e69b65e7-516f-55bd-cb99-863d7accbd32@intel.com>
2022-09-21 2:17 ` Jason Wang
[not found] ` <27b04293-2225-c78d-f6e3-ffe8a7472ea1@intel.com>
2022-09-21 7:44 ` Jason Wang [this message]
[not found] ` <20220909085712.46006-3-lingshan.zhu@intel.com>
2022-09-20 2:16 ` [PATCH 2/4] vDPA: only report driver features if FEATURES_OK is set Jason Wang
[not found] ` <6fd1f8b3-23b1-84cc-2376-ee04f1fa8438@intel.com>
2022-09-21 2:14 ` Jason Wang
[not found] ` <ed56a694-a024-23be-d4cb-7ab51c959b61@intel.com>
2022-09-21 7:43 ` Jason Wang
[not found] ` <20220909085712.46006-4-lingshan.zhu@intel.com>
2022-09-20 2:17 ` [PATCH 3/4] vDPA: check VIRTIO_NET_F_RSS for max_virtqueue_paris's presence Jason Wang
[not found] ` <20220909085712.46006-5-lingshan.zhu@intel.com>
2022-09-20 2:17 ` [PATCH 4/4] vDPA: Conditionally read MTU and MAC in dev cfg space Jason Wang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CACGkMEvf0sQyFTowg9DtVS3QbAHidv_cOBCk5hUaaKNxwods8Q@mail.gmail.com \
--to=jasowang@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=lingshan.zhu@intel.com \
--cc=mst@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=virtualization@lists.linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).