From: Si-Wei Liu <si-wei.liu@oracle.com>
To: Eugenio Perez Martin <eperezma@redhat.com>
Cc: jasowang@redhat.com, mst@redhat.com, dtatulea@nvidia.com,
leiyang@redhat.com, yin31149@gmail.com, qemu-devel@nongnu.org
Subject: Re: [PATCH 04/12] vdpa: factor out vhost_vdpa_net_get_nc_vdpa
Date: Wed, 14 Feb 2024 12:58:51 -0800 [thread overview]
Message-ID: <fdc1ba6f-6e25-42ac-a40f-088501c648ad@oracle.com> (raw)
In-Reply-To: <CAJaqyWd1qPmUn3Z=3SSbWT7rX78zza_mt1y6RQwi+62wFbda-Q@mail.gmail.com>
On 2/14/2024 10:54 AM, Eugenio Perez Martin wrote:
> On Wed, Feb 14, 2024 at 1:39 PM Si-Wei Liu <si-wei.liu@oracle.com> wrote:
>> Introduce new API. No functional change on existing API.
>>
>> Acked-by: Jason Wang <jasowang@redhat.com>
>> Signed-off-by: Si-Wei Liu <si-wei.liu@oracle.com>
> I'm ok with the new function, but doesn't the compiler complain
> because adding a static function is not used?
Hmmm, which one? vhost_vdpa_net_get_nc_vdpa is used by
vhost_vdpa_net_first_nc_vdpa internally, and
vhost_vdpa_net_first_nc_vdpa is used by vhost_vdpa_net_cvq_start (Patch
01). I think we should be fine?
-Siwei
>
>> ---
>> net/vhost-vdpa.c | 13 +++++++++----
>> 1 file changed, 9 insertions(+), 4 deletions(-)
>>
>> diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c
>> index 06c83b4..4168cad 100644
>> --- a/net/vhost-vdpa.c
>> +++ b/net/vhost-vdpa.c
>> @@ -281,13 +281,18 @@ static ssize_t vhost_vdpa_receive(NetClientState *nc, const uint8_t *buf,
>> }
>>
>>
>> -/** From any vdpa net client, get the netclient of the first queue pair */
>> -static VhostVDPAState *vhost_vdpa_net_first_nc_vdpa(VhostVDPAState *s)
>> +/** From any vdpa net client, get the netclient of the i-th queue pair */
>> +static VhostVDPAState *vhost_vdpa_net_get_nc_vdpa(VhostVDPAState *s, int i)
>> {
>> NICState *nic = qemu_get_nic(s->nc.peer);
>> - NetClientState *nc0 = qemu_get_peer(nic->ncs, 0);
>> + NetClientState *nc_i = qemu_get_peer(nic->ncs, i);
>> +
>> + return DO_UPCAST(VhostVDPAState, nc, nc_i);
>> +}
>>
>> - return DO_UPCAST(VhostVDPAState, nc, nc0);
>> +static VhostVDPAState *vhost_vdpa_net_first_nc_vdpa(VhostVDPAState *s)
>> +{
>> + return vhost_vdpa_net_get_nc_vdpa(s, 0);
>> }
>>
>> static void vhost_vdpa_net_log_global_enable(VhostVDPAState *s, bool enable)
>> --
>> 1.8.3.1
>>
next prev parent reply other threads:[~2024-02-14 20:59 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-14 11:27 [PATCH 00/12] Preparatory patches for live migration downtime improvement Si-Wei Liu
2024-02-14 11:27 ` [PATCH 01/12] vdpa: add back vhost_vdpa_net_first_nc_vdpa Si-Wei Liu
2024-02-14 11:27 ` [PATCH 02/12] vdpa: no repeat setting shadow_data Si-Wei Liu
2024-02-14 11:27 ` [PATCH 03/12] vdpa: factor out vhost_vdpa_last_dev Si-Wei Liu
2024-02-14 11:27 ` [PATCH 04/12] vdpa: factor out vhost_vdpa_net_get_nc_vdpa Si-Wei Liu
2024-02-14 18:54 ` Eugenio Perez Martin
2024-02-14 20:58 ` Si-Wei Liu [this message]
2024-02-15 6:33 ` Eugenio Perez Martin
2024-02-14 11:27 ` [PATCH 05/12] vdpa: add vhost_vdpa_set_address_space_id trace Si-Wei Liu
2024-02-14 11:27 ` [PATCH 06/12] vdpa: add vhost_vdpa_get_vring_base trace for svq mode Si-Wei Liu
2024-02-14 11:27 ` [PATCH 07/12] vdpa: add vhost_vdpa_set_dev_vring_base " Si-Wei Liu
2024-02-14 11:27 ` [PATCH 08/12] vdpa: add trace events for vhost_vdpa_net_load_cmd Si-Wei Liu
2024-02-14 11:27 ` [PATCH 09/12] vdpa: add trace event for vhost_vdpa_net_load_mq Si-Wei Liu
2024-02-14 11:28 ` [PATCH 10/12] vdpa: define SVQ transitioning state for mode switching Si-Wei Liu
2024-02-14 11:28 ` [PATCH 11/12] vdpa: indicate transitional state for SVQ switching Si-Wei Liu
2024-02-14 11:28 ` [PATCH 12/12] vdpa: fix network breakage after cancelling migration Si-Wei Liu
2024-02-15 16:15 ` Eugenio Perez Martin
2024-02-15 17:10 ` Eugenio Perez Martin
2024-03-13 18:12 ` Michael Tokarev
2024-03-13 18:52 ` Michael Tokarev
2024-03-13 19:10 ` Si-Wei Liu
2024-03-13 20:41 ` Michael Tokarev
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=fdc1ba6f-6e25-42ac-a40f-088501c648ad@oracle.com \
--to=si-wei.liu@oracle.com \
--cc=dtatulea@nvidia.com \
--cc=eperezma@redhat.com \
--cc=jasowang@redhat.com \
--cc=leiyang@redhat.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=yin31149@gmail.com \
/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).