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: [pve-devel] [PATCH manager 04/10] ui: qemu: make scsi hw selector architecture aware
Date: Wed, 28 Jan 2026 13:18:05 +0100	[thread overview]
Message-ID: <20260128123035.2576774-5-d.csapak@proxmox.com> (raw)
In-Reply-To: <20260128123035.2576774-1-d.csapak@proxmox.com>

e.g. on aarch64 it makes only sense to use virtio-scsi or
virtio-scsi-single, so hide all other values, by adding a filter on the
internal store that allows only certain values.

Default to 'x86_64' for the architecture.

By using a setter for 'nodename' and 'arch' this also works in a
context where we can bind the values to these fields, e.g. in the wizard.

To properly trigger validation, we have to check the state before and
after setting the filter, since just a filter change, does not trigger
a validity change in the form field it seems.

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
 www/manager6/form/ScsiHwSelector.js | 63 +++++++++++++++++++++++++++++
 www/manager6/qemu/ScsiHwEdit.js     |  1 +
 www/manager6/qemu/SystemEdit.js     |  2 +
 3 files changed, 66 insertions(+)

diff --git a/www/manager6/form/ScsiHwSelector.js b/www/manager6/form/ScsiHwSelector.js
index d35a5b3a..10d9f4db 100644
--- a/www/manager6/form/ScsiHwSelector.js
+++ b/www/manager6/form/ScsiHwSelector.js
@@ -10,4 +10,67 @@ Ext.define('PVE.form.ScsiHwSelector', {
         ['virtio-scsi-single', PVE.Utils.render_scsihw('virtio-scsi-single')],
         ['pvscsi', PVE.Utils.render_scsihw('pvscsi')],
     ],
+
+    controllersPerArchitecture: {
+        x86_64: [
+            '__default__',
+            'lsi',
+            'lsi53c810',
+            'megasas',
+            'virtio-scsi-pci',
+            'virtio-scsi-single',
+            'pvscsi',
+        ],
+        aarch64: ['virtio-scsi-pci', 'virtio-scsi-single'],
+    },
+
+    // defaults to hostArch
+    arch: undefined,
+
+    // depends on the node
+    hostArch: 'x86_64',
+
+    nodename: undefined,
+
+    setNodename: function (nodename) {
+        let me = this;
+        let node = PVE.data.ResourceStore.getNodeById(nodename);
+        if (node) {
+            me.hostArch = node.data.architecture;
+            me.setArch(me.arch); // recalculate the filter
+        }
+    },
+
+    setArch: function (arch) {
+        let me = this;
+        if (arch === '__default__') {
+            arch = undefined;
+        }
+        me.arch = arch;
+        arch ??= me.hostArch;
+        let wasValid = me.isValid();
+        me.store.clearFilter();
+        let allowedControllers = me.controllersPerArchitecture[arch];
+        me.store.addFilter((rec) => allowedControllers.indexOf(rec.data.key) !== -1);
+        // update default value with new arch
+        let record = me.store.findRecord('key', '__default__');
+        if (record) {
+            record.set('value', PVE.Utils.render_scsihw('', arch));
+            record.commit();
+        }
+        let isValid = me.isValid();
+
+        // for some reason, adding/changing filters does not trigger this, even though
+        // it show the field as invalid, so simply track and fire the event manually.
+        if (wasValid !== isValid) {
+            me.fireEvent('validitychange', isValid);
+        }
+    },
+
+    initComponent: function () {
+        let me = this;
+
+        me.callParent();
+        me.setArch(me.arch);
+    },
 });
diff --git a/www/manager6/qemu/ScsiHwEdit.js b/www/manager6/qemu/ScsiHwEdit.js
index 48dcb228..212343c0 100644
--- a/www/manager6/qemu/ScsiHwEdit.js
+++ b/www/manager6/qemu/ScsiHwEdit.js
@@ -11,6 +11,7 @@ Ext.define('PVE.qemu.ScsiHwEdit', {
                 name: 'scsihw',
                 value: '__default__',
                 fieldLabel: gettext('Type'),
+                arch: me.arch,
             },
         });
 
diff --git a/www/manager6/qemu/SystemEdit.js b/www/manager6/qemu/SystemEdit.js
index 2cf17e8e..a2ad8494 100644
--- a/www/manager6/qemu/SystemEdit.js
+++ b/www/manager6/qemu/SystemEdit.js
@@ -140,6 +140,8 @@ Ext.define('PVE.qemu.SystemInputPanel', {
             value: '__default__',
             bind: {
                 value: '{current.scsihw}',
+                arch: '{current.architecture}',
+                nodename: '{nodename}',
             },
             fieldLabel: gettext('SCSI Controller'),
         },
-- 
2.47.3



_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel


  parent reply	other threads:[~2026-01-28 12:30 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-28 12:18 [pve-devel] [PATCH manager 00/10] enable qemu vm architecture selection Dominik Csapak
2026-01-28 12:18 ` [pve-devel] [PATCH manager 01/10] api/pvestatd: broadcast and expose non-x86 host architecture Dominik Csapak
2026-01-28 16:05   ` Fiona Ebner
2026-01-29  9:20     ` Dominik Csapak
2026-01-28 12:18 ` [pve-devel] [PATCH manager 02/10] ui: resource store: add architecture field Dominik Csapak
2026-01-28 12:18 ` [pve-devel] [PATCH manager 03/10] ui: qemu: add architecture field in wizard and hardware view Dominik Csapak
2026-01-28 16:32   ` Fiona Ebner
2026-01-28 12:18 ` Dominik Csapak [this message]
2026-01-28 12:18 ` [pve-devel] [PATCH manager 05/10] ui: qemu: make osdefaults architecture aware Dominik Csapak
2026-01-29  9:25   ` Fiona Ebner
2026-01-28 12:18 ` [pve-devel] [PATCH manager 06/10] ui: qemu: make os type selector " Dominik Csapak
2026-01-29  9:41   ` Fiona Ebner
2026-01-29  9:47     ` Dominik Csapak
2026-01-29 12:09       ` Fiona Ebner
2026-01-29 10:18     ` Dominik Csapak
2026-01-29 12:10       ` Fiona Ebner
2026-01-28 12:18 ` [pve-devel] [PATCH manager 07/10] ui: qemu: make machine panels/fields " Dominik Csapak
2026-01-29 11:12   ` Fiona Ebner
2026-01-29 12:16     ` Dominik Csapak
2026-01-29 12:25       ` Fiona Ebner
2026-01-28 12:18 ` [pve-devel] [PATCH manager 08/10] ui: qemu: make bios selector " Dominik Csapak
2026-01-28 12:18 ` [pve-devel] [PATCH manager 09/10] ui: qemu: make sortByPreviousUsage " Dominik Csapak
2026-01-28 12:18 ` [pve-devel] [PATCH manager 10/10] ui: qemu: wizard: use defaults to populate machine and bios Dominik Csapak
2026-01-29 13:13 ` [pve-devel] [PATCH manager 00/10] enable qemu vm architecture selection Fiona Ebner
2026-01-29 13:15   ` Fiona Ebner

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=20260128123035.2576774-5-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