All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] content.tex Fix Driver notifications label
@ 2023-02-03 18:35 Parav Pandit
  2023-02-10 11:23 ` [virtio-dev] " Cornelia Huck
  0 siblings, 1 reply; 10+ messages in thread
From: Parav Pandit @ 2023-02-03 18:35 UTC (permalink / raw)
  To: mst, virtio-dev, cohuck; +Cc: virtio-comment, shahafs, Parav Pandit

Driver notifications section is under "Basic Facilities of a Virtio
Device". However, the label is placed under "Virtqueues" section.

Fix the label references.

Signed-off-by: Parav Pandit <parav@nvidia.com>
---
 content.tex | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/content.tex b/content.tex
index df5ce16..874714f 100644
--- a/content.tex
+++ b/content.tex
@@ -396,7 +396,7 @@ \subsubsection{Virtqueue Re-enable}\label{sec:Basic Facilities of a Virtio Devic
 
 \input{packed-ring.tex}
 
-\section{Driver Notifications} \label{sec:Virtqueues / Driver notifications}
+\section{Driver Notifications} \label{sec:Basic Facilities of a Virtio Device / Driver notifications}
 The driver is sometimes required to send an available buffer
 notification to the device.
 
@@ -1624,7 +1624,7 @@ \subsubsection{Available Buffer Notifications}\label{sec:Virtio Transport Option
 the following 32-bit value to the Queue Notify address:
 \lstinputlisting{notifications-le.c}
 
-See \ref{sec:Virtqueues / Driver notifications}~\nameref{sec:Virtqueues / Driver notifications}
+See \ref{sec:Basic Facilities of a Virtio Device / Driver notifications}~\nameref{sec:Basic Facilities of a Virtio Device / Driver notifications}
 for the definition of the components.
 
 See \ref{sec:Virtio Transport Options / Virtio Over PCI Bus / PCI Device Layout / Notification capability}
@@ -1879,7 +1879,7 @@ \subsection{MMIO Device Register Layout}\label{sec:Virtio Transport Options / Vi
 
     \lstinputlisting{notifications-le.c}
 
-    See \ref{sec:Virtqueues / Driver notifications}~\nameref{sec:Virtqueues / Driver notifications}
+    See \ref{sec:Basic Facilities of a Virtio Device / Driver notifications}~\nameref{sec:Basic Facilities of a Virtio Device / Driver notifications}
     for the definition of the components.
   }
   \hline 
@@ -2123,7 +2123,7 @@ \subsubsection{Available Buffer Notifications}\label{sec:Virtio Transport Option
 the following 32-bit value to \field{QueueNotify}:
 \lstinputlisting{notifications-le.c}
 
-See \ref{sec:Virtqueues / Driver notifications}~\nameref{sec:Virtqueues / Driver notifications}
+See \ref{sec:Basic Facilities of a Virtio Device / Driver notifications}~\nameref{sec:Basic Facilities of a Virtio Device / Driver notifications}
 for the definition of the components.
 
 \subsubsection{Notifications From The Device}\label{sec:Virtio Transport Options / Virtio Over MMIO / MMIO-specific Initialization And Device Operation / Notifications From The Device}
@@ -2845,7 +2845,7 @@ \subsubsection{Guest->Host Notification}\label{sec:Virtio Transport Options / Vi
 the value has the following format:
 \lstinputlisting{notifications-be.c}
 
-See \ref{sec:Virtqueues / Driver notifications}~\nameref{sec:Virtqueues / Driver notifications}
+See \ref{sec:Basic Facilities of a Virtio Device / Driver notifications}~\nameref{sec:Basic Facilities of a Virtio Device / Driver notifications}
 for the definition of the components.
 
 \devicenormative{\paragraph}{Guest->Host Notification}{Virtio Transport Options / Virtio over channel I/O / Device Operation / Guest->Host Notification}
@@ -3091,12 +3091,12 @@ \chapter{Reserved Feature Bits}\label{sec:Reserved Feature Bits}
   \item[VIRTIO_F_NOTIFICATION_DATA(38)] This feature indicates
   that the driver passes extra data (besides identifying the virtqueue)
   in its device notifications.
-  See \ref{sec:Virtqueues / Driver notifications}~\nameref{sec:Virtqueues / Driver notifications}.
+  See \ref{sec:Basic Facilities of a Virtio Device / Driver notifications}~\nameref{sec:Basic Facilities of a Virtio Device / Driver notifications}.
 
   \item[VIRTIO_F_NOTIF_CONFIG_DATA(39)] This feature indicates that the driver
   uses the data provided by the device as a virtqueue identifier in available
   buffer notifications.
-  As mentioned in section \ref{sec:Virtqueues / Driver notifications}, when the
+  As mentioned in section \ref{sec:Basic Facilities of a Virtio Device / Driver notifications}, when the
   driver is required to send an available buffer notification to the device, it
   sends the virtqueue number to be notified. The method of delivering
   notifications is transport specific.
-- 
2.26.2


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

* [virtio-dev] Re: [PATCH] content.tex Fix Driver notifications label
  2023-02-03 18:35 [PATCH] content.tex Fix Driver notifications label Parav Pandit
@ 2023-02-10 11:23 ` Cornelia Huck
  2023-02-15  5:31   ` Parav Pandit
  2023-02-15 11:14   ` Michael S. Tsirkin
  0 siblings, 2 replies; 10+ messages in thread
