From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [45.144.208.40]) by lore.proxmox.com (Postfix) with ESMTPS id 0DA2C1FF09B for ; Mon, 31 Aug 2026 18:35:51 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id C2B9E21544; Mon, 31 Aug 2026 18:35:49 +0200 (CEST) From: Markus Frank To: pve-devel@lists.proxmox.com Subject: [PATCH qemu-server v1 2/2] query-machine-capabilities: update CPUID Wikipedia anchor link Date: Mon, 31 Aug 2026 18:34:15 +0200 Message-ID: <20260831163526.462323-2-m.frank@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260831163526.462323-1-m.frank@proxmox.com> References: <20260831163526.462323-1-m.frank@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1788194125775 X-SPAM-LEVEL: Spam detection results: 0 DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: DNZM3YE5WMJBWF4TGOMZXVYN2ODRLOS7 X-Message-ID-Hash: DNZM3YE5WMJBWF4TGOMZXVYN2ODRLOS7 X-MailFrom: m.frank@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: The Wikipedia page for CPUID updated its section header format, breaking the previous link. Update the anchor tag to match the new URL. Signed-off-by: Markus Frank --- src/query-machine-capabilities/query-machine-capabilities.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/query-machine-capabilities/query-machine-capabilities.c b/src/query-machine-capabilities/query-machine-capabilities.c index cf5f5252..d7dae53f 100644 --- a/src/query-machine-capabilities/query-machine-capabilities.c +++ b/src/query-machine-capabilities/query-machine-capabilities.c @@ -127,7 +127,7 @@ void query_cpu_capabilities_sev(cpu_caps_amd_sev_t *res) { uint32_t eax, ebx, ecx, edx; // query Encrypted Memory Capabilities, see: - // https://en.wikipedia.org/wiki/CPUID#EAX=8000001Fh:_Encrypted_Memory_Capabilities + // https://en.wikipedia.org/wiki/CPUID#EAX=8000'001Fh:_Encrypted_Memory_Capabilities uint32_t query_function = 0x8000001F; asm volatile("cpuid" : "=a"(eax), "=b"(ebx), "=c"(ecx), "=d"(edx) -- 2.47.3