From: "Michael S. Tsirkin" <mst@redhat.com>
To: Eugenio Perez Martin <eperezma@redhat.com>
Cc: Stefano Garzarella <sgarzare@redhat.com>,
qemu-devel@nongnu.org, jasowang@redhat.com,
Peter Maydell <peter.maydell@linaro.org>,
qemu-stable@nongnu.org, Xoykie <xoykie@gmail.com>,
Lei Yang <leiyang@redhat.com>
Subject: Re: [PATCH] virtio: remove virtio_tswap16s() call in vring_packed_event_read()
Date: Mon, 1 Jul 2024 06:32:38 -0400 [thread overview]
Message-ID: <20240701063129-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <CAJaqyWffdg6jz-+_1_tZApLTWs362KQYAMkPHttP51s7v07tEw@mail.gmail.com>
On Mon, Jul 01, 2024 at 11:53:34AM +0200, Eugenio Perez Martin wrote:
> On Mon, Jul 1, 2024 at 9:52 AM Stefano Garzarella <sgarzare@redhat.com> wrote:
> >
> > Commit d152cdd6f6 ("virtio: use virtio accessor to access packed event")
> > switched using of address_space_read_cached() to virito_lduw_phys_cached()
> > to access packed descriptor event.
> >
> > When we used address_space_read_cached(), we needed to call
> > virtio_tswap16s() to handle the endianess of the field, but
> > virito_lduw_phys_cached() already handles it internally, so we no longer
> > need to call virtio_tswap16s() (as the commit had done for `off_wrap`,
> > but forgot for `flags`).
> >
> > Fixes: d152cdd6f6 ("virtio: use virtio accessor to access packed event")
> > Cc: jasowang@redhat.com
> > Cc: qemu-stable@nongnu.org
> > Reported-by: Xoykie <xoykie@gmail.com>
> > Link: https://lore.kernel.org/qemu-devel/CAFU8RB_pjr77zMLsM0Unf9xPNxfr_--Tjr49F_eX32ZBc5o2zQ@mail.gmail.com
> > Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
>
> Reviewed-by: Eugenio Pérez <eperezma@redhat.com>
>
> I think it would be great to test the patches using a big endian host
> just in case.
>
> Thanks!
I think we really should move to using sparse tags for endian-ness,
like Linux does, and away from swap calls.
> > ---
> > hw/virtio/virtio.c | 1 -
> > 1 file changed, 1 deletion(-)
> >
> > diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c
> > index 893a072c9d..2e5e67bdb9 100644
> > --- a/hw/virtio/virtio.c
> > +++ b/hw/virtio/virtio.c
> > @@ -323,7 +323,6 @@ static void vring_packed_event_read(VirtIODevice *vdev,
> > /* Make sure flags is seen before off_wrap */
> > smp_rmb();
> > e->off_wrap = virtio_lduw_phys_cached(vdev, cache, off_off);
> > - virtio_tswap16s(vdev, &e->flags);
> > }
> >
> > static void vring_packed_off_wrap_write(VirtIODevice *vdev,
> > --
> > 2.45.2
> >
prev parent reply other threads:[~2024-07-01 10:33 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-01 7:52 [PATCH] virtio: remove virtio_tswap16s() call in vring_packed_event_read() Stefano Garzarella
2024-07-01 8:22 ` Jason Wang
2024-07-01 8:58 ` Peter Maydell
2024-07-01 9:53 ` Eugenio Perez Martin
2024-07-01 10:32 ` Michael S. Tsirkin [this message]
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=20240701063129-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=eperezma@redhat.com \
--cc=jasowang@redhat.com \
--cc=leiyang@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-stable@nongnu.org \
--cc=sgarzare@redhat.com \
--cc=xoykie@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.