From: Cornelia Huck @ 2023-02-10 11:23 UTC (permalink / raw)
  To: Parav Pandit, mst, virtio-dev; +Cc: virtio-comment, shahafs, Parav Pandit

On Fri, Feb 03 2023, Parav Pandit <parav@nvidia.com> wrote:

> Driver notifications section is under "Basic Facilities of a Virtio
> Device". However, the label is placed under "Virtqueues" section.
>
> Fix the label references.
>
> Signed-off-by: Parav Pandit <parav@nvidia.com>
> ---
>  content.tex | 14 +++++++-------
>  1 file changed, 7 insertions(+), 7 deletions(-)

Not sure if it was originally intended to sit unter the virtqueues
section (it was lifted up one level as it disappeared under the packet
ring section), might have been.

It probably makes sense to not try and move it back into the virtqueues
section, and instead do your change. Other opinions?


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

* RE: [PATCH] content.tex Fix Driver notifications label
  2023-02-10 11:23 ` [virtio-dev] " Cornelia Huck
@ 2023-02-15  5:31   ` Parav Pandit
  2023-02-15 11:14   ` Michael S. Tsirkin
  1 sibling, 0 replies; 10+ messages in thread
From: Parav Pandit @ 2023-02-15  5:31 UTC (permalink / raw)
  To: Cornelia Huck, mst@redhat.com, virtio-dev@lists.oasis-open.org
  Cc: virtio-comment@lists.oasis-open.org, Shahaf Shuler


> From: Cornelia Huck <cohuck@redhat.com>
> Sent: Friday, February 10, 2023 6:23 AM
> To: Parav Pandit <parav@nvidia.com>; mst@redhat.com; virtio-
> dev@lists.oasis-open.org
> Cc: virtio-comment@lists.oasis-open.org; Shahaf Shuler
> <shahafs@nvidia.com>; Parav Pandit <parav@nvidia.com>
> Subject: Re: [PATCH] content.tex Fix Driver notifications label
> 
> On Fri, Feb 03 2023, Parav Pandit <parav@nvidia.com> wrote:
> 
> > Driver notifications section is under "Basic Facilities of a Virtio
> > Device". However, the label is placed under "Virtqueues" section.
> >
> > Fix the label references.
> >
> > Signed-off-by: Parav Pandit <parav@nvidia.com>
> > ---
> >  content.tex | 14 +++++++-------
> >  1 file changed, 7 insertions(+), 7 deletions(-)
> 
> Not sure if it was originally intended to sit unter the virtqueues section (it was
> lifted up one level as it disappeared under the packet ring section), might have
> been.
> 
> It probably makes sense to not try and move it back into the virtqueues section,
> and instead do your change. Other opinions?

If there is none, can you please proceed to complete the review?
I assume this editorial fix doesn't need github issue.

Once this fix is in place, I would like to bring Notifications and driver Notifications sections close to each other as it has overlapping parts. 


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

* Re: [PATCH] content.tex Fix Driver notifications label
  2023-02-10 11:23 ` [virtio-dev] " Cornelia Huck
  2023-02-15  5:31   ` Parav Pandit
@ 2023-02-15 11:14   ` Michael S. Tsirkin
  2023-02-15 12:19     ` [virtio-comment] " Cornelia Huck
  1 sibling, 1 reply; 10+ messages in thread
From: Michael S. Tsirkin @ 2023-02-15 11:14 UTC (permalink / raw)
  To: Cornelia Huck; +Cc: Parav Pandit, virtio-dev, virtio-comment, shahafs

On Fri, Feb 10, 2023 at 12:23:14PM +0100, Cornelia Huck wrote:
> On Fri, Feb 03 2023, Parav Pandit <parav@nvidia.com> wrote:
> 
> > Driver notifications section is under "Basic Facilities of a Virtio
> > Device". However, the label is placed under "Virtqueues" section.
> >
> > Fix the label references.
> >
> > Signed-off-by: Parav Pandit <parav@nvidia.com>
> > ---
> >  content.tex | 14 +++++++-------
> >  1 file changed, 7 insertions(+), 7 deletions(-)
> 
> Not sure if it was originally intended to sit unter the virtqueues
> section (it was lifted up one level as it disappeared under the packet
> ring section), might have been.
> 
> It probably makes sense to not try and move it back into the virtqueues
> section, and instead do your change. Other opinions?

Acked-by: Michael S. Tsirkin <mst@redhat.com>

Minor fix does not need a vote.
Cornelia are you applying this?

-- 
MST


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

* [virtio-comment] Re: [PATCH] content.tex Fix Driver notifications label
  2023-02-15 11:14   ` Michael S. Tsirkin
