Re: [PATCH v3 07/16] libqos: enforce Device Initialization order

2019-10-23 Thread Stefan Hajnoczi
On Tue, Oct 22, 2019 at 08:48:31PM +0200, Thomas Huth wrote: > On 22/10/2019 17.48, Stefan Hajnoczi wrote: > > On Mon, Oct 21, 2019 at 02:15:53PM +0200, Thomas Huth wrote: > >> On 19/10/2019 08.38, Stefan Hajnoczi wrote: > >>> According to VIRTIO 1.1 "3.1.1 Driver Requirements: Device > >>>

Re: [PATCH v3 07/16] libqos: enforce Device Initialization order

2019-10-22 Thread Thomas Huth
On 22/10/2019 17.48, Stefan Hajnoczi wrote: > On Mon, Oct 21, 2019 at 02:15:53PM +0200, Thomas Huth wrote: >> On 19/10/2019 08.38, Stefan Hajnoczi wrote: >>> According to VIRTIO 1.1 "3.1.1 Driver Requirements: Device >>> Initialization", configuration space and virtqueues cannot be accessed >>>

Re: [PATCH v3 07/16] libqos: enforce Device Initialization order

2019-10-22 Thread Stefan Hajnoczi
On Mon, Oct 21, 2019 at 02:15:53PM +0200, Thomas Huth wrote: > On 19/10/2019 08.38, Stefan Hajnoczi wrote: > > According to VIRTIO 1.1 "3.1.1 Driver Requirements: Device > > Initialization", configuration space and virtqueues cannot be accessed > > before features have been negotiated. Enforce

Re: [PATCH v3 07/16] libqos: enforce Device Initialization order

2019-10-21 Thread Thomas Huth
On 19/10/2019 08.38, Stefan Hajnoczi wrote: > According to VIRTIO 1.1 "3.1.1 Driver Requirements: Device > Initialization", configuration space and virtqueues cannot be accessed > before features have been negotiated. Enforce this requirement. > > Signed-off-by: Stefan Hajnoczi > --- >

[PATCH v3 07/16] libqos: enforce Device Initialization order

2019-10-19 Thread Stefan Hajnoczi
According to VIRTIO 1.1 "3.1.1 Driver Requirements: Device Initialization", configuration space and virtqueues cannot be accessed before features have been negotiated. Enforce this requirement. Signed-off-by: Stefan Hajnoczi --- tests/libqos/virtio.c | 11 +++ 1 file changed, 11