From: "Michael S. Tsirkin" <mst@redhat.com>
To: Jason Wang <jasowang@redhat.com>
Cc: "virtualization@lists.linux-foundation.org"
<virtualization@lists.linux-foundation.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Angus Chen <angus.chen@jaguarmicro.com>
Subject: Re: [PATCH] virtio_pci: Wait for legacy device to be reset
Date: Tue, 11 Apr 2023 02:44:22 -0400 [thread overview]
Message-ID: <20230411024155-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <CACGkMEuOK+XqSa93a7+ki25yjVWSzfSzd5nsqMUo8sH1=B9hRg@mail.gmail.com>
On Tue, Apr 11, 2023 at 02:39:34PM +0800, Jason Wang wrote:
> On Tue, Apr 11, 2023 at 2:36 PM Angus Chen <angus.chen@jaguarmicro.com> wrote:
> >
> > Hi.
> >
> > > -----Original Message-----
> > > From: Jason Wang <jasowang@redhat.com>
> > > Sent: Tuesday, April 11, 2023 1:24 PM
> > > To: Angus Chen <angus.chen@jaguarmicro.com>
> > > Cc: mst@redhat.com; virtualization@lists.linux-foundation.org;
> > > linux-kernel@vger.kernel.org
> > > Subject: Re: [PATCH] virtio_pci: Wait for legacy device to be reset
> > >
> > > On Tue, Apr 11, 2023 at 9:39 AM Angus Chen <angus.chen@jaguarmicro.com>
> > > wrote:
> > > >
> > > > We read the status of device after reset,
> > > > It is not guaranteed that the device be reseted successfully.
> > > > We can use a while loop to make sure that,like the modern device did.
> > > > The spec is not request it ,but it work.
> > >
> > > The only concern is if it's too late to do this.
> > >
> > > Btw, any reason you want to have a legacy hardware implementation. It
> > > will be very tricky to work correctly.
> > En,I found this in the real production environment some times about one year ago.
> > and I fix this out of tree.our virtio card had been sold about thousands .
> >
> > Now,we created a new card, it support virtio 0.95,1.0,1.1 etc.
> > And we use this host vdpa+ legacy virtio in vm to hot migration,we found that the
> > Legacy model often get the middle state value after reset and probe again.
> > The Soc is Simulated by fpga which is run slower than the host,so the same bug
> > Is found more frequently when the host use the other kernel like ubuntu or centos8.
> >
> > So we hope we can fix this by upstream .
>
> I think you can do mediation in your hypervisor.
>
> When trapping set_status(), the hypervisor will not return until it
> reads 0 from the hardware?
>
> Thanks
Note that for legacy guests, 0 status write is not the only way
to reset the device, writing 0 into pa is another.
> > >
> > > Thanks
> > >
> > > >
> > > > Signed-off-by: Angus Chen <angus.chen@jaguarmicro.com>
> > > > ---
> > > > drivers/virtio/virtio_pci_legacy.c | 4 +++-
> > > > 1 file changed, 3 insertions(+), 1 deletion(-)
> > > >
> > > > diff --git a/drivers/virtio/virtio_pci_legacy.c b/drivers/virtio/virtio_pci_legacy.c
> > > > index 2257f1b3d8ae..f2d241563e4f 100644
> > > > --- a/drivers/virtio/virtio_pci_legacy.c
> > > > +++ b/drivers/virtio/virtio_pci_legacy.c
> > > > @@ -14,6 +14,7 @@
> > > > * Michael S. Tsirkin <mst@redhat.com>
> > > > */
> > > >
> > > > +#include <linux/delay.h>
> > > > #include "linux/virtio_pci_legacy.h"
> > > > #include "virtio_pci_common.h"
> > > >
> > > > @@ -97,7 +98,8 @@ static void vp_reset(struct virtio_device *vdev)
> > > > vp_legacy_set_status(&vp_dev->ldev, 0);
> > > > /* Flush out the status write, and flush in device writes,
> > > > * including MSi-X interrupts, if any. */
> > > > - vp_legacy_get_status(&vp_dev->ldev);
> > > > + while (vp_legacy_get_status(&vp_dev->ldev))
> > > > + msleep(1);
> > > > /* Flush pending VQ/configuration callbacks. */
> > > > vp_synchronize_vectors(vdev);
> > > > }
> > > > --
> > > > 2.25.1
> > > >
> >
_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization
WARNING: multiple messages have this Message-ID (diff)
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Jason Wang <jasowang@redhat.com>
Cc: Angus Chen <angus.chen@jaguarmicro.com>,
"virtualization@lists.linux-foundation.org"
<virtualization@lists.linux-foundation.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] virtio_pci: Wait for legacy device to be reset
Date: Tue, 11 Apr 2023 02:44:22 -0400 [thread overview]
Message-ID: <20230411024155-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <CACGkMEuOK+XqSa93a7+ki25yjVWSzfSzd5nsqMUo8sH1=B9hRg@mail.gmail.com>
On Tue, Apr 11, 2023 at 02:39:34PM +0800, Jason Wang wrote:
> On Tue, Apr 11, 2023 at 2:36 PM Angus Chen <angus.chen@jaguarmicro.com> wrote:
> >
> > Hi.
> >
> > > -----Original Message-----
> > > From: Jason Wang <jasowang@redhat.com>
> > > Sent: Tuesday, April 11, 2023 1:24 PM
> > > To: Angus Chen <angus.chen@jaguarmicro.com>
> > > Cc: mst@redhat.com; virtualization@lists.linux-foundation.org;
> > > linux-kernel@vger.kernel.org
> > > Subject: Re: [PATCH] virtio_pci: Wait for legacy device to be reset
> > >
> > > On Tue, Apr 11, 2023 at 9:39 AM Angus Chen <angus.chen@jaguarmicro.com>
> > > wrote:
> > > >
> > > > We read the status of device after reset,
> > > > It is not guaranteed that the device be reseted successfully.
> > > > We can use a while loop to make sure that,like the modern device did.
> > > > The spec is not request it ,but it work.
> > >
> > > The only concern is if it's too late to do this.
> > >
> > > Btw, any reason you want to have a legacy hardware implementation. It
> > > will be very tricky to work correctly.
> > En,I found this in the real production environment some times about one year ago.
> > and I fix this out of tree.our virtio card had been sold about thousands .
> >
> > Now,we created a new card, it support virtio 0.95,1.0,1.1 etc.
> > And we use this host vdpa+ legacy virtio in vm to hot migration,we found that the
> > Legacy model often get the middle state value after reset and probe again.
> > The Soc is Simulated by fpga which is run slower than the host,so the same bug
> > Is found more frequently when the host use the other kernel like ubuntu or centos8.
> >
> > So we hope we can fix this by upstream .
>
> I think you can do mediation in your hypervisor.
>
> When trapping set_status(), the hypervisor will not return until it
> reads 0 from the hardware?
>
> Thanks
Note that for legacy guests, 0 status write is not the only way
to reset the device, writing 0 into pa is another.
> > >
> > > Thanks
> > >
> > > >
> > > > Signed-off-by: Angus Chen <angus.chen@jaguarmicro.com>
> > > > ---
> > > > drivers/virtio/virtio_pci_legacy.c | 4 +++-
> > > > 1 file changed, 3 insertions(+), 1 deletion(-)
> > > >
> > > > diff --git a/drivers/virtio/virtio_pci_legacy.c b/drivers/virtio/virtio_pci_legacy.c
> > > > index 2257f1b3d8ae..f2d241563e4f 100644
> > > > --- a/drivers/virtio/virtio_pci_legacy.c
> > > > +++ b/drivers/virtio/virtio_pci_legacy.c
> > > > @@ -14,6 +14,7 @@
> > > > * Michael S. Tsirkin <mst@redhat.com>
> > > > */
> > > >
> > > > +#include <linux/delay.h>
> > > > #include "linux/virtio_pci_legacy.h"
> > > > #include "virtio_pci_common.h"
> > > >
> > > > @@ -97,7 +98,8 @@ static void vp_reset(struct virtio_device *vdev)
> > > > vp_legacy_set_status(&vp_dev->ldev, 0);
> > > > /* Flush out the status write, and flush in device writes,
> > > > * including MSi-X interrupts, if any. */
> > > > - vp_legacy_get_status(&vp_dev->ldev);
> > > > + while (vp_legacy_get_status(&vp_dev->ldev))
> > > > + msleep(1);
> > > > /* Flush pending VQ/configuration callbacks. */
> > > > vp_synchronize_vectors(vdev);
> > > > }
> > > > --
> > > > 2.25.1
> > > >
> >
next prev parent reply other threads:[~2023-04-11 6:44 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-11 1:38 [PATCH] virtio_pci: Wait for legacy device to be reset Angus Chen
2023-04-11 1:47 ` Angus Chen
2023-04-11 2:41 ` Xuan Zhuo
2023-04-11 2:41 ` Xuan Zhuo
2023-04-11 6:37 ` Angus Chen
2023-04-11 5:24 ` Jason Wang
2023-04-11 5:24 ` Jason Wang
2023-04-11 6:36 ` Angus Chen
2023-04-11 6:39 ` Jason Wang
2023-04-11 6:39 ` Jason Wang
2023-04-11 6:44 ` Michael S. Tsirkin [this message]
2023-04-11 6:44 ` Michael S. Tsirkin
2023-04-11 6:45 ` Angus Chen
2023-04-11 6:47 ` Michael S. Tsirkin
2023-04-11 6:47 ` Michael S. Tsirkin
2023-04-11 6:49 ` Angus Chen
2023-04-11 6:55 ` Michael S. Tsirkin
2023-04-11 6:55 ` Michael S. Tsirkin
2023-04-11 7:17 ` Angus Chen
2023-04-11 7:21 ` Michael S. Tsirkin
2023-04-11 7:21 ` Michael S. Tsirkin
2023-04-11 7:30 ` Angus Chen
2023-04-11 10:15 ` Michael S. Tsirkin
2023-04-11 10:15 ` Michael S. Tsirkin
2023-04-11 10:57 ` Angus Chen
2023-04-11 11:13 ` Michael S. Tsirkin
2023-04-11 11:13 ` Michael S. Tsirkin
2023-04-11 12:10 ` Angus Chen
2023-04-11 6:29 ` Michael S. Tsirkin
2023-04-11 6:29 ` Michael S. Tsirkin
2023-04-11 6:39 ` Angus Chen
2023-04-11 6:41 ` Michael S. Tsirkin
2023-04-11 6:41 ` Michael S. Tsirkin
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=20230411024155-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=angus.chen@jaguarmicro.com \
--cc=jasowang@redhat.com \
--cc=linux-kernel@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 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.