* [PATCH v6] virtio-net: Improve introductory description
@ 2023-02-14 18:04 Parav Pandit
2023-02-16 14:09 ` [virtio-comment] " Cornelia Huck
0 siblings, 1 reply; 11+ messages in thread
From: Parav Pandit @ 2023-02-14 18:04 UTC (permalink / raw)
To: mst, virtio-dev, cohuck
Cc: virtio-comment, shahafs, Parav Pandit, David Edmondson
The control VQ of the virtio network device is used beyond advance
steering control. The control VQ dynamically changes multiple features
of the initialized device.
Hence, update this area of control VQ introductory description at few
places and also place the link to its description.
Also update the introduction section to better describe receive and
transmit virtqueues.
Fixes: https://github.com/oasis-tcs/virtio-spec/issues/156
Reviewed-by: David Edmondson <david.edmondson@oracle.com>
Signed-off-by: Parav Pandit <parav@nvidia.com>
---
changelog:
v5->v6:
- changed 'many' to 'various'
- rebased
v4->v5:
- fixed typo from virtuqueue to virtqueue
v3->v4:
- write buffer add/remove, instead of enqueue/dequeue, post
- changed 'many' to 'various'
v2->v3:
- further improve introduction
v1->v2:
- corrected/added article before transmit and receive virtqueue
- replaced listed with described
- updated set to negotiated for CTRL_VQ
- improved introduction wordings
v0->v1:
- replaced command queue to control virtqueue to reflect current state
- added link of control vq to its detailed section
- removed reference of cvq from more places that limits it to steering
- Addressed Cornelia's review comments:
- updated introduction section to better describe rq, sq, cvq.
- explicitly wrote that cvq is optional along with its feature bit
related description
- dropped few items from Cornelia's review as they do not exactly
fit with latest 1.2 specification as below.
- avoided listing number of queues in introduction as its linked to q
reset which can disable all queues
- avoid mentioning cvq as optional as there is better section for it
- avoid talking about queue pairs as spec and use cases allows not
operate in pairs mode
---
device-types/net/description.tex | 23 +++++++++++++----------
1 file changed, 13 insertions(+), 10 deletions(-)
diff --git a/device-types/net/description.tex b/device-types/net/description.tex
index 88a5770..a197e1a 100644
--- a/device-types/net/description.tex
+++ b/device-types/net/description.tex
@@ -2,13 +2,15 @@ \section{Network Device}\label{sec:Device Types / Network Device}
The virtio network device is a virtual network interface controller.
It consists of a virtual Ethernet link which connects the device
-to the Ethernet network. It is the most complex of the devices
-supported so far by virtio. It has enhanced rapidly and demonstrates
-clearly how support for new features are added to an existing
-device. Empty buffers are placed in one virtqueue for receiving
-packets, and outgoing packets are enqueued into another for
-transmission in that order. A third command queue is used to
-control advanced filtering features.
+to the Ethernet network. The device has transmit and receive
+queues. The driver adds empty buffers to the receive virtqueue.
+The device receives incoming packets from the link; the device
+places these incoming packets in the receive virtqueue buffers.
+The driver adds outgoing packets to the transmit virtqueue. The device
+removes these packets from the transmit virtqueue and sends them to
+the link. The device may have a control virtqueue. The driver
+uses the control virtqueue to dynamically manipulate various
+features of the initialized device.
\subsection{Device ID}\label{sec:Device Types / Network Device / Device ID}
@@ -28,7 +30,8 @@ \subsection{Virtqueues}\label{sec:Device Types / Network Device / Virtqueues}
N=1 if neither VIRTIO_NET_F_MQ nor VIRTIO_NET_F_RSS are negotiated, otherwise N is set by
\field{max_virtqueue_pairs}.
- controlq only exists if VIRTIO_NET_F_CTRL_VQ set.
+controlq is optional; it only exists if VIRTIO_NET_F_CTRL_VQ is
+negotiated.
\subsection{Feature bits}\label{sec:Device Types / Network Device / Feature bits}
@@ -389,8 +392,8 @@ \subsection{Device Operation}\label{sec:Device Types / Network Device / Device O
};
\end{lstlisting}
-The controlq is used to control device features such as
-filtering.
+The controlq is used to control various device features described further in
+section \ref{sec:Device Types / Network Device / Device Operation / Control Virtqueue}.
\subsubsection{Legacy Interface: Device Operation}\label{sec:Device Types / Network Device / Device Operation / Legacy Interface: Device Operation}
When using the legacy interface, transitional devices and drivers
--
2.26.2
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [virtio-comment] Re: [PATCH v6] virtio-net: Improve introductory description
2023-02-14 18:04 [PATCH v6] virtio-net: Improve introductory description Parav Pandit
@ 2023-02-16 14:09 ` Cornelia Huck
2023-02-16 14:30 ` Parav Pandit
0 siblings, 1 reply; 11+ messages in thread
From: Cornelia Huck @ 2023-02-16 14:09 UTC (permalink / raw)
To: Parav Pandit, mst, virtio-dev
Cc: virtio-comment, shahafs, Parav Pandit, David Edmondson
On Tue, Feb 14 2023, Parav Pandit <parav@nvidia.com> wrote:
> The control VQ of the virtio network device is used beyond advance
> steering control. The control VQ dynamically changes multiple features
> of the initialized device.
>
> Hence, update this area of control VQ introductory description at few
> places and also place the link to its description.
>
> Also update the introduction section to better describe receive and
> transmit virtqueues.
>
> Fixes: https://github.com/oasis-tcs/virtio-spec/issues/156
> Reviewed-by: David Edmondson <david.edmondson@oracle.com>
> Signed-off-by: Parav Pandit <parav@nvidia.com>
Are you requesting a vote for this?
This publicly archived list offers a means to provide input to the
OASIS Virtual I/O Device (VIRTIO) TC.
In order to verify user consent to the Feedback License terms and
to minimize spam in the list archive, subscription is required
before posting.
Subscribe: virtio-comment-subscribe@lists.oasis-open.org
Unsubscribe: virtio-comment-unsubscribe@lists.oasis-open.org
List help: virtio-comment-help@lists.oasis-open.org
List archive: https://lists.oasis-open.org/archives/virtio-comment/
Feedback License: https://www.oasis-open.org/who/ipr/feedback_license.pdf
List Guidelines: https://www.oasis-open.org/policies-guidelines/mailing-lists
Committee: https://www.oasis-open.org/committees/virtio/
Join OASIS: https://www.oasis-open.org/join/
^ permalink raw reply [flat|nested] 11+ messages in thread
* RE: [PATCH v6] virtio-net: Improve introductory description
2023-02-16 14:09 ` [virtio-comment] " Cornelia Huck
@ 2023-02-16 14:30 ` Parav Pandit
2023-02-16 15:49 ` Michael S. Tsirkin
0 siblings, 1 reply; 11+ messages in thread
From: Parav Pandit @ 2023-02-16 14:30 UTC (permalink / raw)
To: Cornelia Huck, mst@redhat.com, virtio-dev@lists.oasis-open.org
Cc: virtio-comment@lists.oasis-open.org, Shahaf Shuler,
David Edmondson
> From: Cornelia Huck <cohuck@redhat.com>
> Sent: Thursday, February 16, 2023 9:10 AM
>
> On Tue, Feb 14 2023, Parav Pandit <parav@nvidia.com> wrote:
>
> > The control VQ of the virtio network device is used beyond advance
> > steering control. The control VQ dynamically changes multiple features
> > of the initialized device.
> >
> > Hence, update this area of control VQ introductory description at few
> > places and also place the link to its description.
> >
> > Also update the introduction section to better describe receive and
> > transmit virtqueues.
> >
> > Fixes: https://github.com/oasis-tcs/virtio-spec/issues/156
> > Reviewed-by: David Edmondson <david.edmondson@oracle.com>
> > Signed-off-by: Parav Pandit <parav@nvidia.com>
>
> Are you requesting a vote for this?
I was not sure if its need voting as most are editorial cleanups, better description, structure movement.
Please advise if we need voting.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v6] virtio-net: Improve introductory description
2023-02-16 14:30 ` Parav Pandit
@ 2023-02-16 15:49 ` Michael S. Tsirkin
2023-02-16 16:00 ` [virtio-comment] " Parav Pandit
2023-02-16 16:03 ` [virtio-comment] " Cornelia Huck
0 siblings, 2 replies; 11+ messages in thread
From: Michael S. Tsirkin @ 2023-02-16 15:49 UTC (permalink / raw)
To: Parav Pandit
Cc: Cornelia Huck, virtio-dev@lists.oasis-open.org,
virtio-comment@lists.oasis-open.org, Shahaf Shuler,
David Edmondson
On Thu, Feb 16, 2023 at 02:30:03PM +0000, Parav Pandit wrote:
>
> > From: Cornelia Huck <cohuck@redhat.com>
> > Sent: Thursday, February 16, 2023 9:10 AM
> >
> > On Tue, Feb 14 2023, Parav Pandit <parav@nvidia.com> wrote:
> >
> > > The control VQ of the virtio network device is used beyond advance
> > > steering control. The control VQ dynamically changes multiple features
> > > of the initialized device.
> > >
> > > Hence, update this area of control VQ introductory description at few
> > > places and also place the link to its description.
> > >
> > > Also update the introduction section to better describe receive and
> > > transmit virtqueues.
> > >
> > > Fixes: https://github.com/oasis-tcs/virtio-spec/issues/156
> > > Reviewed-by: David Edmondson <david.edmondson@oracle.com>
> > > Signed-off-by: Parav Pandit <parav@nvidia.com>
> >
> > Are you requesting a vote for this?
>
> I was not sure if its need voting as most are editorial cleanups, better description, structure movement.
> Please advise if we need voting.
The bylaws are here:
https://github.com/oasis-tcs/virtio-spec/blob/master/README.md
Minor cleanups, including editorial formatting changes, spelling and
typo fixes can be committed directly into git for approval as part of
the next specification approval ballot.
This is way beyond that. And generally when in doubt vote.
--
MST
^ permalink raw reply [flat|nested] 11+ messages in thread
* [virtio-comment] RE: [PATCH v6] virtio-net: Improve introductory description
2023-02-16 15:49 ` Michael S. Tsirkin
@ 2023-02-16 16:00 ` Parav Pandit
2023-02-16 16:02 ` Parav Pandit
2023-02-16 16:03 ` [virtio-comment] " Cornelia Huck
1 sibling, 1 reply; 11+ messages in thread
From: Parav Pandit @ 2023-02-16 16:00 UTC (permalink / raw)
To: Michael S. Tsirkin
Cc: Cornelia Huck, virtio-dev@lists.oasis-open.org,
virtio-comment@lists.oasis-open.org, Shahaf Shuler,
David Edmondson
> From: Michael S. Tsirkin <mst@redhat.com>
> Sent: Thursday, February 16, 2023 10:50 AM
>
> On Thu, Feb 16, 2023 at 02:30:03PM +0000, Parav Pandit wrote:
> >
> > > From: Cornelia Huck <cohuck@redhat.com>
> > > Sent: Thursday, February 16, 2023 9:10 AM
> > >
> > > On Tue, Feb 14 2023, Parav Pandit <parav@nvidia.com> wrote:
> > >
> > > > The control VQ of the virtio network device is used beyond advance
> > > > steering control. The control VQ dynamically changes multiple
> > > > features of the initialized device.
> > > >
> > > > Hence, update this area of control VQ introductory description at
> > > > few places and also place the link to its description.
> > > >
> > > > Also update the introduction section to better describe receive
> > > > and transmit virtqueues.
> > > >
> > > > Fixes: https://github.com/oasis-tcs/virtio-spec/issues/156
> > > > Reviewed-by: David Edmondson <david.edmondson@oracle.com>
> > > > Signed-off-by: Parav Pandit <parav@nvidia.com>
> > >
> > > Are you requesting a vote for this?
> >
> > I was not sure if its need voting as most are editorial cleanups, better
> description, structure movement.
> > Please advise if we need voting.
>
>
> The bylaws are here:
> https://github.com/oasis-tcs/virtio-spec/blob/master/README.md
> Minor cleanups, including editorial formatting changes, spelling and typo fixes
> can be committed directly into git for approval as part of the next specification
> approval ballot.
>
> This is way beyond that. And generally when in doubt vote.
Ok. Thanks for the direction.
Can you please create the voting ballot?
Git hub issue of interest is: Fixes: https://github.com/oasis-tcs/virtio-spec/issues/156
This publicly archived list offers a means to provide input to the
OASIS Virtual I/O Device (VIRTIO) TC.
In order to verify user consent to the Feedback License terms and
to minimize spam in the list archive, subscription is required
before posting.
Subscribe: virtio-comment-subscribe@lists.oasis-open.org
Unsubscribe: virtio-comment-unsubscribe@lists.oasis-open.org
List help: virtio-comment-help@lists.oasis-open.org
List archive: https://lists.oasis-open.org/archives/virtio-comment/
Feedback License: https://www.oasis-open.org/who/ipr/feedback_license.pdf
List Guidelines: https://www.oasis-open.org/policies-guidelines/mailing-lists
Committee: https://www.oasis-open.org/committees/virtio/
Join OASIS: https://www.oasis-open.org/join/
^ permalink raw reply [flat|nested] 11+ messages in thread
* RE: [PATCH v6] virtio-net: Improve introductory description
2023-02-16 16:00 ` [virtio-comment] " Parav Pandit
@ 2023-02-16 16:02 ` Parav Pandit
0 siblings, 0 replies; 11+ messages in thread
From: Parav Pandit @ 2023-02-16 16:02 UTC (permalink / raw)
To: Michael S. Tsirkin
Cc: Cornelia Huck, virtio-dev@lists.oasis-open.org,
virtio-comment@lists.oasis-open.org, Shahaf Shuler,
David Edmondson
> From: Parav Pandit
> Sent: Thursday, February 16, 2023 11:01 AM
> > The bylaws are here:
> > https://github.com/oasis-tcs/virtio-spec/blob/master/README.md
> > Minor cleanups, including editorial formatting changes, spelling and
> > typo fixes can be committed directly into git for approval as part of
> > the next specification approval ballot.
> >
> > This is way beyond that. And generally when in doubt vote.
>
> Ok. Thanks for the direction.
>
> Can you please create the voting ballot?
> Git hub issue of interest is: Fixes: https://github.com/oasis-tcs/virtio-
> spec/issues/156
Just seeing now, you already created, thanks.
^ permalink raw reply [flat|nested] 11+ messages in thread
* [virtio-comment] Re: [PATCH v6] virtio-net: Improve introductory description
2023-02-16 15:49 ` Michael S. Tsirkin
2023-02-16 16:00 ` [virtio-comment] " Parav Pandit
@ 2023-02-16 16:03 ` Cornelia Huck
2023-02-16 16:05 ` [virtio-comment] " Parav Pandit
1 sibling, 1 reply; 11+ messages in thread
From: Cornelia Huck @ 2023-02-16 16:03 UTC (permalink / raw)
To: Michael S. Tsirkin, Parav Pandit
Cc: virtio-dev@lists.oasis-open.org,
virtio-comment@lists.oasis-open.org, Shahaf Shuler,
David Edmondson
On Thu, Feb 16 2023, "Michael S. Tsirkin" <mst@redhat.com> wrote:
> On Thu, Feb 16, 2023 at 02:30:03PM +0000, Parav Pandit wrote:
>>
>> > From: Cornelia Huck <cohuck@redhat.com>
>> > Sent: Thursday, February 16, 2023 9:10 AM
>> >
>> > On Tue, Feb 14 2023, Parav Pandit <parav@nvidia.com> wrote:
>> >
>> > > The control VQ of the virtio network device is used beyond advance
>> > > steering control. The control VQ dynamically changes multiple features
>> > > of the initialized device.
>> > >
>> > > Hence, update this area of control VQ introductory description at few
>> > > places and also place the link to its description.
>> > >
>> > > Also update the introduction section to better describe receive and
>> > > transmit virtqueues.
>> > >
>> > > Fixes: https://github.com/oasis-tcs/virtio-spec/issues/156
>> > > Reviewed-by: David Edmondson <david.edmondson@oracle.com>
>> > > Signed-off-by: Parav Pandit <parav@nvidia.com>
>> >
>> > Are you requesting a vote for this?
>>
>> I was not sure if its need voting as most are editorial cleanups, better description, structure movement.
>> Please advise if we need voting.
>
>
> The bylaws are here:
> https://github.com/oasis-tcs/virtio-spec/blob/master/README.md
> Minor cleanups, including editorial formatting changes, spelling and
> typo fixes can be committed directly into git for approval as part of
> the next specification approval ballot.
>
> This is way beyond that. And generally when in doubt vote.
Agreed.
(Btw: the github issue needs to be updated to point to the latest
version of the patch, it still points to v1.)
This publicly archived list offers a means to provide input to the
OASIS Virtual I/O Device (VIRTIO) TC.
In order to verify user consent to the Feedback License terms and
to minimize spam in the list archive, subscription is required
before posting.
Subscribe: virtio-comment-subscribe@lists.oasis-open.org
Unsubscribe: virtio-comment-unsubscribe@lists.oasis-open.org
List help: virtio-comment-help@lists.oasis-open.org
List archive: https://lists.oasis-open.org/archives/virtio-comment/
Feedback License: https://www.oasis-open.org/who/ipr/feedback_license.pdf
List Guidelines: https://www.oasis-open.org/policies-guidelines/mailing-lists
Committee: https://www.oasis-open.org/committees/virtio/
Join OASIS: https://www.oasis-open.org/join/
^ permalink raw reply [flat|nested] 11+ messages in thread
* [virtio-comment] RE: [PATCH v6] virtio-net: Improve introductory description
2023-02-16 16:03 ` [virtio-comment] " Cornelia Huck
@ 2023-02-16 16:05 ` Parav Pandit
2023-02-16 16:30 ` [virtio-dev] " Cornelia Huck
0 siblings, 1 reply; 11+ messages in thread
From: Parav Pandit @ 2023-02-16 16:05 UTC (permalink / raw)
To: Cornelia Huck, Michael S. Tsirkin
Cc: virtio-dev@lists.oasis-open.org,
virtio-comment@lists.oasis-open.org, Shahaf Shuler,
David Edmondson
> From: Cornelia Huck <cohuck@redhat.com>
> Sent: Thursday, February 16, 2023 11:03 AM
>
> On Thu, Feb 16 2023, "Michael S. Tsirkin" <mst@redhat.com> wrote:
>
> > On Thu, Feb 16, 2023 at 02:30:03PM +0000, Parav Pandit wrote:
> >>
> >> > From: Cornelia Huck <cohuck@redhat.com>
> >> > Sent: Thursday, February 16, 2023 9:10 AM
> >> >
> >> > On Tue, Feb 14 2023, Parav Pandit <parav@nvidia.com> wrote:
> >> >
> >> > > The control VQ of the virtio network device is used beyond
> >> > > advance steering control. The control VQ dynamically changes
> >> > > multiple features of the initialized device.
> >> > >
> >> > > Hence, update this area of control VQ introductory description at
> >> > > few places and also place the link to its description.
> >> > >
> >> > > Also update the introduction section to better describe receive
> >> > > and transmit virtqueues.
> >> > >
> >> > > Fixes: https://github.com/oasis-tcs/virtio-spec/issues/156
> >> > > Reviewed-by: David Edmondson <david.edmondson@oracle.com>
> >> > > Signed-off-by: Parav Pandit <parav@nvidia.com>
> >> >
> >> > Are you requesting a vote for this?
> >>
> >> I was not sure if its need voting as most are editorial cleanups, better
> description, structure movement.
> >> Please advise if we need voting.
> >
> >
> > The bylaws are here:
> > https://github.com/oasis-tcs/virtio-spec/blob/master/README.md
> > Minor cleanups, including editorial formatting changes, spelling and
> > typo fixes can be committed directly into git for approval as part of
> > the next specification approval ballot.
> >
> > This is way beyond that. And generally when in doubt vote.
>
> Agreed.
>
> (Btw: the github issue needs to be updated to point to the latest version of the
> patch, it still points to v1.)
Done.
This publicly archived list offers a means to provide input to the
OASIS Virtual I/O Device (VIRTIO) TC.
In order to verify user consent to the Feedback License terms and
to minimize spam in the list archive, subscription is required
before posting.
Subscribe: virtio-comment-subscribe@lists.oasis-open.org
Unsubscribe: virtio-comment-unsubscribe@lists.oasis-open.org
List help: virtio-comment-help@lists.oasis-open.org
List archive: https://lists.oasis-open.org/archives/virtio-comment/
Feedback License: https://www.oasis-open.org/who/ipr/feedback_license.pdf
List Guidelines: https://www.oasis-open.org/policies-guidelines/mailing-lists
Committee: https://www.oasis-open.org/committees/virtio/
Join OASIS: https://www.oasis-open.org/join/
^ permalink raw reply [flat|nested] 11+ messages in thread
* [virtio-dev] Re: [virtio-comment] RE: [PATCH v6] virtio-net: Improve introductory description
2023-02-16 16:05 ` [virtio-comment] " Parav Pandit
@ 2023-02-16 16:30 ` Cornelia Huck
2023-02-17 2:59 ` Parav Pandit
0 siblings, 1 reply; 11+ messages in thread
From: Cornelia Huck @ 2023-02-16 16:30 UTC (permalink / raw)
To: Parav Pandit, Michael S. Tsirkin
Cc: virtio-dev@lists.oasis-open.org,
virtio-comment@lists.oasis-open.org, Shahaf Shuler,
David Edmondson
On Thu, Feb 16 2023, Parav Pandit <parav@nvidia.com> wrote:
>> From: Cornelia Huck <cohuck@redhat.com>
>> Sent: Thursday, February 16, 2023 11:03 AM
>>
>> On Thu, Feb 16 2023, "Michael S. Tsirkin" <mst@redhat.com> wrote:
>>
>> > On Thu, Feb 16, 2023 at 02:30:03PM +0000, Parav Pandit wrote:
>> >>
>> >> > From: Cornelia Huck <cohuck@redhat.com>
>> >> > Sent: Thursday, February 16, 2023 9:10 AM
>> >> >
>> >> > On Tue, Feb 14 2023, Parav Pandit <parav@nvidia.com> wrote:
>> >> >
>> >> > > The control VQ of the virtio network device is used beyond
>> >> > > advance steering control. The control VQ dynamically changes
>> >> > > multiple features of the initialized device.
>> >> > >
>> >> > > Hence, update this area of control VQ introductory description at
>> >> > > few places and also place the link to its description.
>> >> > >
>> >> > > Also update the introduction section to better describe receive
>> >> > > and transmit virtqueues.
>> >> > >
>> >> > > Fixes: https://github.com/oasis-tcs/virtio-spec/issues/156
>> >> > > Reviewed-by: David Edmondson <david.edmondson@oracle.com>
>> >> > > Signed-off-by: Parav Pandit <parav@nvidia.com>
>> >> >
>> >> > Are you requesting a vote for this?
>> >>
>> >> I was not sure if its need voting as most are editorial cleanups, better
>> description, structure movement.
>> >> Please advise if we need voting.
>> >
>> >
>> > The bylaws are here:
>> > https://github.com/oasis-tcs/virtio-spec/blob/master/README.md
>> > Minor cleanups, including editorial formatting changes, spelling and
>> > typo fixes can be committed directly into git for approval as part of
>> > the next specification approval ballot.
>> >
>> > This is way beyond that. And generally when in doubt vote.
>>
>> Agreed.
>>
>> (Btw: the github issue needs to be updated to point to the latest version of the
>> patch, it still points to v1.)
>
> Done.
Do you request to withdraw the ballot, so that we can start a new ballot
with the proper URL?
(Sorry about being a stickler for process here.)
---------------------------------------------------------------------
To unsubscribe, e-mail: virtio-dev-unsubscribe@lists.oasis-open.org
For additional commands, e-mail: virtio-dev-help@lists.oasis-open.org
^ permalink raw reply [flat|nested] 11+ messages in thread
* RE: [virtio-dev] Re: [virtio-comment] RE: [PATCH v6] virtio-net: Improve introductory description
2023-02-16 16:30 ` [virtio-dev] " Cornelia Huck
@ 2023-02-17 2:59 ` Parav Pandit
2023-02-20 13:34 ` [virtio-comment] " Cornelia Huck
0 siblings, 1 reply; 11+ messages in thread
From: Parav Pandit @ 2023-02-17 2:59 UTC (permalink / raw)
To: Cornelia Huck, Michael S. Tsirkin
Cc: virtio-dev@lists.oasis-open.org,
virtio-comment@lists.oasis-open.org, Shahaf Shuler,
David Edmondson
> From: virtio-dev@lists.oasis-open.org <virtio-dev@lists.oasis-open.org> On
> Behalf Of Cornelia Huck
>
> On Thu, Feb 16 2023, Parav Pandit <parav@nvidia.com> wrote:
>
> >> From: Cornelia Huck <cohuck@redhat.com>
> >> Sent: Thursday, February 16, 2023 11:03 AM
> >>
> >> On Thu, Feb 16 2023, "Michael S. Tsirkin" <mst@redhat.com> wrote:
> >>
> >> > On Thu, Feb 16, 2023 at 02:30:03PM +0000, Parav Pandit wrote:
> >> >>
> >> >> > From: Cornelia Huck <cohuck@redhat.com>
> >> >> > Sent: Thursday, February 16, 2023 9:10 AM
> >> >> >
> >> >> > On Tue, Feb 14 2023, Parav Pandit <parav@nvidia.com> wrote:
> >> >> >
> >> >> > > The control VQ of the virtio network device is used beyond
> >> >> > > advance steering control. The control VQ dynamically changes
> >> >> > > multiple features of the initialized device.
> >> >> > >
> >> >> > > Hence, update this area of control VQ introductory description
> >> >> > > at few places and also place the link to its description.
> >> >> > >
> >> >> > > Also update the introduction section to better describe
> >> >> > > receive and transmit virtqueues.
> >> >> > >
> >> >> > > Fixes: https://github.com/oasis-tcs/virtio-spec/issues/156
> >> >> > > Reviewed-by: David Edmondson <david.edmondson@oracle.com>
> >> >> > > Signed-off-by: Parav Pandit <parav@nvidia.com>
> >> >> >
> >> >> > Are you requesting a vote for this?
> >> >>
> >> >> I was not sure if its need voting as most are editorial cleanups,
> >> >> better
> >> description, structure movement.
> >> >> Please advise if we need voting.
> >> >
> >> >
> >> > The bylaws are here:
> >> > https://github.com/oasis-tcs/virtio-spec/blob/master/README.md
> >> > Minor cleanups, including editorial formatting changes, spelling
> >> > and typo fixes can be committed directly into git for approval as
> >> > part of the next specification approval ballot.
> >> >
> >> > This is way beyond that. And generally when in doubt vote.
> >>
> >> Agreed.
> >>
> >> (Btw: the github issue needs to be updated to point to the latest
> >> version of the patch, it still points to v1.)
> >
> > Done.
>
> Do you request to withdraw the ballot, so that we can start a new ballot with
> the proper URL?
>
> (Sorry about being a stickler for process here.)
Yes, can you please withdraw the ballot [1] as it contains stale reference to the patch?
[1] https://www.oasis-open.org/apps/org/workgroup/virtio/ballot.php?id=3758
Also please create new ballot as the github link is now updated for the issue [2].
[2] https://github.com/oasis-tcs/virtio-spec/issues/156
^ permalink raw reply [flat|nested] 11+ messages in thread
* [virtio-comment] RE: [virtio-dev] Re: [virtio-comment] RE: [PATCH v6] virtio-net: Improve introductory description
2023-02-17 2:59 ` Parav Pandit
@ 2023-02-20 13:34 ` Cornelia Huck
0 siblings, 0 replies; 11+ messages in thread
From: Cornelia Huck @ 2023-02-20 13:34 UTC (permalink / raw)
To: Parav Pandit, Michael S. Tsirkin
Cc: virtio-dev@lists.oasis-open.org,
virtio-comment@lists.oasis-open.org, Shahaf Shuler,
David Edmondson
On Fri, Feb 17 2023, Parav Pandit <parav@nvidia.com> wrote:
> Yes, can you please withdraw the ballot [1] as it contains stale reference to the patch?
>
> [1] https://www.oasis-open.org/apps/org/workgroup/virtio/ballot.php?id=3758
>
> Also please create new ballot as the github link is now updated for the issue [2].
> [2] https://github.com/oasis-tcs/virtio-spec/issues/156
Done.
This publicly archived list offers a means to provide input to the
OASIS Virtual I/O Device (VIRTIO) TC.
In order to verify user consent to the Feedback License terms and
to minimize spam in the list archive, subscription is required
before posting.
Subscribe: virtio-comment-subscribe@lists.oasis-open.org
Unsubscribe: virtio-comment-unsubscribe@lists.oasis-open.org
List help: virtio-comment-help@lists.oasis-open.org
List archive: https://lists.oasis-open.org/archives/virtio-comment/
Feedback License: https://www.oasis-open.org/who/ipr/feedback_license.pdf
List Guidelines: https://www.oasis-open.org/policies-guidelines/mailing-lists
Committee: https://www.oasis-open.org/committees/virtio/
Join OASIS: https://www.oasis-open.org/join/
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2023-02-20 13:34 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-14 18:04 [PATCH v6] virtio-net: Improve introductory description Parav Pandit
2023-02-16 14:09 ` [virtio-comment] " Cornelia Huck
2023-02-16 14:30 ` Parav Pandit
2023-02-16 15:49 ` Michael S. Tsirkin
2023-02-16 16:00 ` [virtio-comment] " Parav Pandit
2023-02-16 16:02 ` Parav Pandit
2023-02-16 16:03 ` [virtio-comment] " Cornelia Huck
2023-02-16 16:05 ` [virtio-comment] " Parav Pandit
2023-02-16 16:30 ` [virtio-dev] " Cornelia Huck
2023-02-17 2:59 ` Parav Pandit
2023-02-20 13:34 ` [virtio-comment] " Cornelia Huck
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.