public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: Dominik Csapak <d.csapak@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: [PATCH manager v2 17/17] ui: qemu: change ui default for cpu model
Date: Tue,  3 Feb 2026 11:00:22 +0100	[thread overview]
Message-ID: <20260203102118.1430545-18-d.csapak@proxmox.com> (raw)
In-Reply-To: <20260203102118.1430545-1-d.csapak@proxmox.com>

in the wizard, we already choose 'x86-64-v2-AES' by default for new vms,
but the backend default (kvm64) is very easy to select by emptying the
field.

Since that default is actually discouraged (but can't be changed as
backend default easily), use the wizard default as default for all
occurrences of the cpu model selector (making it much harder to
accidentally select 'kvm64').

While at it, document the 'default' cpu types in Utils, and use it to
set the correct emptyText for earch architecture.

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
 www/manager6/form/CPUModelSelector.js | 26 ++++++++++++++++++++++++++
 www/manager6/qemu/OSDefaults.js       |  1 -
 www/manager6/qemu/ProcessorEdit.js    | 13 ++++++++++++-
 3 files changed, 38 insertions(+), 2 deletions(-)

diff --git a/www/manager6/form/CPUModelSelector.js b/www/manager6/form/CPUModelSelector.js
index 602706e7..a55d473e 100644
--- a/www/manager6/form/CPUModelSelector.js
+++ b/www/manager6/form/CPUModelSelector.js
@@ -20,6 +20,28 @@ Ext.define('PVE.form.CPUModelSelector', {
 
     deleteEmpty: true,
 
+    getSubmitData: function () {
+        let me = this,
+            data = null,
+            val;
+        if (!me.disabled && me.submitValue) {
+            val = me.getSubmitValue();
+            if (val !== null && val !== '' && val !== undefined) {
+                data = {};
+                data[me.getName()] = val;
+            } else if (me.getDeleteEmpty()) {
+                data = {};
+                // special case to change gui default for x86
+                if (me.arch === 'x86_64') {
+                    data[me.getName()] = PVE.qemu.Architecture.defaultProcessorModel.x86_64;
+                } else {
+                    data.delete = me.getName();
+                }
+            }
+        }
+        return data;
+    },
+
     listConfig: {
         columns: [
             {
@@ -51,6 +73,10 @@ Ext.define('PVE.form.CPUModelSelector', {
         }
         me.store.getProxy().setExtraParams(params);
         me.store.reload();
+
+        let defaultCPU = PVE.qemu.Architecture.defaultProcessorModel[arch] ?? 'kvm64';
+
+        me.setEmptyText(`${Proxmox.Utils.defaultText} (${defaultCPU})`);
     },
 
     store: {
diff --git a/www/manager6/qemu/OSDefaults.js b/www/manager6/qemu/OSDefaults.js
index a2c218df..bd652e2f 100644
--- a/www/manager6/qemu/OSDefaults.js
+++ b/www/manager6/qemu/OSDefaults.js
@@ -52,7 +52,6 @@ Ext.define('PVE.qemu.OSDefaults', {
                     virtio: 1,
                 },
                 scsihw: 'virtio-scsi-single',
-                cputype: 'x86-64-v2-AES',
             },
 
             aarch64: {
diff --git a/www/manager6/qemu/ProcessorEdit.js b/www/manager6/qemu/ProcessorEdit.js
index e1383c3f..52b8074c 100644
--- a/www/manager6/qemu/ProcessorEdit.js
+++ b/www/manager6/qemu/ProcessorEdit.js
@@ -305,8 +305,19 @@ Ext.define('PVE.qemu.ProcessorEdit', {
                         vm.set('showCustomModelPermWarning', true);
                     }
                 }
-                me.setValues(data);
                 let arch = PVE.qemu.Architecture.getNodeArchitecture(data.arch, me.nodename);
+                // change default cputype for x86 in gui only
+                if (arch === 'x86_64') {
+                    if (!data.cputype) {
+                        // use our backend default as explicit value
+                        data.cputype = 'kvm64';
+                    } else if (
+                        data.cputype === PVE.qemu.Architecture.defaultProcessorModel.x86_64
+                    ) {
+                        delete data.cputype;
+                    }
+                }
+                me.setValues(data);
                 ipanel.setArch(arch);
             },
         });
-- 
2.47.3





  parent reply	other threads:[~2026-02-03 10:21 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-03 10:00 [PATCH manager v2 00/17] enable qemu vm architecture selection Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 01/17] api/pvestatd: broadcast and expose non-x86 host architecture Dominik Csapak
2026-02-03 13:56   ` Thomas Lamprecht
2026-02-03 15:07   ` Thomas Lamprecht
2026-02-03 10:00 ` [PATCH manager v2 02/17] ui: qemu: wizard: refactor ostype and cd selector into an OSPanel Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 03/17] ui: form: add filtered KVComboBox Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 04/17] ui: resource store: add architecture field Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 05/17] ui: qemu: add architecture specific defaults and helpers Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 06/17] ui: qemu: add architecture field in wizard and hardware view Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 07/17] ui: qemu: make scsi hw selector architecture aware Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 08/17] ui: qemu: make osdefaults " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 09/17] ui: qemu: make os type selector " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 10/17] ui: qemu: make machine panels/fields " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 11/17] ui: qemu: make bios selector " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 12/17] ui: qemu: make sortByPreviousUsage " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 13/17] ui: qemu: wizard: use defaults to populate machine and bios Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 14/17] ui: qemu: wizard: make iso confid architecture specific Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 15/17] ui: qemu: make bus selector architecture aware Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 16/17] ui: qemu: make processor edit " Dominik Csapak
2026-02-03 10:00 ` Dominik Csapak [this message]
2026-02-03 10:56 ` [PATCH manager v2 00/17] enable qemu vm architecture selection Dominik Csapak
2026-02-03 13:34 ` Thomas Lamprecht

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260203102118.1430545-18-d.csapak@proxmox.com \
    --to=d.csapak@proxmox.com \
    --cc=pve-devel@lists.proxmox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal