OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

virtio-dev message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Re: [PATCH V2 2/2] virtio: introduce STOP status bit



å 2021/7/6 äå10:27, Cornelia Huck åé:
On Tue, Jul 06 2021, Jason Wang <jasowang@redhat.com> wrote:

å 2021/7/6 äå8:50, Cornelia Huck åé:
On Tue, Jul 06 2021, Jason Wang <jasowang@redhat.com> wrote:
+If VIRTIO_F_STOP has been negotiated, to stop a device, after setting
+STOP, the driver MUST re-read the device status to ensure the STOP bit
+is set to synchronize with the device.
Is this more that the driver needs to re-read the status until STOP is
set to make sure that the stop process has finished?

Yes.


   If the device has
offered the feature and the driver accepted it, I'd assume that the
device will eventually finish with the procedure, or sets NEEDS_RESET if
something goes wrong?

As stated below, the device must either:

1) finish all pending requests

or

2) provide a device specific way for the driver to save and restore
pending requests

before setting STOP.

Otherwise the device can't offer this feature.

Using NEEDS_RESET seems more complicated than this.
Hm, what happens on an internal error?


A question, can reset fail? If yes, do we need to define how to proceed in the driver side?

If not, I don't need the reason we need to deal with that in the STOP.


I assume that the device would
need to signal that in some way. Or should it simply set STOP and
discard any pending requests?


The current proposal doesn't mandate to complete all the in-flight requests. The device can provide a way for the driver to set and get the pending requests that could be re-submitted later (or in the destination).


The driver would not be able to
distinguish that from a normal STOP.

+If VIRTIO_F_STOP has been negotiated, after the driver writes STOP,
+the device MUST finish any pending operations like in flight requests
+or have its device specific way for driver to save the pending
+operations like in flight requests before setting the STOP status bit.
+
+If VIRTIO_F_STOP has been negotiated, the device MUST NOT consume
+buffers or send any used buffer notifications to the driver after
+STOP. The device MUST keep the configuration space unchanged and MUST
+NOT send configuration space change notification to the driver after
+STOP.
+
+If VIRTIO_F_STOP has been negotiated, after STOP, the device MUST
+preserve all the necessary state (the virtqueue states with the
+possible device specific states) that is required for restoring in the
+future.
What happens if the driver writes STOP in when DRIVER_OK has not been
set?

I think we need a device normative like:

If VIRTIO_F_STOP has been negotiated, the driver SHOULD ignore the STOP
status bit if DRIVER_OK is not set.
That's the device that needs to do the ignoring, right?


Yes, it's a typo.




   Should the device set NEEDS_RESET, as suggested above? Same, if
saving the states somehow goes wrong?

I try hard to avoid NEEDS_RESET, so the driver is required to only read
the state during DRIVER_OK & STOP, and set the state during FEATURES_OK
& !DRIVER_OK. This is described in the driver normative in patch 1 and
below.
The device can certainly ignore STOP requests that are out of spec. But
I think we cannot get around signaling device errors in some way.


See above,

For virtqueue state, it works like the other basic facilities. So write and read to those facility itself isn't expected to be fail. But we can validate whether it makes any effort by re-read the status.

For STOP bit, if we need error reporting, we probably need that in the case of reset as well.

Thanks



+\section{Virtqueue State Saving}
+
+If both VIRTIO_F_RING_STATE and VIRTIO_F_STOP have been negotiated. A
+driver MAY save the internal virtqueue state.
Is that device type specific, or something generic? The last patch
suggests that it may vary by device type.

Both virtqueue state (avail/used state) and the STOP status bit is generic.

But the device is free to have its own specific:

1) extra virtqueue states (pending requests)
2) device states

And 2) is out of the scope of this series.
Ok.




[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]