All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] automation: align XTF qemu parameters across achitectures
@ 2026-02-02 19:32 dmukhin
  2026-02-02 23:40 ` Stefano Stabellini
  0 siblings, 1 reply; 3+ messages in thread
From: dmukhin @ 2026-02-02 19:32 UTC (permalink / raw)
  To: xen-devel
  Cc: andrew.cooper3, anthony.perard, jbeulich, julien, michal.orzel,
	roger.pau, sstabellini, dmukhin

From: Denis Mukhin <dmukhin@ford.com> 

It is handy to have 2 CPUs and more RAM for smoke testing a hypervisor
change via XTF.

Align x86 QEMU configuration with Arm for XTF tests: 2 CPU and 2G of RAM.

Signed-off-by: Denis Mukhin <dmukhin@ford.com>
---
 automation/scripts/include/xtf-x86-64     | 3 ++-
 automation/scripts/include/xtf-x86-64-efi | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/automation/scripts/include/xtf-x86-64 b/automation/scripts/include/xtf-x86-64
index b1b0cc201efa..186f074bd8eb 100644
--- a/automation/scripts/include/xtf-x86-64
+++ b/automation/scripts/include/xtf-x86-64
@@ -23,7 +23,8 @@ function xtf_arch_setup()
         -nographic \
         -monitor none \
         -serial stdio \
-        -m 512 \
+        -m 2048 \
+        -smp 2 \
         -kernel ${XEN_BINARY} \
         -initrd ${XTF_BINARY} \
         -append \"${XEN_CMDLINE}\" \
diff --git a/automation/scripts/include/xtf-x86-64-efi b/automation/scripts/include/xtf-x86-64-efi
index 8340c745dbf4..15c6463dcdc5 100644
--- a/automation/scripts/include/xtf-x86-64-efi
+++ b/automation/scripts/include/xtf-x86-64-efi
@@ -49,7 +49,8 @@ EOF
         -nographic \
         -monitor none \
         -serial stdio \
-        -m 512 \
+        -m 2048 \
+        -smp 2 \
         -M q35,kernel-irqchip=split \
         -drive if=pflash,format=raw,readonly=on,file=${FW_PREFIX}OVMF_CODE${suff}.fd \
         -drive if=pflash,format=raw,file=${WORKDIR}/OVMF_VARS${suff}.fd \
-- 
2.52.0



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

* Re: [PATCH v1] automation: align XTF qemu parameters across achitectures
  2026-02-02 19:32 [PATCH v1] automation: align XTF qemu parameters across achitectures dmukhin
@ 2026-02-02 23:40 ` Stefano Stabellini
  2026-02-04  2:55   ` dmukhin
  0 siblings, 1 reply; 3+ messages in thread
From: Stefano Stabellini @ 2026-02-02 23:40 UTC (permalink / raw)
  To: dmukhin
  Cc: xen-devel, andrew.cooper3, anthony.perard, jbeulich, julien,
	michal.orzel, roger.pau, sstabellini, dmukhin

On Mon, 1 Feb 2026, dmukhin@xen.org wrote:
> From: Denis Mukhin <dmukhin@ford.com> 
> 
> It is handy to have 2 CPUs and more RAM for smoke testing a hypervisor
> change via XTF.
> 
> Align x86 QEMU configuration with Arm for XTF tests: 2 CPU and 2G of RAM.
> 
> Signed-off-by: Denis Mukhin <dmukhin@ford.com>

Please provide a link to the successful pipeline. With that:

Acked-by: Stefano Stabellini <sstabellini@kernel.org>

> ---
>  automation/scripts/include/xtf-x86-64     | 3 ++-
>  automation/scripts/include/xtf-x86-64-efi | 3 ++-
>  2 files changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/automation/scripts/include/xtf-x86-64 b/automation/scripts/include/xtf-x86-64
> index b1b0cc201efa..186f074bd8eb 100644
> --- a/automation/scripts/include/xtf-x86-64
> +++ b/automation/scripts/include/xtf-x86-64
> @@ -23,7 +23,8 @@ function xtf_arch_setup()
>          -nographic \
>          -monitor none \
>          -serial stdio \
> -        -m 512 \
> +        -m 2048 \
> +        -smp 2 \
>          -kernel ${XEN_BINARY} \
>          -initrd ${XTF_BINARY} \
>          -append \"${XEN_CMDLINE}\" \
> diff --git a/automation/scripts/include/xtf-x86-64-efi b/automation/scripts/include/xtf-x86-64-efi
> index 8340c745dbf4..15c6463dcdc5 100644
> --- a/automation/scripts/include/xtf-x86-64-efi
> +++ b/automation/scripts/include/xtf-x86-64-efi
> @@ -49,7 +49,8 @@ EOF
>          -nographic \
>          -monitor none \
>          -serial stdio \
> -        -m 512 \
> +        -m 2048 \
> +        -smp 2 \
>          -M q35,kernel-irqchip=split \
>          -drive if=pflash,format=raw,readonly=on,file=${FW_PREFIX}OVMF_CODE${suff}.fd \
>          -drive if=pflash,format=raw,file=${WORKDIR}/OVMF_VARS${suff}.fd \
> -- 
> 2.52.0
> 


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

* Re: [PATCH v1] automation: align XTF qemu parameters across achitectures
  2026-02-02 23:40 ` Stefano Stabellini
@ 2026-02-04  2:55   ` dmukhin
  0 siblings, 0 replies; 3+ messages in thread
From: dmukhin @ 2026-02-04  2:55 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: xen-devel, andrew.cooper3, anthony.perard, jbeulich, julien,
	michal.orzel, roger.pau, dmukhin

On Mon, Feb 02, 2026 at 03:40:16PM -0800, Stefano Stabellini wrote:
> On Mon, 1 Feb 2026, dmukhin@xen.org wrote:
> > From: Denis Mukhin <dmukhin@ford.com> 
> > 
> > It is handy to have 2 CPUs and more RAM for smoke testing a hypervisor
> > change via XTF.
> > 
> > Align x86 QEMU configuration with Arm for XTF tests: 2 CPU and 2G of RAM.
> > 
> > Signed-off-by: Denis Mukhin <dmukhin@ford.com>
> 
> Please provide a link to the successful pipeline. With that:

CI run: https://gitlab.com/xen-project/people/dmukhin/xen/-/pipelines/2304311308

> 
> Acked-by: Stefano Stabellini <sstabellini@kernel.org>

Thanks!


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

end of thread, other threads:[~2026-02-04  2:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-02 19:32 [PATCH v1] automation: align XTF qemu parameters across achitectures dmukhin
2026-02-02 23:40 ` Stefano Stabellini
2026-02-04  2:55   ` dmukhin

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.