public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: Fiona Ebner <f.ebner@proxmox.com>
To: Arthur Bied-Charreton <a.bied-charreton@proxmox.com>,
	pve-devel@lists.proxmox.com
Subject: Re: [PATCH qemu-server v4 08/17] cpu flags: improve flags list returned by endpoint
Date: Thu, 7 May 2026 15:10:01 +0200	[thread overview]
Message-ID: <d207bc53-57c6-4dcb-af75-87393477ba48@proxmox.com> (raw)
In-Reply-To: <20260430160109.565536-9-a.bied-charreton@proxmox.com>

Am 30.04.26 um 6:01 PM schrieb Arthur Bied-Charreton:
> Enhance the cpu-flags endpoint's list of flags by using the new
> query_available_cpu_flags utility, which for each flag, additionally
> returns a list of nodes supporting it, e.g.:
> 
> ```
> name: 'aes',
> 'supported-on': ['node1', 'node2'],
> description: '...',
> ```
> 
> An `accel` parameter selects the acceleration type, `kvm` (default) or
> `tcg` for which flag to node compatibility is evaluated.

Typo: s/to/the/

> 
> Signed-off-by: Arthur Bied-Charreton <a.bied-charreton@proxmox.com>
> ---
>  src/PVE/API2/Qemu/CPUFlags.pm | 27 +++++++++++++++++++++++----
>  1 file changed, 23 insertions(+), 4 deletions(-)
> 
> diff --git a/src/PVE/API2/Qemu/CPUFlags.pm b/src/PVE/API2/Qemu/CPUFlags.pm
> index 672bd2d2..122f0ed9 100644
> --- a/src/PVE/API2/Qemu/CPUFlags.pm
> +++ b/src/PVE/API2/Qemu/CPUFlags.pm
> @@ -6,7 +6,8 @@ use PVE::JSONSchema qw(get_standard_option);
>  use PVE::RESTHandler;
>  use PVE::Tools qw(extract_param);
>  
> -use PVE::QemuServer::CPUConfig;
> +use PVE::QemuServer::Helpers;
> +use PVE::QemuServer::CPUFlags;

Nit: not ordered alphabetically

>  
>  use base qw(PVE::RESTHandler);
>  
> @@ -14,13 +15,22 @@ __PACKAGE__->register_method({
>      name => 'index',
>      path => '',
>      method => 'GET',
> -    description => 'List of available VM-specific CPU flags.',
> +    description =>
> +        "List of available VM-specific CPU flags. Returns an empty list for 'aarch64' "
> +        . "as no VM-specific flags are defined for it yet.",
>      permissions => { user => 'all' },
>      parameters => {
>          additionalProperties => 0,
>          properties => {
>              node => get_standard_option('pve-node'),
>              arch => get_standard_option('pve-qm-cpu-arch', { optional => 1 }),
> +            accel => {
> +                description => 'Acceleration type to check node compatibility for.',
> +                type => 'string',
> +                enum => [qw(kvm tcg)],
> +                optional => 1,
> +                default => 'kvm',
> +            },
>          },
>      },
>      returns => {
> @@ -35,6 +45,14 @@ __PACKAGE__->register_method({
>                  description => {
>                      type => 'string',
>                      description => "Description of the CPU flag.",
> +                    optional => 1,

AFAICT, we still always have a description, so this is not necessary.

> +                },
> +                'supported-on' => {
> +                    description =>
> +                        'List of nodes supporting the CPU flag with the selected acceleration type ("accel").',
> +                    type => 'array',
> +                    items => get_standard_option('pve-node'),
> +                    optional => 1,
>                  },
>              },
>          },
> @@ -42,9 +60,10 @@ __PACKAGE__->register_method({
>      code => sub {
>          my ($param) = @_;
>  
> -        my $arch = extract_param($param, 'arch');
> +        my $arch = extract_param($param, 'arch') // PVE::QemuServer::Helpers::get_host_arch();
> +        my $accel = extract_param($param, 'accel') // 'kvm';
>  
> -        return PVE::QemuServer::CPUConfig::get_supported_cpu_flags($arch);
> +        return PVE::QemuServer::CPUFlags::query_available_cpu_flags($accel, 1, $arch);
>      },
>  });
>  





  reply	other threads:[~2026-05-07 13:10 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 [this message]
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 ` [PATCH docs/manager/qemu-server v4 00/17] Add API and UI for custom CPU models David Riley
2026-05-07  7:14   ` 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=d207bc53-57c6-4dcb-af75-87393477ba48@proxmox.com \
    --to=f.ebner@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