public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: "Daniel Kral" <d.kral@proxmox.com>
To: "Proxmox VE development discussion" <pve-devel@lists.proxmox.com>
Subject: Re: [pve-devel] [PATCH qemu-server 4/7] cpu config: introduce vendor-agnostic 'nested-virt' CPU flag
Date: Thu, 06 Nov 2025 18:00:59 +0100	[thread overview]
Message-ID: <DE1RU4V6PENY.3QIU05R0JK8T4@proxmox.com> (raw)
In-Reply-To: <20251031122834.62482-5-f.ebner@proxmox.com>

On Fri Oct 31, 2025 at 1:27 PM CET, Fiona Ebner wrote:
> @@ -578,8 +588,34 @@ sub print_cpu_device {
>  sub resolve_cpu_flags {
>      my $flags = {};
>  
> +    my $nested_flag;
> +    my $nested_flag_resolved;
> +    my $resolve_nested_flag = sub {
> +        if (!$nested_flag_resolved) {
> +            my $host_cpu_flags = PVE::ProcFSTools::read_cpuinfo()->{flags};
> +            if ($host_cpu_flags =~ m/\s(svm|vmx)\s/) {
> +                $nested_flag = $1;
> +            } else {
> +                log_warn("ignoring 'nested-virt' CPU flag - unable to resolve from host CPU flags");
> +            }
> +            $nested_flag_resolved = 1;
> +        }
> +        return $nested_flag;
> +    };
> +
>      for my $hash (@_) {

nit: maybe now's a good time to give @_ a name with the $nested_flag bit
     in between? But I can see the naming collision with $flags..

>          for my $flag_name (keys %$hash) {
> +            if ($flag_name eq 'nested-virt') {
> +                my $nested_flag_name = $resolve_nested_flag->() or next;
> +                if ($hash->{$nested_flag_name}) {
> +                    warn "warning: CPU flag '$flag_name' overrides '$nested_flag_name'\n";
> +                } else {
> +                    print "CPU flag '$flag_name' resolved to '$nested_flag_name'\n";
> +                }
> +                $hash->{$nested_flag_name} = delete($hash->{$flag_name});
> +                $flag_name = $nested_flag_name;
> +            }
> +
>              my $flag = $hash->{$flag_name};
>              my $old_flag = $flags->{$flag_name};
>  



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


  reply	other threads:[~2025-11-06 17:00 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-31 12:27 [pve-devel] [PATCH-SERIES qemu-server/manager 0/7] VM CPU flags: " Fiona Ebner
2025-10-31 12:27 ` [pve-devel] [PATCH qemu-server 1/7] cpu config: style fix: avoid multiline post-if expressions Fiona Ebner
2025-11-06 18:03   ` [pve-devel] applied: " Thomas Lamprecht
2025-10-31 12:27 ` [pve-devel] [PATCH qemu-server 2/7] cpu config: style fix: avoid overly long ternary conditional expression Fiona Ebner
2025-11-06 18:03   ` [pve-devel] applied: " Thomas Lamprecht
2025-10-31 12:27 ` [pve-devel] [PATCH qemu-server 3/7] api: add endpoint for querying available cpu flags Fiona Ebner
2025-11-06 18:02   ` Thomas Lamprecht
2025-11-06 18:17     ` Thomas Lamprecht
2025-11-07  9:05     ` Fiona Ebner
2025-10-31 12:27 ` [pve-devel] [PATCH qemu-server 4/7] cpu config: introduce vendor-agnostic 'nested-virt' CPU flag Fiona Ebner
2025-11-06 17:00   ` Daniel Kral [this message]
2025-11-07  9:12     ` Fiona Ebner
2025-10-31 12:27 ` [pve-devel] [PATCH manager 5/7] api: capabilities: register module for VM CPU flags Fiona Ebner
2025-10-31 12:27 ` [pve-devel] [PATCH manager 6/7] ui: cpu flag selector: code style: use 'let' for declarations Fiona Ebner
2025-10-31 12:27 ` [pve-devel] [PATCH manager 7/7] ui: cpu flag selector: query CPU flag list via API Fiona Ebner
2025-11-06 16:57   ` Daniel Kral
2025-11-07  9:30     ` Fiona Ebner
2025-11-06 17:13 ` [pve-devel] [PATCH-SERIES qemu-server/manager 0/7] VM CPU flags: introduce vendor-agnostic 'nested-virt' CPU flag Daniel Kral
2025-11-07 11:33   ` Fiona Ebner
2025-11-07 12:13     ` Daniel Kral

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=DE1RU4V6PENY.3QIU05R0JK8T4@proxmox.com \
    --to=d.kral@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