@ 2023-02-15 12:19     ` Cornelia Huck
  2023-02-15 12:59       ` Michael S. Tsirkin
  0 siblings, 1 reply; 10+ messages in thread
From: Cornelia Huck @ 2023-02-15 12:19 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: Parav Pandit, virtio-dev, virtio-comment, shahafs

On Wed, Feb 15 2023, "Michael S. Tsirkin" <mst@redhat.com> wrote:

> On Fri, Feb 10, 2023 at 12:23:14PM +0100, Cornelia Huck wrote:
>> On Fri, Feb 03 2023, Parav Pandit <parav@nvidia.com> wrote:
>> 
>> > Driver notifications section is under "Basic Facilities of a Virtio
>> > Device". However, the label is placed under "Virtqueues" section.
>> >
>> > Fix the label references.
>> >
>> > Signed-off-by: Parav Pandit <parav@nvidia.com>
>> > ---
>> >  content.tex | 14 +++++++-------
>> >  1 file changed, 7 insertions(+), 7 deletions(-)
>> 
>> Not sure if it was originally intended to sit unter the virtqueues
>> section (it was lifted up one level as it disappeared under the packet
>> ring section), might have been.
>> 
>> It probably makes sense to not try and move it back into the virtqueues
>> section, and instead do your change. Other opinions?
>
> Acked-by: Michael S. Tsirkin <mst@redhat.com>
>
> Minor fix does not need a vote.
> Cornelia are you applying this?

Pushed.


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

* Re: [PATCH] content.tex Fix Driver notifications label
  2023-02-15 12:19     ` [virtio-comment] " Cornelia Huck
@ 2023-02-15 12:59       ` Michael S. Tsirkin
  2023-02-15 15:08         ` [virtio-comment] " Cornelia Huck
  2023-02-15 21:53         ` Parav Pandit
  0 siblings, 2 replies; 10+ messages in thread
From: Michael S. Tsirkin @ 2023-02-15 12:59 UTC (permalink / raw)
  To: Cornelia Huck; +Cc: Parav Pandit, virtio-dev, virtio-comment, shahafs

On Wed, Feb 15, 2023 at 01:19:25PM +0100, Cornelia Huck wrote:
> On Wed, Feb 15 2023, "Michael S. Tsirkin" <mst@redhat.com> wrote:
> 
> > On Fri, Feb 10, 2023 at 12:23:14PM +0100, Cornelia Huck wrote:
> >> On Fri, Feb 03 2023, Parav Pandit <parav@nvidia.com> wrote:
> >> 
> >> > Driver notifications section is under "Basic Facilities of a Virtio
> >> > Device". However, the label is placed under "Virtqueues" section.
> >> >
> >> > Fix the label references.
> >> >
> >> > Signed-off-by: Parav Pandit <parav@nvidia.com>
> >> > ---
> >> >  content.tex | 14 +++++++-------
> >> >  1 file changed, 7 insertions(+), 7 deletions(-)
> >> 
> >> Not sure if it was originally intended to sit unter the virtqueues
> >> section (it was lifted up one level as it disappeared under the packet
> >> ring section), might have been.
> >> 
> >> It probably makes sense to not try and move it back into the virtqueues
> >> section, and instead do your change. Other opinions?
> >
> > Acked-by: Michael S. Tsirkin <mst@redhat.com>
> >
> > Minor fix does not need a vote.
> > Cornelia are you applying this?
> 
> Pushed.

btw did you try to generate a diff pdf? when changing labels it is
sometimes necessary to keep old ones around too as diff
needs old and new links to work.

-- 
MST


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

