Re: [XEN PATCH v2 1/1] tools: init scripts: Add missing XENCONSOLED_ARGS variable

2024-03-25 Thread Rafaël Kooi
On 25/03/2024 11:32, Anthony PERARD wrote: On Wed, Mar 20, 2024 at 08:48:33AM +0100, Rafaël Kooi wrote: The systemd xenconsoled.service uses the XENCONSOLED_ARGS variable, but it was missing from the xencommons file. Actually, I'm tempted to go the other way and remove XENCONSOLED_ARGS

Re: [XEN PATCH v2 0/1] tools: init scripts: Add missing XENCONSOLED_ARGS variable to xencommons

2024-03-20 Thread Rafaël Kooi
On 20/03/2024 09:35, Jan Beulich wrote:> If you send using Outlook, why don't you simply send the patch(es) as replies to the cover letter? That's what I'm doing using Thunderbird (i.e. like you I'm not using "git send-email"). Jan I do use "git send-email" actually, I have it set up to use t

Re: [XEN PATCH v2 0/1] tools: init scripts: Add missing XENCONSOLED_ARGS variable to xencommons

2024-03-20 Thread Rafaël Kooi
On 20/03/2024 08:55, Jan Beulich wrote: On 20.03.2024 08:48, Rafaël Kooi wrote: V2: Now without test emails ending up on the mailing list. And with the correct title prefix. I noticed that the systemd services referenced the XENCONSOLED_ARGS variable, but it was missing from xencommons. I

[XEN PATCH v2 0/1] tools: init scripts: Add missing XENCONSOLED_ARGS variable to xencommons

2024-03-20 Thread Rafaël Kooi
to modify this variable. It turned out to not be the case, but I figure it's good to include this for sake of completeness. Rafaël Kooi (1): tools: init scripts: Add missing XENCONSOLED_ARGS variable tools/hotplug/Linux/init.d/sysconfig.xencommons.in | 6 ++ 1 file changed, 6 inser

[XEN PATCH v2 1/1] tools: init scripts: Add missing XENCONSOLED_ARGS variable

2024-03-20 Thread Rafaël Kooi
The systemd xenconsoled.service uses the XENCONSOLED_ARGS variable, but it was missing from the xencommons file. Signed-off-by: Rafaël Kooi --- tools/hotplug/Linux/init.d/sysconfig.xencommons.in | 6 ++ 1 file changed, 6 insertions(+) diff --git a/tools/hotplug/Linux/init.d

Re: [XEN PATCH 1/1] tools/xenstore: Add missing XENCONSOLED_ARGS variable

2024-03-20 Thread Rafaël Kooi
On 20/03/2024 08:30, Jan Beulich wrote: On 20.03.2024 08:15, Rafaël Kooi wrote: The systemd xenconsoled.service uses the XENCONSOLED_ARGS variable, but it was missing from the xencommons file. As to the title prefix: How does xenstore come into play here? Jan I don't actually remember,

Re: [XEN PATCH 0/1] tools/xenstore: Add missing XENCONSOLED_ARGS

2024-03-20 Thread Rafaël Kooi
to do it right next time. Best regards, Rafaël Kooi

[XEN PATCH 0/1] tools/xenstore: Add missing XENCONSOLED_ARGS

2024-03-20 Thread Rafaël Kooi
clude this for sake of completeness. Rafaël Kooi (1): tools/xenstore: Add missing XENCONSOLED_ARGS variable tools/hotplug/Linux/init.d/sysconfig.xencommons.in | 6 ++ 1 file changed, 6 insertions(+) -- 2.44.0

[XEN PATCH 1/1] tools/xenstore: Add missing XENCONSOLED_ARGS variable

2024-03-20 Thread Rafaël Kooi
The systemd xenconsoled.service uses the XENCONSOLED_ARGS variable, but it was missing from the xencommons file. Signed-off-by: Rafaël Kooi --- tools/hotplug/Linux/init.d/sysconfig.xencommons.in | 6 ++ 1 file changed, 6 insertions(+) diff --git a/tools/hotplug/Linux/init.d

Re: DROPME [XEN PATCH 0/2] Use streaming decompression for ZSTD kernels

2023-05-10 Thread Rafaël Kooi
On 10/05/2023 02:18, Rafaël Kooi wrote:> I've attempted to get Xen to boot Arch Linux as a unified EFI binary. Using https://xenbits.xen.org/docs/unstable/misc/efi.html as my source of information, I've been able to build a unified binary. When trying to boot the kernel Xen compl

Re: [XEN PATCH 2/2] x86/Dom0: Use streaming decompression for ZSTD compressed kernels

2023-05-10 Thread Rafaël Kooi
On 10/05/2023 11:48, Jan Beulich wrote:> First of all - please don't drop Cc-s when replying. I'm restoring xen-devel@ here at least. Apologies, I didn't notice that replying dropped the Cc-s. Should I send the emails again with the proper Cc-s? On 10.05.2023 10:51, Rafa

[XEN PATCH 2/2] x86/Dom0: Use streaming decompression for ZSTD compressed kernels

2023-05-09 Thread Rafaël Kooi
On Arch Linux kernel decompression will fail when Xen has been unified with the kernel and initramfs as a single binary. This change works for both streaming and non-streaming ZSTD content. Signed-off-by: Rafaël Kooi --- xen/common/decompress.c | 37 +++-- 1 file

[XEN PATCH 1/2] xen/decompress: Add a user pointer for book keeping in the callbacks

2023-05-09 Thread Rafaël Kooi
s for localized book keeping with the user pointer. Signed-off-by: Rafaël Kooi --- xen/common/bunzip2.c | 23 +-- xen/common/unlz4.c | 15 --- xen/common/unlzma.c | 30 ++ xen/common/unlzo.c

[XEN PATCH 0/2] Use streaming decompression for ZSTD kernels

2023-05-09 Thread Rafaël Kooi
e internal decompression API. Rafaël Kooi (2): xen/decompress: Add a user pointer for book keeping in the callbacks x86/Dom0: Use streaming decompression for ZSTD compressed kernels xen/common/bunzip2.c | 23 -- xen/common/decompress.c | 37 ++