From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <pve-devel-bounces@lists.proxmox.com> Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id CEAC81FF391 for <inbox@lore.proxmox.com>; Thu, 27 Jun 2024 13:03:15 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 492BB13C0E; Thu, 27 Jun 2024 13:03:24 +0200 (CEST) From: Fiona Ebner <f.ebner@proxmox.com> To: pve-devel@lists.proxmox.com Date: Thu, 27 Jun 2024 13:03:15 +0200 Message-Id: <20240627110317.23787-2-f.ebner@proxmox.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240627110317.23787-1-f.ebner@proxmox.com> References: <20240627110317.23787-1-f.ebner@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL -0.063 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH qemu-server 1/3] fix #5562: tpm: avoid warning about undefined value when version is not explicitly set X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion <pve-devel.lists.proxmox.com> List-Unsubscribe: <https://lists.proxmox.com/cgi-bin/mailman/options/pve-devel>, <mailto:pve-devel-request@lists.proxmox.com?subject=unsubscribe> List-Archive: <http://lists.proxmox.com/pipermail/pve-devel/> List-Post: <mailto:pve-devel@lists.proxmox.com> List-Help: <mailto:pve-devel-request@lists.proxmox.com?subject=help> List-Subscribe: <https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel>, <mailto:pve-devel-request@lists.proxmox.com?subject=subscribe> Reply-To: Proxmox VE development discussion <pve-devel@lists.proxmox.com> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" <pve-devel-bounces@lists.proxmox.com> Fixes: f9dde219 ("fix #3075: add TPM v1.2 and v2.0 support via swtpm") Signed-off-by: Fiona Ebner <f.ebner@proxmox.com> --- PVE/QemuServer.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index 5e2f5e2a..55ad8a7a 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -3163,9 +3163,9 @@ sub start_swtpm { "--not-overwrite", # ignore existing state, do not modify ]; - push @$setup_cmd, "--tpm2" if $tpm->{version} eq 'v2.0'; + push @$setup_cmd, "--tpm2" if $tpm->{version} && $tpm->{version} eq 'v2.0'; # TPM 2.0 supports ECC crypto, use if possible - push @$setup_cmd, "--ecc" if $tpm->{version} eq 'v2.0'; + push @$setup_cmd, "--ecc" if $tpm->{version} && $tpm->{version} eq 'v2.0'; run_command($setup_cmd, outfunc => sub { print "swtpm_setup: $1\n"; @@ -3189,7 +3189,7 @@ sub start_swtpm { "--log", "file=/run/qemu-server/$vmid-swtpm.log,level=1,prefix=$log_prefix", ]; - push @$emulator_cmd, "--tpm2" if $tpm->{version} eq 'v2.0'; + push @$emulator_cmd, "--tpm2" if $tpm->{version} && $tpm->{version} eq 'v2.0'; run_command($emulator_cmd, outfunc => sub { print $1; }); my $tries = 100; # swtpm may take a bit to start before daemonizing, wait up to 5s for pid -- 2.39.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel