From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 96AC69C70 for ; Wed, 6 Sep 2023 10:45:19 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 3534E312FB for ; Wed, 6 Sep 2023 10:45:19 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Wed, 6 Sep 2023 10:45:18 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 5782C428B1 for ; Wed, 6 Sep 2023 10:45:18 +0200 (CEST) From: Fiona Ebner To: pve-devel@lists.proxmox.com Date: Wed, 6 Sep 2023 10:45:10 +0200 Message-Id: <20230906084512.47059-2-f.ebner@proxmox.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230906084512.47059-1-f.ebner@proxmox.com> References: <20230906084512.47059-1-f.ebner@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.080 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 URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [meson.build] Subject: [pve-devel] [PATCH v2 qemu 1/3] regenerate patch stats X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Sep 2023 08:45:19 -0000 Apparently wasn't correct in 0cff91a ("fix #1534: vma: Add extract filter for disk images"). Signed-off-by: Fiona Ebner --- New in v2. .../0027-PVE-Backup-add-vma-backup-format-code.patch | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/debian/patches/pve/0027-PVE-Backup-add-vma-backup-format-code.patch b/debian/patches/pve/0027-PVE-Backup-add-vma-backup-format-code.patch index b131dd8..15db16f 100644 --- a/debian/patches/pve/0027-PVE-Backup-add-vma-backup-format-code.patch +++ b/debian/patches/pve/0027-PVE-Backup-add-vma-backup-format-code.patch @@ -15,11 +15,11 @@ Signed-off-by: Fiona Ebner --- block/meson.build | 2 + meson.build | 5 + - vma-reader.c | 867 +++++++++++++++++++++++++++++++++++++++++++++ - vma-writer.c | 793 +++++++++++++++++++++++++++++++++++++++++ - vma.c | 878 ++++++++++++++++++++++++++++++++++++++++++++++ + vma-reader.c | 867 ++++++++++++++++++++++++++++++++++++++++++++ + vma-writer.c | 793 ++++++++++++++++++++++++++++++++++++++++ + vma.c | 900 ++++++++++++++++++++++++++++++++++++++++++++++ vma.h | 150 ++++++++ - 6 files changed, 2695 insertions(+) + 6 files changed, 2717 insertions(+) create mode 100644 vma-reader.c create mode 100644 vma-writer.c create mode 100644 vma.c @@ -1735,7 +1735,7 @@ index 0000000000..ac7da237d0 +} diff --git a/vma.c b/vma.c new file mode 100644 -index 0000000000..1604d955d8 +index 0000000000..cf2a2a74af --- /dev/null +++ b/vma.c @@ -0,0 +1,900 @@ -- 2.39.2