mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Jason Wang <jasowang@redhat.com>
To: Stefano Garzarella <sgarzare@redhat.com>
Cc: mst@redhat.com, eperezma@redhat.com,
	virtualization@lists.linux-foundation.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 3/4] vdpa_sim: support vendor satistics
Date: Thu, 22 Dec 2022 12:19:17 +0800	[thread overview]
Message-ID: <11aa3331-a262-bc97-193c-d1c9a9214541@redhat.com> (raw)
In-Reply-To: <20221221133414.teizf56exrf5tqvj@sgarzare-redhat>


在 2022/12/21 21:34, Stefano Garzarella 写道:
> On Wed, Dec 21, 2022 at 02:16:51PM +0800, Jason Wang wrote:
>
> Little typo in the title s/satistics/statistics


Fixed.


>
>> This patch adds a new config ops callback to allow individual
>> simulator to implement the vendor stats callback.
>>
>> Signed-off-by: Jason Wang <jasowang@redhat.com>
>> ---
>> drivers/vdpa/vdpa_sim/vdpa_sim.c | 13 +++++++++++++
>> drivers/vdpa/vdpa_sim/vdpa_sim.h |  3 +++
>> 2 files changed, 16 insertions(+)
>>
>> diff --git a/drivers/vdpa/vdpa_sim/vdpa_sim.c 
>> b/drivers/vdpa/vdpa_sim/vdpa_sim.c
>> index 55aaa023a6e2..02e892f819e7 100644
>> --- a/drivers/vdpa/vdpa_sim/vdpa_sim.c
>> +++ b/drivers/vdpa/vdpa_sim/vdpa_sim.c
>> @@ -426,6 +426,18 @@ static int vdpasim_get_vq_state(struct 
>> vdpa_device *vdpa, u16 idx,
>>     return 0;
>> }
>>
>> +static int vdpasim_get_vq_stats(struct vdpa_device *vdpa, u16 idx,
>> +                struct sk_buff *msg,
>> +                struct netlink_ext_ack *extack)
>> +{
>> +    struct vdpasim *vdpasim = vdpa_to_sim(vdpa);
>> +
>> +    if (vdpasim->dev_attr.get_stats)
>> +        return vdpasim->dev_attr.get_stats(vdpasim, idx,
>> +                           msg, extack);
>> +    return -EINVAL;
>
> Maybe -EOPNOTSUPP is better when the device doesn't support it.
> Like we do in vendor_stats_fill() in drivers/vdpa/vdpa.c
>

That's right.


>> +}
>> +
>> static u32 vdpasim_get_vq_align(struct vdpa_device *vdpa)
>> {
>>     return VDPASIM_QUEUE_ALIGN;
>> @@ -710,6 +722,7 @@ static const struct vdpa_config_ops 
>> vdpasim_config_ops = {
>>     .set_vq_ready           = vdpasim_set_vq_ready,
>>     .get_vq_ready           = vdpasim_get_vq_ready,
>>     .set_vq_state           = vdpasim_set_vq_state,
>> +    .get_vendor_vq_stats    = vdpasim_get_vq_stats,
>
> Should we add this callback also in vdpasim_batch_config_ops?


Yes.

Thanks


>
> Thanks,
> Stefano
>
>>     .get_vq_state           = vdpasim_get_vq_state,
>>     .get_vq_align           = vdpasim_get_vq_align,
>>     .get_vq_group           = vdpasim_get_vq_group,
>> diff --git a/drivers/vdpa/vdpa_sim/vdpa_sim.h 
>> b/drivers/vdpa/vdpa_sim/vdpa_sim.h
>> index 51c070a543f1..d2a08c0abad7 100644
>> --- a/drivers/vdpa/vdpa_sim/vdpa_sim.h
>> +++ b/drivers/vdpa/vdpa_sim/vdpa_sim.h
>> @@ -48,6 +48,9 @@ struct vdpasim_dev_attr {
>>     work_func_t work_fn;
>>     void (*get_config)(struct vdpasim *vdpasim, void *config);
>>     void (*set_config)(struct vdpasim *vdpasim, const void *config);
>> +    int (*get_stats)(struct vdpasim *vdpasim, u16 idx,
>> +             struct sk_buff *msg,
>> +             struct netlink_ext_ack *extack);
>> };
>>
>> /* State of each vdpasim device */
>> -- 
>> 2.25.1
>>
>


  reply	other threads:[~2022-12-22  4:21 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-21  6:16 [PATCH 0/4] Vendor stats support in vdpasim_net Jason Wang
2022-12-21  6:16 ` [PATCH 1/4] vdpa_sim: switch to use __vdpa_alloc_device() Jason Wang
2022-12-21 13:29   ` Stefano Garzarella
2022-12-21  6:16 ` [PATCH 2/4] vdpasim: customize allocation size Jason Wang
2022-12-21 13:30   ` Stefano Garzarella
2022-12-21  6:16 ` [PATCH 3/4] vdpa_sim: support vendor satistics Jason Wang
2022-12-21 13:34   ` Stefano Garzarella
2022-12-22  4:19     ` Jason Wang [this message]
2022-12-21  6:16 ` [PATCH 4/4] vdpa_sim_net: " Jason Wang
2022-12-21  6:33   ` Eugenio Perez Martin
2022-12-21  6:50     ` Eugenio Perez Martin
2022-12-22  4:04     ` Jason Wang
2022-12-21 13:52   ` Stefano Garzarella
2022-12-22  4:30     ` 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=11aa3331-a262-bc97-193c-d1c9a9214541@redhat.com \
    --to=jasowang@redhat.com \
    --cc=eperezma@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mst@redhat.com \
    --cc=sgarzare@redhat.com \
    --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

all inboxes | Powered by JetHome®