public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: David Riley <d.riley@proxmox.com>
To: Arthur Bied-Charreton <a.bied-charreton@proxmox.com>,
	pve-devel@lists.proxmox.com
Subject: Re: [PATCH docs/manager/qemu-server v4 00/17] Add API and UI for custom CPU models
Date: Wed, 6 May 2026 16:31:05 +0200	[thread overview]
Message-ID: <519f4203-a378-479f-a3ba-41d62bed672b@proxmox.com> (raw)
In-Reply-To: <20260430160109.565536-1-a.bied-charreton@proxmox.com>

Thanks for the patch. This seems to be a nice addition.

I’ve tested the series and found a regression in the VM creation
wizard. When creating a Windows guest with the 'Add additional drive
for VirtIO drivers' checkbox enabled and an ISO Image is added,
the creation fails with:

'Parameter verification failed. (400) ide0:
explicit media=cdrom is required for iso images'

Looking at the request payload, the 'media=cdrom' property is missing
for the VirtIO ISO:

   Before: ide0: "sani:iso/virtio-win-0.1.271.iso,media=cdrom"
   Now: ide0: "sani:iso/virtio-win-0.1.271.iso"

I also noticed that the wizard now defaults to the IDE bus for disks
instead of SCSI, when the Guest OS Type Microsoft Windows is selected.


