All of lore.kernel.org
 help / color / mirror / Atom feed
* [virtio-dev] [PATCH] packed-ring: fix some typos
@ 2022-03-24 10:34 Michael S. Tsirkin
  2022-03-24 11:23 ` Cornelia Huck
  2022-04-20  9:46 ` [virtio-comment] " Cornelia Huck
  0 siblings, 2 replies; 5+ messages in thread
From: Michael S. Tsirkin @ 2022-03-24 10:34 UTC (permalink / raw)
  To: virtio-comment, virtio-dev; +Cc: virtio

flag is misnamed in a couple of places.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 packed-ring.tex | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/packed-ring.tex b/packed-ring.tex
index e41f8bf..2accc23 100644
--- a/packed-ring.tex
+++ b/packed-ring.tex
@@ -518,7 +518,7 @@ \subsection{Event Suppression Structure Format}\label{sec:Basic
 list.
 
 \drivernormative{\subsection}{Indirect Descriptors}{Basic Facilities of a Virtio Device / Packed Virtqueues / The Virtqueue Descriptor Table / Indirect Descriptors}
-The driver MUST NOT set the DESC_F_INDIRECT flag unless the
+The driver MUST NOT set the VIRTQ_DESC_F_INDIRECT flag unless the
 VIRTIO_F_INDIRECT_DESC feature was negotiated.   The driver MUST NOT
 set any flags except DESC_F_WRITE within an indirect descriptor.
 
@@ -526,7 +526,7 @@ \subsection{Event Suppression Structure Format}\label{sec:Basic
 by the device.
 
 A driver MUST NOT write direct descriptors with
-DESC_F_INDIRECT set in a scatter-gather list linked by
+VIRTQ_DESC_F_INDIRECT set in a scatter-gather list linked by
 VIRTQ_DESC_F_NEXT.
 \field{flags}.
 
-- 
MST


---------------------------------------------------------------------
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 related	[flat|nested] 5+ messages in thread

* Re: [virtio-dev] [PATCH] packed-ring: fix some typos
  2022-03-24 10:34 [virtio-dev] [PATCH] packed-ring: fix some typos Michael S. Tsirkin
@ 2022-03-24 11:23 ` Cornelia Huck
  2022-03-24 12:02   ` Michael S. Tsirkin
  2022-04-20  9:46 ` [virtio-comment] " Cornelia Huck
  1 sibling, 1 reply; 5+ messages in thread
From: Cornelia Huck @ 2022-03-24 11:23 UTC (permalink / raw)
  To: Michael S. Tsirkin, virtio-comment, virtio-dev; +Cc: virtio

On Thu, Mar 24 2022, "Michael S. Tsirkin" <mst@redhat.com> wrote:

> flag is misnamed in a couple of places.

s//The VIRTQ_DESC_F_INDIRECT_FLAG /

>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> ---
>  packed-ring.tex | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Reviewed-by: Cornelia Huck <cohuck@redhat.com>


---------------------------------------------------------------------
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] 5+ messages in thread

* Re: [virtio-dev] [PATCH] packed-ring: fix some typos
  2022-03-24 11:23 ` Cornelia Huck
@ 2022-03-24 12:02   ` Michael S. Tsirkin
  2022-03-24 12:24     ` [virtio] " Cornelia Huck
  0 siblings, 1 reply; 5+ messages in thread
From: Michael S. Tsirkin @ 2022-03-24 12:02 UTC (permalink / raw)
  To: Cornelia Huck; +Cc: virtio-comment, virtio-dev, virtio

On Thu, Mar 24, 2022 at 12:23:23PM +0100, Cornelia Huck wrote:
> On Thu, Mar 24 2022, "Michael S. Tsirkin" <mst@redhat.com> wrote:
> 
> > flag is misnamed in a couple of places.
> 
> s//The VIRTQ_DESC_F_INDIRECT_FLAG /

You mean VIRTQ_DESC_F_INDIRECT don't you?

> >
> > Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> > ---
> >  packed-ring.tex | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> Reviewed-by: Cornelia Huck <cohuck@redhat.com>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [virtio] Re: [virtio-dev] [PATCH] packed-ring: fix some typos
  2022-03-24 12:02   ` Michael S. Tsirkin
@ 2022-03-24 12:24     ` Cornelia Huck
  0 siblings, 0 replies; 5+ messages in thread
From: Cornelia Huck @ 2022-03-24 12:24 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: virtio-comment, virtio-dev, virtio

On Thu, Mar 24 2022, "Michael S. Tsirkin" <mst@redhat.com> wrote:

> On Thu, Mar 24, 2022 at 12:23:23PM +0100, Cornelia Huck wrote:
>> On Thu, Mar 24 2022, "Michael S. Tsirkin" <mst@redhat.com> wrote:
>> 
>> > flag is misnamed in a couple of places.
>> 
>> s//The VIRTQ_DESC_F_INDIRECT_FLAG /
>
> You mean VIRTQ_DESC_F_INDIRECT don't you?

Typo corrected by another typo... yeah.

>
>> >
>> > Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
>> > ---
>> >  packed-ring.tex | 4 ++--
>> >  1 file changed, 2 insertions(+), 2 deletions(-)
>> 
>> Reviewed-by: Cornelia Huck <cohuck@redhat.com>


---------------------------------------------------------------------
To unsubscribe from this mail list, you must leave the OASIS TC that 
generates this mail.  Follow this link to all your TCs in OASIS at:
https://www.oasis-open.org/apps/org/workgroup/portal/my_workgroups.php 


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [virtio-comment] Re: [virtio-dev] [PATCH] packed-ring: fix some typos
  2022-03-24 10:34 [virtio-dev] [PATCH] packed-ring: fix some typos Michael S. Tsirkin
  2022-03-24 11:23 ` Cornelia Huck
@ 2022-04-20  9:46 ` Cornelia Huck
  1 sibling, 0 replies; 5+ messages in thread
From: Cornelia Huck @ 2022-04-20  9:46 UTC (permalink / raw)
  To: Michael S. Tsirkin, virtio-comment, virtio-dev; +Cc: virtio

On Thu, Mar 24 2022, "Michael S. Tsirkin" <mst@redhat.com> wrote:

> flag is misnamed in a couple of places.
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> ---
>  packed-ring.tex | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Thanks, applied as editorial update.


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] 5+ messages in thread

end of thread, other threads:[~2022-04-20  9:46 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-24 10:34 [virtio-dev] [PATCH] packed-ring: fix some typos Michael S. Tsirkin
2022-03-24 11:23 ` Cornelia Huck
2022-03-24 12:02   ` Michael S. Tsirkin
2022-03-24 12:24     ` [virtio] " Cornelia Huck
2022-04-20  9:46 ` [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.