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

 


Help: OASIS Mailing Lists Help | MarkMail Help

virtio-comment message

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


Subject: Re: [virtio-comment] [RFC PATCH] virtio-pci: introduce device state capability


On Fri, Dec 04, 2020 at 01:46:15PM +0800, Jason Wang wrote:
> @@ -1247,6 +1249,55 @@ \subsubsection{PCI configuration access capability}\label{sec:Virtio Transport O
>  specified by some other Virtio Structure PCI Capability
>  of type other than \field{VIRTIO_PCI_CAP_PCI_CFG}.
>  
> +\subsubsection{Device State capability}\label{sec:Virtio Transport Options / Virtio Over PCI Bus / PCI Device Layout / Device state capability}
> +
> +The device state structure is found at the \field{bar} and \field{offset} within the VIRTIO_PCI_CAP_DEVICE_STATE_CFG capability; its layout is below.
> +
> +\begin{lstlisting}
> +struct virtio_pci_device_state {
> +        /* About a specific virtqueue. */
> +        le16 queue_select;              /* read-write */
> +        le16 last_avail_idx;            /* read-write */
> +        u8 queue_status;                /* read-write */

Starting/stopping queues is useful for managing multiqueue across CPU
hotplug. Perhaps the queue_status functionality should be generic and
not related to device state save/load?

> +};
> +\end{lstlisting}
> +
> +\begin{description}
> +\item[\field{queue_select}]
> +        Queue Select. The driver selects which virtqueue the following
> +        fields refer to.
> +
> +\item[\field{last_avail_idx}]
> +        Last avail index for this virtqueue that is used by the device.

This is only sufficient to save/load devices where all device state is
visible to the driver (I would call them "stateless"). virtio-gpu,
virtio-crypto, and virtio-fs are "stateful" devices in the sense that
devices contain internal state that is not directly visible to the
driver but is needed to save/load the device.

If we want to save/load stateful devices then an additional interface is
needed for this data. It can be large in size (e.g. imagine graphics
buffers or many thousands of inodes) and should therefore probably
support iterative saving.

> +\item[\field{queue_status}]
> +        The driver uses this to stop the executing request for this virtqueue.
> +        1 - running; 0 - stopped.
> +\end{description}

A per-virtqueue stopped state is not enough to stop a device because
some devices have global behavior like config change events. It must be
possible to completely stop the device to prevent further activity
(VIRTIO config space changes, interrupts, etc).

Maybe a Device Status register bit can be added for that?

> +
> +\devicenormative{\paragraph}{PCI Device State capability}{Virtio Transport Options / Virtio Over PCI Bus / PCI Device Layout / PCI Device State capability}
> +
> +The device MUST present a 0 in \field{queue_status} on reset.
> +
> +The device MUST present a 1 in \field{queue_status} upon writing 1
> +to \field{queue_enable} from common configuration structure by driver.
> +
> +The device MUST complete all inflight requests before presenting a 0
> +in \field{queue_status}.

Is there a definition of "inflight requests"? I think the precise
meaning here is avail requests that the device is processing. It does
not include avail requests that the device has not yet started
processing.

Is there any notification when the queue_status bit transitions from 1
to 0? If not, then drivers must poll the register to detect completion.

Is it possible to resume a virtqueue that is in the process of stopping
(for example, if the guest driver decides a timeout has been reached and
it no longer wishes to stop the virtqueue)?

Attachment: signature.asc
Description: PGP signature



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