Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qemu for openSUSE:Factory checked in 
at 2022-11-18 15:43:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qemu (Old)
 and      /work/SRC/openSUSE:Factory/.qemu.new.1597 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "qemu"

Fri Nov 18 15:43:03 2022 rev:240 rq:1036445 version:7.1.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/qemu/qemu.changes        2022-11-10 
14:21:38.062128912 +0100
+++ /work/SRC/openSUSE:Factory/.qemu.new.1597/qemu.changes      2022-11-18 
15:43:32.874565985 +0100
@@ -1,0 +2,7 @@
+Wed Nov 16 12:29:15 UTC 2022 - Dario Faggioli <dfaggi...@suse.com>
+
+- Raise the maximum number of vCPUs a VM can have to 1024 (jsc#PED-2592)
+* Patches added:
+  pc-q35-Bump-max_cpus-to-1024.patch
+
+-------------------------------------------------------------------

New:
----
  pc-q35-Bump-max_cpus-to-1024.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ qemu.spec ++++++
--- /var/tmp/diff_new_pack.GzYDoR/_old  2022-11-18 15:43:34.582573489 +0100
+++ /var/tmp/diff_new_pack.GzYDoR/_new  2022-11-18 15:43:34.586573506 +0100
@@ -194,6 +194,7 @@
 Patch00031:     meson-enforce-a-minimum-Linux-kernel-hea.patch
 Patch00032:     linux-user-drop-conditionals-for-obsolet.patch
 Patch00033:     block-io_uring-revert-Use-io_uring_regis.patch
+Patch00034:     pc-q35-Bump-max_cpus-to-1024.patch
 # Patches applied in roms/seabios/:
 Patch01000:     seabios-switch-to-python3-as-needed.patch
 Patch01001:     enable-cross-compilation-on-ARM.patch


++++++ bundles.tar.xz ++++++
Binary files old/621da7789083b80d6f1ff1c0fb499334007b4f51.bundle and 
new/621da7789083b80d6f1ff1c0fb499334007b4f51.bundle differ
Binary files old/roms/seabios/d239552ce7220e448ae81f41515138f7b9e3c4db.bundle 
and new/roms/seabios/d239552ce7220e448ae81f41515138f7b9e3c4db.bundle differ

++++++ pc-q35-Bump-max_cpus-to-1024.patch ++++++
From: Dario Faggioli <dfaggi...@suse.com>
Date: Wed, 16 Nov 2022 13:24:36 +0100
Subject: pc: q35: Bump max_cpus to 1024

References: jsc#PED-2592
Git-commit: 0000000000000000000000000000000000000000

And use the new limit for machine version 7.1 too.
Keep the old limit of 288 for machine versions 7.0 and earlier.

Signed-off-by: Dario Faggioli <dfaggi...@suse.com>
---
 hw/i386/pc_q35.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
index 2e5dae9a89faaf0d9c285b030ed7..6875e27b508cccd6891e2db58b68 100644
--- a/hw/i386/pc_q35.c
+++ b/hw/i386/pc_q35.c
@@ -367,7 +367,7 @@ static void pc_q35_machine_options(MachineClass *m)
     machine_class_allow_dynamic_sysbus_dev(m, TYPE_INTEL_IOMMU_DEVICE);
     machine_class_allow_dynamic_sysbus_dev(m, TYPE_RAMFB_DEVICE);
     machine_class_allow_dynamic_sysbus_dev(m, TYPE_VMBUS_BRIDGE);
-    m->max_cpus = 288;
+    m->max_cpus = 1024;
 }
 
 static void pc_q35_7_1_machine_options(MachineClass *m)
@@ -388,6 +388,7 @@ static void pc_q35_7_0_machine_options(MachineClass *m)
     pc_q35_7_1_machine_options(m);
     m->alias = NULL;
     pcmc->enforce_amd_1tb_hole = false;
+    m->max_cpus = 288;
     compat_props_add(m->compat_props, hw_compat_7_0, hw_compat_7_0_len);
     compat_props_add(m->compat_props, pc_compat_7_0, pc_compat_7_0_len);
 }

Reply via email to