lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <TY2PR06MB3424EB45AB598371D41CC669859A9@TY2PR06MB3424.apcprd06.prod.outlook.com>
Date:   Tue, 11 Apr 2023 06:37:21 +0000
From:   Angus Chen <angus.chen@...uarmicro.com>
To:     Xuan Zhuo <xuanzhuo@...ux.alibaba.com>
CC:     "virtualization@...ts.linux-foundation.org" 
        <virtualization@...ts.linux-foundation.org>,
        "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
        "mst@...hat.com" <mst@...hat.com>,
        "jasowang@...hat.com" <jasowang@...hat.com>
Subject: RE: [PATCH] virtio_pci: Wait for legacy device to be reset



> -----Original Message-----
> From: Xuan Zhuo <xuanzhuo@...ux.alibaba.com>
> Sent: Tuesday, April 11, 2023 10:42 AM
> To: Angus Chen <angus.chen@...uarmicro.com>
> Cc: virtualization@...ts.linux-foundation.org; linux-kernel@...r.kernel.org;
> Angus Chen <angus.chen@...uarmicro.com>; mst@...hat.com;
> jasowang@...hat.com
> Subject: Re: [PATCH] virtio_pci: Wait for legacy device to be reset
> 
> On Tue, 11 Apr 2023 09:38:32 +0800, Angus Chen
> <angus.chen@...uarmicro.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.
> >
> > Signed-off-by: Angus Chen <angus.chen@...uarmicro.com>
> 
> LGTM

Thank you for you reply.
> 
> Reviewed-by: Xuan Zhuo <xuanzhuo@...ux.alibaba.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@...hat.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
> >

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