* [PATCH 6/5] docs: Typo fix in live disk backup
@ 2024-08-02 13:30 Eric Blake
2024-08-02 15:57 ` Philippe Mathieu-Daudé
2024-08-08 12:51 ` Peter Maydell
0 siblings, 2 replies; 4+ messages in thread
From: Eric Blake @ 2024-08-02 13:30 UTC (permalink / raw)
To: qemu-devel; +Cc: peter.maydell, richard.henderson
Add in the missing space in the section header.
Fixes: 1084159b31 ("qapi: deprecate drive-backup", v6.2.0)
Signed-off-by: Eric Blake <eblake@redhat.com>
---
Noticed while figuring out where nbd docs would appear in [1] once [2]
goes live:
[1] https://www.qemu.org/docs/master/interop/index.html
[2] https://lists.gnu.org/archive/html/qemu-devel/2024-08/msg00223.html
---
docs/interop/live-block-operations.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/interop/live-block-operations.rst b/docs/interop/live-block-operations.rst
index 691429c7afe..6b549ede7c9 100644
--- a/docs/interop/live-block-operations.rst
+++ b/docs/interop/live-block-operations.rst
@@ -931,8 +931,8 @@ Shutdown the guest, by issuing the ``quit`` QMP command::
}
-Live disk backup --- ``blockdev-backup`` and the deprecated``drive-backup``
----------------------------------------------------------------------------
+Live disk backup --- ``blockdev-backup`` and the deprecated ``drive-backup``
+----------------------------------------------------------------------------
The ``blockdev-backup`` (and the deprecated ``drive-backup``) allows
you to create a point-in-time snapshot.
--
2.45.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 6/5] docs: Typo fix in live disk backup
2024-08-02 13:30 [PATCH 6/5] docs: Typo fix in live disk backup Eric Blake
@ 2024-08-02 15:57 ` Philippe Mathieu-Daudé
2024-08-08 12:51 ` Peter Maydell
1 sibling, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-08-02 15:57 UTC (permalink / raw)
To: Eric Blake, qemu-devel; +Cc: peter.maydell, richard.henderson
On 2/8/24 15:30, Eric Blake wrote:
> Add in the missing space in the section header.
>
> Fixes: 1084159b31 ("qapi: deprecate drive-backup", v6.2.0)
> Signed-off-by: Eric Blake <eblake@redhat.com>
>
> ---
>
> Noticed while figuring out where nbd docs would appear in [1] once [2]
> goes live:
> [1] https://www.qemu.org/docs/master/interop/index.html
> [2] https://lists.gnu.org/archive/html/qemu-devel/2024-08/msg00223.html
>
> ---
> docs/interop/live-block-operations.rst | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 6/5] docs: Typo fix in live disk backup
2024-08-02 13:30 [PATCH 6/5] docs: Typo fix in live disk backup Eric Blake
2024-08-02 15:57 ` Philippe Mathieu-Daudé
@ 2024-08-08 12:51 ` Peter Maydell
1 sibling, 0 replies; 4+ messages in thread
From: Peter Maydell @ 2024-08-08 12:51 UTC (permalink / raw)
To: Eric Blake; +Cc: qemu-devel, richard.henderson
On Fri, 2 Aug 2024 at 14:31, Eric Blake <eblake@redhat.com> wrote:
>
> Add in the missing space in the section header.
>
> Fixes: 1084159b31 ("qapi: deprecate drive-backup", v6.2.0)
> Signed-off-by: Eric Blake <eblake@redhat.com>
>
> ---
>
> Noticed while figuring out where nbd docs would appear in [1] once [2]
> goes live:
> [1] https://www.qemu.org/docs/master/interop/index.html
> [2] https://lists.gnu.org/archive/html/qemu-devel/2024-08/msg00223.html
FWIW a "6/5" patch like this tends to confuse the automated
tooling (neither patchew nor patches liked it). They prefer
it if this kind of "on top of that other series" patch is
sent as a normal patch but with a "Based-on: $MSGID" tag in the
cover letter -- then for instance patchew knows to get that
other series and apply it first when it tries to apply the
goes-on-top patch.
Anyway, I fished the email out of the lore.kernel.org
archive and I've applied it to target-arm.next on top of
my rst conversion patchset.
thanks
-- PMM
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 0/5] docs: more conversions from txt to rst
@ 2024-08-01 17:01 Peter Maydell
2024-08-02 13:42 ` [PATCH 6/5] docs: Typo fix in live disk backup Eric Blake
0 siblings, 1 reply; 4+ messages in thread
From: Peter Maydell @ 2024-08-01 17:01 UTC (permalink / raw)
To: qemu-devel
Cc: Eric Blake, Vladimir Sementsov-Ogievskiy, Stefan Hajnoczi,
Denis V. Lunev, Jiri Pirko
This patchset converts four files in specs and interop
from plain text to rST format. Technically this wouldn't
be a bugfix but I think it's probably reasonable to put
them in to 9.1 if they get review.
thanks
-- PMM
Peter Maydell (5):
docs/specs/rocker.txt: Convert to rST
docs/interop/nbd.txt: Convert to rST
docs/interop/parallels.txt: Convert to rST
docs/interop/prl-xml.txt: Convert to rST
docs/interop/prl-xml.rst: Fix minor grammar nits
MAINTAINERS | 7 +-
docs/interop/index.rst | 3 +
docs/interop/nbd.rst | 89 ++++++++
docs/interop/nbd.txt | 72 -------
docs/interop/{parallels.txt => parallels.rst} | 108 +++++-----
docs/interop/prl-xml.rst | 192 ++++++++++++++++++
docs/interop/prl-xml.txt | 158 --------------
docs/specs/index.rst | 1 +
docs/specs/{rocker.txt => rocker.rst} | 181 +++++++++--------
9 files changed, 438 insertions(+), 373 deletions(-)
create mode 100644 docs/interop/nbd.rst
delete mode 100644 docs/interop/nbd.txt
rename docs/interop/{parallels.txt => parallels.rst} (72%)
create mode 100644 docs/interop/prl-xml.rst
delete mode 100644 docs/interop/prl-xml.txt
rename docs/specs/{rocker.txt => rocker.rst} (91%)
--
2.34.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 6/5] docs: Typo fix in live disk backup
2024-08-01 17:01 [PATCH 0/5] docs: more conversions from txt to rst Peter Maydell
@ 2024-08-02 13:42 ` Eric Blake
0 siblings, 0 replies; 4+ messages in thread
From: Eric Blake @ 2024-08-02 13:42 UTC (permalink / raw)
To: qemu-devel; +Cc: peter.maydell, richard.henderson
On Fri, Aug 02, 2024 at 08:30:25AM GMT, Eric Blake wrote:
> Add in the missing space in the section header.
>
> Fixes: 1084159b31 ("qapi: deprecate drive-backup", v6.2.0)
> Signed-off-by: Eric Blake <eblake@redhat.com>
Regarding the subject line using [PATCH 6/5]: I meant to send the
patch in-reply-to <20240801170131.3977807-1-peter.maydell@linaro.org>
rather than as a standalone thread. Time to see if my attempt to
rectify that mid-thread messes up anyone's mailer threading :)
--
Eric Blake, Principal Software Engineer
Red Hat, Inc.
Virtualization: qemu.org | libguestfs.org
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-08-08 12:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-02 13:30 [PATCH 6/5] docs: Typo fix in live disk backup Eric Blake
2024-08-02 15:57 ` Philippe Mathieu-Daudé
2024-08-08 12:51 ` Peter Maydell
-- strict thread matches above, loose matches on Subject: below --
2024-08-01 17:01 [PATCH 0/5] docs: more conversions from txt to rst Peter Maydell
2024-08-02 13:42 ` [PATCH 6/5] docs: Typo fix in live disk backup Eric Blake
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).