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)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 905A1B3301 for ; Tue, 28 Nov 2023 16:08:19 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 7118919B61 for ; Tue, 28 Nov 2023 16:07:49 +0100 (CET) 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)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Tue, 28 Nov 2023 16:07:48 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 2FAB54164F for ; Tue, 28 Nov 2023 16:07:48 +0100 (CET) From: Stoiko Ivanov To: pve-devel@lists.proxmox.com Date: Tue, 28 Nov 2023 16:07:30 +0100 Message-Id: <20231128150730.810279-1-s.ivanov@proxmox.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.036 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 KAM_LOTSOFHASH 0.25 Emails with lots of hash-like gibberish SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record T_SCC_BODY_TEXT_LINE -0.01 - Subject: [pve-devel] [PATCH] update kernel to 6.5.11 and ZFS to 2.2.1, refresh patches 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: Tue, 28 Nov 2023 15:08:19 -0000 * for the kernel-patch this includes a rename from 0003+0004 to 0001+0002 * for ZFS there was a change in upstream's autotools-setup - I referenced the commit in the actual patch-file minimally tested with a VM with a zfs-pool and an ext4 disk * restore of a directory on ext4 containing 160MB of debian packages as tar.zstd * restore of a small folder (/root in a debian container) on zfs both worked restoring files from a Windows guest - worked, however there is an independent issue with tpmstate not being found: `given image 'drive-tpmstate0-backup.img.fidx' not found (400)` directories with 10 million files also still cause the restore-shim to run into OOM (but this is independent of the restore-image) Signed-off-by: Stoiko Ivanov --- ...ch => 0001-vsock-reduce-packet-size.patch} | 9 +++------ ...estore-halt-machine-on-kernel-panic.patch} | 9 +++------ .../0001-remove-reference-to-libudev.patch | 19 +++++++++---------- src/submodules/ubuntu-kernel | 2 +- src/submodules/zfsonlinux | 2 +- 5 files changed, 17 insertions(+), 24 deletions(-) rename src/patches/kernel/{0003-vsock-reduce-packet-size.patch => 0001-vsock-reduce-packet-size.patch} (86%) rename src/patches/kernel/{0004-PBS-restore-halt-machine-on-kernel-panic.patch => 0002-PBS-restore-halt-machine-on-kernel-panic.patch} (83%) diff --git a/src/patches/kernel/0003-vsock-reduce-packet-size.patch b/src/patches/kernel/0001-vsock-reduce-packet-size.patch similarity index 86% rename from src/patches/kernel/0003-vsock-reduce-packet-size.patch rename to src/patches/kernel/0001-vsock-reduce-packet-size.patch index 378da53..75b0e92 100644 --- a/src/patches/kernel/0003-vsock-reduce-packet-size.patch +++ b/src/patches/kernel/0001-vsock-reduce-packet-size.patch @@ -1,4 +1,4 @@ -From a437d428733881f408b5d42eb75812600083cb75 Mon Sep 17 00:00:00 2001 +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Stefan Reiter Date: Mon, 26 Apr 2021 14:08:36 +0200 Subject: [PATCH] vsock: reduce packet size @@ -19,10 +19,10 @@ Signed-off-by: Stefan Reiter 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/virtio_vsock.h b/include/linux/virtio_vsock.h -index dc636b727179..18c09ff72929 100644 +index c58453699ee9..62a609444e12 100644 --- a/include/linux/virtio_vsock.h +++ b/include/linux/virtio_vsock.h -@@ -9,7 +9,7 @@ +@@ -112,7 +112,7 @@ static inline size_t virtio_vsock_skb_len(struct sk_buff *skb) #define VIRTIO_VSOCK_DEFAULT_RX_BUF_SIZE (1024 * 4) #define VIRTIO_VSOCK_MAX_BUF_SIZE 0xFFFFFFFFUL @@ -31,6 +31,3 @@ index dc636b727179..18c09ff72929 100644 enum { VSOCK_VQ_RX = 0, /* for host to guest data */ --- -2.20.1 - diff --git a/src/patches/kernel/0004-PBS-restore-halt-machine-on-kernel-panic.patch b/src/patches/kernel/0002-PBS-restore-halt-machine-on-kernel-panic.patch similarity index 83% rename from src/patches/kernel/0004-PBS-restore-halt-machine-on-kernel-panic.patch rename to src/patches/kernel/0002-PBS-restore-halt-machine-on-kernel-panic.patch index d79833f..8c2cabd 100644 --- a/src/patches/kernel/0004-PBS-restore-halt-machine-on-kernel-panic.patch +++ b/src/patches/kernel/0002-PBS-restore-halt-machine-on-kernel-panic.patch @@ -1,4 +1,4 @@ -From 7222e7424aab957f63b98853ea9fb30eec83666e Mon Sep 17 00:00:00 2001 +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Stefan Reiter Date: Mon, 3 May 2021 11:13:10 +0200 Subject: [PATCH] PBS-restore: halt machine on kernel panic @@ -14,10 +14,10 @@ Signed-off-by: Stefan Reiter 1 file changed, 3 insertions(+) diff --git a/kernel/panic.c b/kernel/panic.c -index 332736a72a58..56339ae5165c 100644 +index ea1c5fcb2d19..c317ca992a26 100644 --- a/kernel/panic.c +++ b/kernel/panic.c -@@ -325,6 +325,9 @@ void panic(const char *fmt, ...) +@@ -417,6 +417,9 @@ void panic(const char *fmt, ...) } } if (panic_timeout != 0) { @@ -27,6 +27,3 @@ index 332736a72a58..56339ae5165c 100644 /* * This will not be a clean reboot, with everything * shutting down. But if there is a chance of --- -2.20.1 - diff --git a/src/patches/zfs/0001-remove-reference-to-libudev.patch b/src/patches/zfs/0001-remove-reference-to-libudev.patch index 467d9b5..8fe9b31 100644 --- a/src/patches/zfs/0001-remove-reference-to-libudev.patch +++ b/src/patches/zfs/0001-remove-reference-to-libudev.patch @@ -6,6 +6,8 @@ Subject: [PATCH] remove reference to libudev since there's no command line flag I can see... Signed-off-by: Stefan Reiter +[ SI adapt to aebd94cc8541e0ec3b1de57edbd57c4280213089 ] +Signed-off-by: Stoiko Ivanov --- config/user-libudev.m4 | 17 ----------------- config/user.m4 | 1 - @@ -36,17 +38,14 @@ index 8c3c1d7e0..000000000 - ]) -]) diff --git a/config/user.m4 b/config/user.m4 -index c22067551..1b6d3a24e 100644 +index 6ec27a5b2..46244f19b 100644 --- a/config/user.m4 +++ b/config/user.m4 -@@ -18,7 +18,6 @@ AC_DEFUN([ZFS_AC_CONFIG_USER], [ +@@ -14,7 +14,6 @@ AC_DEFUN([ZFS_AC_CONFIG_USER], [ + AM_COND_IF([BUILD_LINUX], [ + ZFS_AC_CONFIG_USER_UDEV + ZFS_AC_CONFIG_USER_SYSTEMD +- ZFS_AC_CONFIG_USER_LIBUDEV + ZFS_AC_CONFIG_USER_LIBUUID ZFS_AC_CONFIG_USER_LIBBLKID ]) - ZFS_AC_CONFIG_USER_LIBTIRPC -- ZFS_AC_CONFIG_USER_LIBUDEV - ZFS_AC_CONFIG_USER_LIBCRYPTO - ZFS_AC_CONFIG_USER_LIBAIO - ZFS_AC_CONFIG_USER_CLOCK_GETTIME --- -2.30.2 - diff --git a/src/submodules/ubuntu-kernel b/src/submodules/ubuntu-kernel index 1978bab..9f8b45f 160000 --- a/src/submodules/ubuntu-kernel +++ b/src/submodules/ubuntu-kernel @@ -1 +1 @@ -Subproject commit 1978bab71596981268838efebf801f03fdce9d3a +Subproject commit 9f8b45f5f8dbd6093b7ff71750bc6eb762fc8b20 diff --git a/src/submodules/zfsonlinux b/src/submodules/zfsonlinux index e25f913..55dd24c 160000 --- a/src/submodules/zfsonlinux +++ b/src/submodules/zfsonlinux @@ -1 +1 @@ -Subproject commit e25f9131d679692704c11dc0c1df6d4585b70c35 +Subproject commit 55dd24c4ccee2da61d5396289ef560f9b7bc6a68 -- 2.39.2