summaryrefslogtreecommitdiff
path: root/sys-fs/zfs-kmod/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-07-04 04:07:19 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-07-04 04:07:19 +0100
commit2475ac51234b6ca2597db80dd05deb29667888b0 (patch)
treec3b38e5475d765253892cebd14aa2eb4822ef00f /sys-fs/zfs-kmod/files
parent2764a2c09ef0bc530bda7afb20e505ca24d310c6 (diff)
gentoo auto-resync : 04:07:2023 - 04:07:19
Diffstat (limited to 'sys-fs/zfs-kmod/files')
-rw-r--r--sys-fs/zfs-kmod/files/2.1.10-Revert-ZFS_IOC_COUNT_FILLED-does-unnecessary-txg_wai.patch67
-rw-r--r--sys-fs/zfs-kmod/files/2.1.7-ppc64-ieee128-compat.patch217
2 files changed, 0 insertions, 284 deletions
diff --git a/sys-fs/zfs-kmod/files/2.1.10-Revert-ZFS_IOC_COUNT_FILLED-does-unnecessary-txg_wai.patch b/sys-fs/zfs-kmod/files/2.1.10-Revert-ZFS_IOC_COUNT_FILLED-does-unnecessary-txg_wai.patch
deleted file mode 100644
index 150d1b5145d9..000000000000
--- a/sys-fs/zfs-kmod/files/2.1.10-Revert-ZFS_IOC_COUNT_FILLED-does-unnecessary-txg_wai.patch
+++ /dev/null
@@ -1,67 +0,0 @@
-From ac6b8f40981cb9328c22a3485e1a4b060ea89b1e Mon Sep 17 00:00:00 2001
-From: Sam James <sam@gentoo.org>
-Date: Sun, 16 Apr 2023 04:49:04 +0100
-Subject: [PATCH] Revert "ZFS_IOC_COUNT_FILLED does unnecessary
- txg_wait_synced()"
-
-This reverts commit 4b3133e671b958fa2c915a4faf57812820124a7b.
-
-See #14753 - possible corruption again, very similar symptoms to the
-nightmare that was #11900 and same area of code.
-
-We can safely revert it as it's an optimisation rather than a bugfix
-in itself.
-
-Bug: https://github.com/openzfs/zfs/issues/14753
-Bug: https://github.com/openzfs/zfs/issues/11900
-Signed-off-by: Sam James <sam@gentoo.org>
---- a/module/zfs/dnode.c
-+++ b/module/zfs/dnode.c
-@@ -1773,29 +1773,20 @@ dnode_try_claim(objset_t *os, uint64_t object, int slots)
- }
-
- /*
-- * Checks if the dnode might contain any uncommitted changes to data blocks.
-- * Dirty metadata (e.g. bonus buffer) does not count.
-+ * Checks if the dnode contains any uncommitted dirty records.
- */
- boolean_t
- dnode_is_dirty(dnode_t *dn)
- {
- mutex_enter(&dn->dn_mtx);
-+
- for (int i = 0; i < TXG_SIZE; i++) {
-- list_t *list = &dn->dn_dirty_records[i];
-- for (dbuf_dirty_record_t *dr = list_head(list);
-- dr != NULL; dr = list_next(list, dr)) {
-- if (dr->dr_dbuf == NULL ||
-- (dr->dr_dbuf->db_blkid != DMU_BONUS_BLKID &&
-- dr->dr_dbuf->db_blkid != DMU_SPILL_BLKID)) {
-- mutex_exit(&dn->dn_mtx);
-- return (B_TRUE);
-- }
-- }
-- if (dn->dn_free_ranges[i] != NULL) {
-+ if (multilist_link_active(&dn->dn_dirty_link[i])) {
- mutex_exit(&dn->dn_mtx);
- return (B_TRUE);
- }
- }
-+
- mutex_exit(&dn->dn_mtx);
-
- return (B_FALSE);
-@@ -2667,9 +2658,7 @@ dnode_next_offset(dnode_t *dn, int flags, uint64_t *offset,
- rw_enter(&dn->dn_struct_rwlock, RW_READER);
-
- if (dn->dn_phys->dn_nlevels == 0) {
-- if (!(flags & DNODE_FIND_HOLE)) {
-- error = SET_ERROR(ESRCH);
-- }
-+ error = SET_ERROR(ESRCH);
- goto out;
- }
-
---
-2.40.0
-
diff --git a/sys-fs/zfs-kmod/files/2.1.7-ppc64-ieee128-compat.patch b/sys-fs/zfs-kmod/files/2.1.7-ppc64-ieee128-compat.patch
deleted file mode 100644
index 5613cb8ca9d1..000000000000
--- a/sys-fs/zfs-kmod/files/2.1.7-ppc64-ieee128-compat.patch
+++ /dev/null
@@ -1,217 +0,0 @@
-From 8324d738fdb3096bd97336476bb399e6c312289a Mon Sep 17 00:00:00 2001
-From: Richard Yao <richard.yao@alumni.stonybrook.edu>
-Date: Thu, 12 Jan 2023 11:06:57 -0500
-Subject: [PATCH] Linux ppc64le ieee128 compat: Do not redefine __asm on
- external headers
-
-There is an external assembly declaration extension in GNU C that glibc
-uses when building with ieee128 floating point support on ppc64le.
-Marking that as volatile makes no sense, so the build breaks.
-
-It does not make sense to only mark this as volatile on Linux, since if
-do not want the compiler reordering things on Linux, we do not want the
-compiler reordering things on any other platform, so we stop treating
-Linux specially and just manually inline the CPP macro so that we can
-eliminate it. This should fix the build on ppc64le.
-
-Closes openzfs/zfs#14308
-Signed-off-by: Richard Yao <richard.yao@alumni.stonybrook.edu>
----
- .../vdev_raidz_math_powerpc_altivec_common.h | 44 +++++++++----------
- 1 file changed, 20 insertions(+), 24 deletions(-)
-
-diff --git a/module/zfs/vdev_raidz_math_powerpc_altivec_common.h b/module/zfs/vdev_raidz_math_powerpc_altivec_common.h
-index 46d42c5e241..f76eb47a9c6 100644
---- a/module/zfs/vdev_raidz_math_powerpc_altivec_common.h
-+++ b/module/zfs/vdev_raidz_math_powerpc_altivec_common.h
-@@ -26,10 +26,6 @@
- #include <sys/types.h>
- #include <sys/simd.h>
-
--#ifdef __linux__
--#define __asm __asm__ __volatile__
--#endif
--
- #define _REG_CNT(_0, _1, _2, _3, _4, _5, _6, _7, N, ...) N
- #define REG_CNT(r...) _REG_CNT(r, 8, 7, 6, 5, 4, 3, 2, 1)
-
-@@ -142,7 +138,7 @@ typedef struct v {
- { \
- switch (REG_CNT(r)) { \
- case 8: \
-- __asm( \
-+ __asm__ __volatile__( \
- "lvx 21,0,%[SRC0]\n" \
- "lvx 20,0,%[SRC1]\n" \
- "lvx 19,0,%[SRC2]\n" \
-@@ -172,7 +168,7 @@ typedef struct v {
- : "v18", "v19", "v20", "v21"); \
- break; \
- case 4: \
-- __asm( \
-+ __asm__ __volatile__( \
- "lvx 21,0,%[SRC0]\n" \
- "lvx 20,0,%[SRC1]\n" \
- "lvx 19,0,%[SRC2]\n" \
-@@ -189,7 +185,7 @@ typedef struct v {
- : "v18", "v19", "v20", "v21"); \
- break; \
- case 2: \
-- __asm( \
-+ __asm__ __volatile__( \
- "lvx 21,0,%[SRC0]\n" \
- "lvx 20,0,%[SRC1]\n" \
- "vxor " VR0(r) "," VR0(r) ",21\n" \
-@@ -208,7 +204,7 @@ typedef struct v {
- { \
- switch (REG_CNT(r)) { \
- case 8: \
-- __asm( \
-+ __asm__ __volatile__( \
- "vxor " VR4(r) "," VR4(r) "," VR0(r) "\n" \
- "vxor " VR5(r) "," VR5(r) "," VR1(r) "\n" \
- "vxor " VR6(r) "," VR6(r) "," VR2(r) "\n" \
-@@ -217,7 +213,7 @@ typedef struct v {
- : RVR0(r), RVR1(r), RVR2(r), RVR3(r)); \
- break; \
- case 4: \
-- __asm( \
-+ __asm__ __volatile__( \
- "vxor " VR2(r) "," VR2(r) "," VR0(r) "\n" \
- "vxor " VR3(r) "," VR3(r) "," VR1(r) "\n" \
- : UVR2(r), UVR3(r) \
-@@ -232,7 +228,7 @@ typedef struct v {
- { \
- switch (REG_CNT(r)) { \
- case 8: \
-- __asm( \
-+ __asm__ __volatile__( \
- "vxor " VR0(r) "," VR0(r) "," VR0(r) "\n" \
- "vxor " VR1(r) "," VR1(r) "," VR1(r) "\n" \
- "vxor " VR2(r) "," VR2(r) "," VR2(r) "\n" \
-@@ -245,7 +241,7 @@ typedef struct v {
- WVR4(r), WVR5(r), WVR6(r), WVR7(r)); \
- break; \
- case 4: \
-- __asm( \
-+ __asm__ __volatile__( \
- "vxor " VR0(r) "," VR0(r) "," VR0(r) "\n" \
- "vxor " VR1(r) "," VR1(r) "," VR1(r) "\n" \
- "vxor " VR2(r) "," VR2(r) "," VR2(r) "\n" \
-@@ -253,7 +249,7 @@ typedef struct v {
- : WVR0(r), WVR1(r), WVR2(r), WVR3(r)); \
- break; \
- case 2: \
-- __asm( \
-+ __asm__ __volatile__( \
- "vxor " VR0(r) "," VR0(r) "," VR0(r) "\n" \
- "vxor " VR1(r) "," VR1(r) "," VR1(r) "\n" \
- : WVR0(r), WVR1(r)); \
-@@ -267,7 +263,7 @@ typedef struct v {
- { \
- switch (REG_CNT(r)) { \
- case 8: \
-- __asm( \
-+ __asm__ __volatile__( \
- "vor " VR4(r) "," VR0(r) "," VR0(r) "\n" \
- "vor " VR5(r) "," VR1(r) "," VR1(r) "\n" \
- "vor " VR6(r) "," VR2(r) "," VR2(r) "\n" \
-@@ -276,7 +272,7 @@ typedef struct v {
- : RVR0(r), RVR1(r), RVR2(r), RVR3(r)); \
- break; \
- case 4: \
-- __asm( \
-+ __asm__ __volatile__( \
- "vor " VR2(r) "," VR0(r) "," VR0(r) "\n" \
- "vor " VR3(r) "," VR1(r) "," VR1(r) "\n" \
- : WVR2(r), WVR3(r) \
-@@ -291,7 +287,7 @@ typedef struct v {
- { \
- switch (REG_CNT(r)) { \
- case 8: \
-- __asm( \
-+ __asm__ __volatile__( \
- "lvx " VR0(r) " ,0,%[SRC0]\n" \
- "lvx " VR1(r) " ,0,%[SRC1]\n" \
- "lvx " VR2(r) " ,0,%[SRC2]\n" \
-@@ -312,7 +308,7 @@ typedef struct v {
- [SRC7] "r" ((OFFSET(src, 112)))); \
- break; \
- case 4: \
-- __asm( \
-+ __asm__ __volatile__( \
- "lvx " VR0(r) " ,0,%[SRC0]\n" \
- "lvx " VR1(r) " ,0,%[SRC1]\n" \
- "lvx " VR2(r) " ,0,%[SRC2]\n" \
-@@ -324,7 +320,7 @@ typedef struct v {
- [SRC3] "r" ((OFFSET(src, 48)))); \
- break; \
- case 2: \
-- __asm( \
-+ __asm__ __volatile__( \
- "lvx " VR0(r) " ,0,%[SRC0]\n" \
- "lvx " VR1(r) " ,0,%[SRC1]\n" \
- : WVR0(r), WVR1(r) \
-@@ -340,7 +336,7 @@ typedef struct v {
- { \
- switch (REG_CNT(r)) { \
- case 8: \
-- __asm( \
-+ __asm__ __volatile__( \
- "stvx " VR0(r) " ,0,%[DST0]\n" \
- "stvx " VR1(r) " ,0,%[DST1]\n" \
- "stvx " VR2(r) " ,0,%[DST2]\n" \
-@@ -362,7 +358,7 @@ typedef struct v {
- : "memory"); \
- break; \
- case 4: \
-- __asm( \
-+ __asm__ __volatile__( \
- "stvx " VR0(r) " ,0,%[DST0]\n" \
- "stvx " VR1(r) " ,0,%[DST1]\n" \
- "stvx " VR2(r) " ,0,%[DST2]\n" \
-@@ -375,7 +371,7 @@ typedef struct v {
- : "memory"); \
- break; \
- case 2: \
-- __asm( \
-+ __asm__ __volatile__( \
- "stvx " VR0(r) " ,0,%[DST0]\n" \
- "stvx " VR1(r) " ,0,%[DST1]\n" \
- : : [DST0] "r" ((OFFSET(dst, 0))), \
-@@ -400,7 +396,7 @@ typedef struct v {
-
- #define MUL2_SETUP() \
- { \
-- __asm( \
-+ __asm__ __volatile__( \
- "vspltisb " VR(16) ",14\n" \
- "vspltisb " VR(17) ",15\n" \
- "vaddubm " VR(16) "," VR(17) "," VR(16) "\n" \
-@@ -412,7 +408,7 @@ typedef struct v {
- { \
- switch (REG_CNT(r)) { \
- case 4: \
-- __asm( \
-+ __asm__ __volatile__( \
- "vcmpgtsb 19," VR(17) "," VR0(r) "\n" \
- "vcmpgtsb 18," VR(17) "," VR1(r) "\n" \
- "vcmpgtsb 21," VR(17) "," VR2(r) "\n" \
-@@ -434,7 +430,7 @@ typedef struct v {
- : "v18", "v19", "v20", "v21"); \
- break; \
- case 2: \
-- __asm( \
-+ __asm__ __volatile__( \
- "vcmpgtsb 19," VR(17) "," VR0(r) "\n" \
- "vcmpgtsb 18," VR(17) "," VR1(r) "\n" \
- "vand 19,19," VR(16) "\n" \
-@@ -478,7 +474,7 @@ typedef struct v {
- { \
- switch (REG_CNT(r)) { \
- case 2: \
-- __asm( \
-+ __asm__ __volatile__( \
- /* lts for upper part */ \
- "vspltisb 15,15\n" \
- "lvx 10,0,%[lt0]\n" \