* [virtio-comment] Re: [PATCH] content.tex Fix Driver notifications label
  2023-02-15 12:59       ` Michael S. Tsirkin
@ 2023-02-15 15:08         ` Cornelia Huck
  2023-02-15 21:53         ` Parav Pandit
  1 sibling, 0 replies; 10+ messages in thread
From: Cornelia Huck @ 2023-02-15 15:08 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: Parav Pandit, virtio-dev, virtio-comment, shahafs

On Wed, Feb 15 2023, "Michael S. Tsirkin" <mst@redhat.com> wrote:

> On Wed, Feb 15, 2023 at 01:19:25PM +0100, Cornelia Huck wrote:
>> On Wed, Feb 15 2023, "Michael S. Tsirkin" <mst@redhat.com> wrote:
>> 
>> > On Fri, Feb 10, 2023 at 12:23:14PM +0100, Cornelia Huck wrote:
>> >> On Fri, Feb 03 2023, Parav Pandit <parav@nvidia.com> wrote:
>> >> 
>> >> > Driver notifications section is under "Basic Facilities of a Virtio
>> >> > Device". However, the label is placed under "Virtqueues" section.
>> >> >
>> >> > Fix the label references.
>> >> >
>> >> > Signed-off-by: Parav Pandit <parav@nvidia.com>
>> >> > ---
>> >> >  content.tex | 14 +++++++-------
>> >> >  1 file changed, 7 insertions(+), 7 deletions(-)
>> >> 
>> >> Not sure if it was originally intended to sit unter the virtqueues
>> >> section (it was lifted up one level as it disappeared under the packet
>> >> ring section), might have been.
>> >> 
>> >> It probably makes sense to not try and move it back into the virtqueues
>> >> section, and instead do your change. Other opinions?
>> >
>> > Acked-by: Michael S. Tsirkin <mst@redhat.com>
>> >
>> > Minor fix does not need a vote.
>> > Cornelia are you applying this?
>> 
>> Pushed.
>
> btw did you try to generate a diff pdf? when changing labels it is
> sometimes necessary to keep old ones around too as diff
> needs old and new links to work.

I'm at least not seeing obvious errors.


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

* RE: [PATCH] content.tex Fix Driver notifications label
  2023-02-15 12:59       ` Michael S. Tsirkin
  2023-02-15 15:08         ` [virtio-comment] " Cornelia Huck
@ 2023-02-15 21:53         ` Parav Pandit
  2023-02-16  0:20           ` Michael S. Tsirkin
  1 sibling, 1 reply; 10+ messages in thread
From: Parav Pandit @ 2023-02-15 21:53 UTC (permalink / raw)
  To: Michael S. Tsirkin, Cornelia Huck
  Cc: virtio-dev@lists.oasis-open.org,
	virtio-comment@lists.oasis-open.org, Shahaf Shuler


> From: Michael S. Tsirkin <mst@redhat.com>
> Sent: Wednesday, February 15, 2023 8:00 AM
> 
> btw did you try to generate a diff pdf? when changing labels it is sometimes
> necessary to keep old ones around too as diff needs old and new links to work.

I generated the new pdf before pushing the patch. 
I couldn't generate the diff pdf using ./makediffpdf.sh

I get error on running makediff.sh virtio.tex

Warning: command \@chapapp containing @ found in
Warning: virtio.tex.
Warning: consider using --makeatletter if the result is not compilable.
Warning: command \@chapapp containing @ found in
Warning: ./main.tex.
Warning: consider using --makeatletter if the result is not compilable.
Submodule path 'latexdiff' not initialized
Maybe you want to use 'update --init'?
make: Entering directory '/images/parav/upstream/virtio-spec/latexdiff'
make: *** No rule to make target 'mkdirs'.  Stop.
make: Leaving directory '/images/parav/upstream/virtio-spec/latexdiff'
./makediff.sh: line 51: ./latexdiff-fast: No such file or directory


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

* Re: [PATCH] content.tex Fix Driver notifications label
  2023-02-15 21:53         ` Parav Pandit
@ 2023-02-16  0:20           ` Michael S. Tsirkin
  2023-02-16  5:36             ` Parav Pandit
  0 siblings, 1 reply; 10+ messages in thread
From: Michael S. Tsirkin @ 2023-02-16  0:20 UTC (permalink / raw)
  To: Parav Pandit
  Cc: Cornelia Huck, virtio-dev@lists.oasis-open.org,
	virtio-comment@lists.oasis-open.org, Shahaf Shuler