On 4/30/26 5:59 PM, Arthur Bied-Charreton wrote:
> This picks up and extends an old series [0] by Stefan Reiter.
>
> This series adds a full CRUD API and a UI editor for custom CPU models
> which allows users to manage them in the Datacenter interface rather
> than editing /etc/pve/virtual-guest/cpu-models.conf manually.
>
> It also improves on the existing VM CPU flags selector by providing a
> list of nodes supporting each flag to help gauge cluster compatibility.
>
> qemu-server gets a new CPUFlags module grouping cpu-flags-related
> helpers. A new helper (query_available_cpu_flags) is introduced, which
> derives the set of flags accepted by QEMU as -cpu arguments and
> annotates each with the cluster nodes that report supporting it. The
> existing node-level endpoint is extended with an accel parameter to
> filter flags by acceleration type. Its default behavior is preserved
> modulo the added 'supported-on' field per flag in the return value.
>
> pve-manager gets two new cluster-level endpoints:
>
> 1. /cluster/qemu/cpu-flags queries flags available across the cluster
>     and reports which node supports each of them. It differs from the
>     node-level endpoint in qemu-server in that it returns *all* flags,
>     as opposed to the VM-specific ones.
>
> 2. /cluster/qemu/custom-cpu-models provides full CRUD for custom CPU
>     model definitions.
>
> The UI gets a "Custom CPU models" view in the Datacenter panel (at the
> bottom under "Guest Resources/Hardware") with an editor for model
> properties. The flags can now be filtered by acceleration type when
> creating a new VM or custom CPU model, and it is pre-selected based on
> the VM's KVM config key when editing a pre-existing VM's CPU. The CPU
> flags selector is also improved with the option to filter out flags
> that are not supported anywhere in the cluster.
>
> Dependencies:
>   pve-manager requires bumped pve-docs
>   pve-manager requires bumped qemu-server
>
> Changes since v1:
>   - Reorder patches according to dependency directions
>
>   qemu-server:
>    - Rebase
>    - Add preparatory commit renaming $default_filename to
>      $cpu_models_filename
>    - Squash helpers into commits with their first users
>    - Drop unrelated formatting change
>    - Move cluster-wide cpu-flags to pve-manager, related changes in
>      pve-manager changelog, keep vm-specific cpu-flags endpoint
>    - Return all flags from cpu-flags endpoint, not only the ones with at
>      least one node supporting them - allow filtering for that in the UI
>    - Return only VM-specific cpu-flags by default in node-specific endpoint
>    - Add acceleration type filter to cpu-flags endpoint, defaulting to kvm
>    - Document why no flags are currently returned for aarch64
>    - Only add nested-virt to flags for hosts that support one of svm/vmx
>    - Rename extract_flags to query_available_cpu_flags
>    - Remove web references from doc comments
>    - Refactor query_available_cpu_flags to a more imperative style
>    - Move custom CPU models CRUD endpoints to pve-manager, related changes
>      in pve-manager changelog
>    - Introduce QemuServer::CPUFlags module grouping flags-related helpers
>    - Add flag_is_aliased helper to identify flags covered by nested-virt
>
>   pve-manager:
>    - Rebase
>    - Drop unneeded dirty state fix from original series
>    - Update unknown flags behavior to
>      1. Show unknown flags at the top of the list in the UI
>      2. Add a description to unknown flags signaling that the flag is not
>      recognized in the cluster/for the currently selected acceleration type
>    - Rename allowCustom CPU model selector config field to showCustomModels
>    - Change "Reported Model" to "Base Model" in the UI
>    - Link directly to "CPU Type" section in onlineHelp refs
>    - Improve message in remove confirm dialog for custom CPU models
>    - Move "Custom CPU Models" further down in Datacenter menu, and group it
>      with "{Directory,Resource} Mappings" under "Guest Resources/Hardware"
>    - Default VM-specific CPU flags selection to KVM during creation, and
>      pre-select/lock it based on the VM's configured acceleration when
>      editing
>    - Remove hardcoded list of VM-specific flags in frontend
>    - Change 'Set' to 'Value' in VMCpuFlagSelector
>    - Use "" instead of `` for user-facing strings
>    - Add search bar for long lists of CPU flags
>    - Return all flags from the backend, not only the ones with at least one
>      node supporting them - allow filtering for that in the UI
>    - Show svm/vmx in cpu-flags list regardless of overlap with nested-virt
>    - Add endpoint for querying CPU flags cluster-wide
>    (`/cluster/qemu/cpu-flags`)
>    - Document missing supported flags for `aarch64`
>    - Add CRUD endpoint for custom CPU models
>    (`/cluster/qemu/custom-cpu-models`)
>
>   pve-docs:
>    - Add qm_cpu_type anchor to CPU Type section in qm.adoc
>
> Changes since v2:
>   - Rebase all repos
>   - Remove JS component names from commit subjects
>
>   pve-manager:
>    - Avoid losing flags that were set while "Show only flags supported by
>      at least one node" was not checked when checking it again
>    - Avoid overwriting the whole extraParams in setArch
>
> Changes since v3:
>   - Fix custom CPU model create requests by cleaning empty optional
>     values in the input panel value hook and dropping the unsupported
>     delete param on create
>
> [0] https://lore.proxmox.com/pve-devel/20211028114150.3245864-1-s.reiter@proxmox.com/
>
>
> pve-docs:
>
> Arthur Bied-Charreton (1):
>    qm: add anchor to "CPU Type" section
>
>   qm.adoc | 1 +
>   1 file changed, 1 insertion(+)
>
>
> qemu-server:
>
> Arthur Bied-Charreton (7):
>    cpu config: rename CPU models config path variable
>    cpu flags: move cpu flags-related utilities to their own module
>    cpu flags: add helper querying CPU flags with nodes supporting them
>    cpu config: add helpers to lock and write config
>    cpu: register standard option for CPU format
>    cpu config: set 'type' field before writing
>    cpu flags: improve flags list returned by endpoint
>
>   src/PVE/API2/Qemu/CPUFlags.pm   |  27 +++-
>   src/PVE/QemuServer.pm           |  24 +---
>   src/PVE/QemuServer/CPUConfig.pm | 110 +++------------
>   src/PVE/QemuServer/CPUFlags.pm  | 230 ++++++++++++++++++++++++++++++++
>   src/PVE/QemuServer/Makefile     |   1 +
>   5 files changed, 280 insertions(+), 112 deletions(-)
>   create mode 100644 src/PVE/QemuServer/CPUFlags.pm
>
>
> pve-manager:
>
> Arthur Bied-Charreton (9):
>    api: add endpoint querying available CPU flags cluster-wide
>    api: add CRUD handlers for custom CPU models
>    ui: cpu model selector: allow filtering out custom models
>    ui: add basic custom CPU model editor
>    ui: cpu flags selector: add CPU flag editor for custom models
>    ui: cpu flags selector: fix buffered rendering error
>    ui: cpu flags selector: allow filtering out flags supported on 0 nodes
>    ui: cpu flags selector: add search bar for large lists of flags
>    RFC: ui: group custom CPU with resource mappings
>
>   PVE/API2/Cluster.pm                      |   7 +
>   PVE/API2/Cluster/Makefile                |   4 +-
>   PVE/API2/Cluster/Qemu.pm                 |  47 ++++
>   PVE/API2/Cluster/Qemu/CPUFlags.pm        |  68 +++++
>   PVE/API2/Cluster/Qemu/CustomCPUModels.pm | 211 ++++++++++++++++
>   PVE/API2/Cluster/Qemu/Makefile           |  18 ++
>   www/css/ext6-pve.css                     |   4 +
>   www/manager6/Makefile                    |   3 +
>   www/manager6/dc/CPUTypeEdit.js           | 105 ++++++++
>   www/manager6/dc/CPUTypeView.js           | 149 +++++++++++
>   www/manager6/dc/Config.js                |  27 ++
>   www/manager6/form/CPUModelSelector.js    |  11 +
>   www/manager6/form/PhysBitsSelector.js    | 153 +++++++++++
>   www/manager6/form/VMCPUFlagSelector.js   | 308 ++++++++++++++++++++---
>   www/manager6/qemu/ProcessorEdit.js       |   6 +
>   15 files changed, 1090 insertions(+), 31 deletions(-)
>   create mode 100644 PVE/API2/Cluster/Qemu.pm
>   create mode 100644 PVE/API2/Cluster/Qemu/CPUFlags.pm
>   create mode 100644 PVE/API2/Cluster/Qemu/CustomCPUModels.pm
>   create mode 100644 PVE/API2/Cluster/Qemu/Makefile
>   create mode 100644 www/manager6/dc/CPUTypeEdit.js
>   create mode 100644 www/manager6/dc/CPUTypeView.js
>   create mode 100644 www/manager6/form/PhysBitsSelector.js
>
>
> Summary over all repositories:
>    21 files changed, 1371 insertions(+), 143 deletions(-)
>




  parent reply	other threads:[~2026-05-06 14:31 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-30 16:00 [PATCH docs/manager/qemu-server v4 00/17] Add API and UI for custom CPU models Arthur Bied-Charreton
2026-04-30 16:00 ` [PATCH pve-docs v4 01/17] qm: add anchor to "CPU Type" section Arthur Bied-Charreton
2026-05-07 10:34   ` Fiona Ebner
2026-04-30 16:00 ` [PATCH qemu-server v4 02/17] cpu config: rename CPU models config path variable Arthur Bied-Charreton
2026-05-07 10:57   ` Fiona Ebner
2026-04-30 16:00 ` [PATCH qemu-server v4 03/17] cpu flags: move cpu flags-related utilities to their own module Arthur Bied-Charreton
2026-05-07 11:15   ` Fiona Ebner
2026-04-30 16:00 ` [PATCH qemu-server v4 04/17] cpu flags: add helper querying CPU flags with nodes supporting them Arthur Bied-Charreton
2026-05-07 11:57   ` Fiona Ebner
2026-04-30 16:00 ` [PATCH qemu-server v4 05/17] cpu config: add helpers to lock and write config Arthur Bied-Charreton
2026-05-07 12:06   ` Fiona Ebner
2026-04-30 16:00 ` [PATCH qemu-server v4 06/17] cpu: register standard option for CPU format Arthur Bied-Charreton
2026-05-07 12:11   ` Fiona Ebner
2026-05-07 14:01     ` Arthur Bied-Charreton
2026-05-07 14:08       ` Fiona Ebner
2026-05-08  6:40         ` Arthur Bied-Charreton
2026-04-30 16:00 ` [PATCH qemu-server v4 07/17] cpu config: set 'type' field before writing Arthur Bied-Charreton
2026-05-07 12:24   ` Fiona Ebner
2026-05-08  7:48     ` Arthur Bied-Charreton
2026-04-30 16:01 ` [PATCH qemu-server v4 08/17] cpu flags: improve flags list returned by endpoint Arthur Bied-Charreton
2026-05-07 13:10   ` Fiona Ebner
2026-04-30 16:01 ` [PATCH pve-manager v4 09/17] api: add endpoint querying available CPU flags cluster-wide Arthur Bied-Charreton
2026-05-07 13:29   ` Fiona Ebner
2026-04-30 16:01 ` [PATCH pve-manager v4 10/17] api: add CRUD handlers for custom CPU models Arthur Bied-Charreton
2026-05-07 14:02   ` Fiona Ebner
2026-04-30 16:01 ` [PATCH pve-manager v4 11/17] ui: cpu model selector: allow filtering out custom models Arthur Bied-Charreton
2026-04-30 16:01 ` [PATCH pve-manager v4 12/17] ui: add basic custom CPU model editor Arthur Bied-Charreton
2026-04-30 16:01 ` [PATCH pve-manager v4 13/17] ui: cpu flags selector: add CPU flag editor for custom models Arthur Bied-Charreton
2026-04-30 16:01 ` [PATCH pve-manager v4 14/17] ui: cpu flags selector: fix buffered rendering error Arthur Bied-Charreton
2026-04-30 16:01 ` [PATCH pve-manager v4 15/17] ui: cpu flags selector: allow filtering out flags supported on 0 nodes Arthur Bied-Charreton
2026-04-30 16:01 ` [PATCH pve-manager v4 16/17] ui: cpu flags selector: add search bar for large lists of flags Arthur Bied-Charreton
2026-04-30 16:01 ` [PATCH pve-manager v4 17/17] RFC: ui: group custom CPU with resource mappings Arthur Bied-Charreton
2026-05-06 14:31 ` David Riley [this message]
2026-05-07  7:14   ` [PATCH docs/manager/qemu-server v4 00/17] Add API and UI for custom CPU models Arthur Bied-Charreton

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=519f4203-a378-479f-a3ba-41d62bed672b@proxmox.com \
    --to=d.riley@proxmox.com \
    --cc=a.bied-charreton@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