Re: [PATCH 2/2] docs: make isa-debugcon example more useful / directly applicable

2023-05-18 Thread Laszlo Ersek
On 5/18/23 16:34, Andrea Bolognani wrote: > On Thu, May 18, 2023 at 02:59:39PM +0200, Laszlo Ersek wrote: >> The type='pty' attribute in the element causes a Pseudo TTY to be >> allocated on the host side via "/dev/ptmx", which is meant to be >> interacted with via "virsh console" or similar. >>

Re: [PATCH 2/2] docs: make isa-debugcon example more useful / directly applicable

2023-05-18 Thread Andrea Bolognani
On Thu, May 18, 2023 at 02:59:39PM +0200, Laszlo Ersek wrote: > The type='pty' attribute in the element causes a Pseudo TTY to be > allocated on the host side via "/dev/ptmx", which is meant to be > interacted with via "virsh console" or similar. > > That's not how a firmware log is typically

Re: [PATCH 1/2] docs: fix typo in isa-debugcon example

2023-05-18 Thread Andrea Bolognani
On Thu, May 18, 2023 at 02:59:38PM +0200, Laszlo Ersek wrote: > The opening tag is paired with the closing tag; that's > a mismatch. The question is then whether to modify the former to > , or the latter to . > > Per section "Relationship between serial ports and consoles", is > used for

[libvirt PATCH] NEWS: Mention support for compressing parallel migration

2023-05-18 Thread Jiri Denemark
Signed-off-by: Jiri Denemark --- NEWS.rst | 4 1 file changed, 4 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 446998e12e..1b85ef6d37 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -17,6 +17,10 @@ v9.4.0 (unreleased) * **New features** + * qemu: Support compression for parallel

Re: [PATCH V3 0/3] migration: add qemu parallel migration options

2023-05-18 Thread Jiri Denemark
On Wed, Apr 26, 2023 at 09:56:30 +0800, Jiang Jiacheng wrote: > On 2023/4/24 18:57, Jiri Denemark wrote: > > On Fri, Apr 21, 2023 at 17:39:12 +0800, Jiang Jiacheng wrote: > >> > >> Thank you for your reply and review, I'd appreciate for you to do that. > >> > >> And I'd also like to confirm that

Re: [PATCH 0/2] docs: improve isa-debugcon example

2023-05-18 Thread Ján Tomko
On a Thursday in 2023, Laszlo Ersek wrote: The feature from libvirt 8.1 that the OVMF debug log can be captured with native domain XML elements is super useful, but the example snippet in the documentation is more difficult to use than necessary. Improve it. Cc: "Daniel P. Berrangé" Cc: Andrea

[PATCH 2/2] docs: make isa-debugcon example more useful / directly applicable

2023-05-18 Thread Laszlo Ersek
The type='pty' attribute in the element causes a Pseudo TTY to be allocated on the host side via "/dev/ptmx", which is meant to be interacted with via "virsh console" or similar. That's not how a firmware log is typically viewed or saved. Replace type='pty' with type='file', and also provide an

[PATCH 0/2] docs: improve isa-debugcon example

2023-05-18 Thread Laszlo Ersek
The feature from libvirt 8.1 that the OVMF debug log can be captured with native domain XML elements is super useful, but the example snippet in the documentation is more difficult to use than necessary. Improve it. Cc: "Daniel P. Berrangé" Cc: Andrea Bolognani Thanks! Laszlo Laszlo Ersek

[PATCH 1/2] docs: fix typo in isa-debugcon example

2023-05-18 Thread Laszlo Ersek
The opening tag is paired with the closing tag; that's a mismatch. The question is then whether to modify the former to , or the latter to . Per section "Relationship between serial ports and consoles", is used for emulated (not paravirt) consoles, and it's the type that's suitable for early