On Wed, Feb 15, 2023 at 09:53:55PM +0000, Parav Pandit wrote:
> 
> > From: Michael S. Tsirkin <mst@redhat.com>
> > Sent: Wednesday, February 15, 2023 8:00 AM
> > 
> > btw did you try to generate a diff pdf? when changing labels it is sometimes
> > necessary to keep old ones around too as diff needs old and new links to work.
> 
> I generated the new pdf before pushing the patch. 
> I couldn't generate the diff pdf using ./makediffpdf.sh
> 
> I get error on running makediff.sh virtio.tex
> 
> Warning: command \@chapapp containing @ found in
> Warning: virtio.tex.
> Warning: consider using --makeatletter if the result is not compilable.
> Warning: command \@chapapp containing @ found in
> Warning: ./main.tex.
> Warning: consider using --makeatletter if the result is not compilable.
> Submodule path 'latexdiff' not initialized
> Maybe you want to use 'update --init'?
> make: Entering directory '/images/parav/upstream/virtio-spec/latexdiff'
> make: *** No rule to make target 'mkdirs'.  Stop.
> make: Leaving directory '/images/parav/upstream/virtio-spec/latexdiff'
> ./makediff.sh: line 51: ./latexdiff-fast: No such file or directory


Hmm. does this help:


diff --git a/makediff.sh b/makediff.sh
index c925c5f..f65a2b4 100755
--- a/makediff.sh
+++ b/makediff.sh
@@ -44,7 +44,7 @@ latexpand $MAIN -o flat.tex
 cd "${cur}"
 #wget http://mirror.math.ku.edu/tex-archive/support/latexdiff/latexdiff-fast
 #chmod +x latexdiff-fast
-git submodule update latexdiff
+git submodule update --init latexdiff
 make -C latexdiff mkdirs dist/latexdiff-fast
 ln -fs ./latexdiff/dist/latexdiff-fast ./latexdiff-fast
 ./latexdiff-fast \


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

* RE: [PATCH] content.tex Fix Driver notifications label
  2023-02-16  0:20           ` Michael S. Tsirkin
@ 2023-02-16  5:36             ` Parav Pandit
  0 siblings, 0 replies; 10+ messages in thread
From: Parav Pandit @ 2023-02-16  5:36 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Cornelia Huck, virtio-dev@lists.oasis-open.org,
	virtio-comment@lists.oasis-open.org, Shahaf Shuler


> From: Michael S. Tsirkin <mst@redhat.com>
> Sent: Wednesday, February 15, 2023 7:20 PM
> 
> On Wed, Feb 15, 2023 at 09:53:55PM +0000, Parav Pandit wrote:
> >
> > > From: Michael S. Tsirkin <mst@redhat.com>
> > > Sent: Wednesday, February 15, 2023 8:00 AM
> > >
> > > btw did you try to generate a diff pdf? when changing labels it is
> > > sometimes necessary to keep old ones around too as diff needs old and
> new links to work.
> >
> > I generated the new pdf before pushing the patch.
> > I couldn't generate the diff pdf using ./makediffpdf.sh
> >
> > I get error on running makediff.sh virtio.tex
> >
> > Warning: command \@chapapp containing @ found in
> > Warning: virtio.tex.
> > Warning: consider using --makeatletter if the result is not compilable.
> > Warning: command \@chapapp containing @ found in
> > Warning: ./main.tex.
> > Warning: consider using --makeatletter if the result is not compilable.
> > Submodule path 'latexdiff' not initialized Maybe you want to use
> > 'update --init'?
> > make: Entering directory '/images/parav/upstream/virtio-spec/latexdiff'
> > make: *** No rule to make target 'mkdirs'.  Stop.
> > make: Leaving directory '/images/parav/upstream/virtio-spec/latexdiff'
> > ./makediff.sh: line 51: ./latexdiff-fast: No such file or directory
> 
> 
> Hmm. does this help:
>
Works great. Thank you.
Was able to find out fixing the change log.
I posted the fix up patch at [1].

Please review.
[1] https://lists.oasis-open.org/archives/virtio-dev/202302/msg00331.html


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

end of thread, other threads:[~2023-02-16  5:36 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-03 18:35 [PATCH] content.tex Fix Driver notifications label Parav Pandit
2023-02-10 11:23 ` [virtio-dev] " Cornelia Huck
2023-02-15  5:31   ` Parav Pandit
2023-02-15 11:14   ` Michael S. Tsirkin
2023-02-15 12:19     ` [virtio-comment] " Cornelia Huck
2023-02-15 12:59       ` Michael S. Tsirkin
2023-02-15 15:08         ` [virtio-comment] " Cornelia Huck
2023-02-15 21:53         ` Parav Pandit
2023-02-16  0:20           ` Michael S. Tsirkin
2023-02-16  5:36             ` Parav Pandit

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.