summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2022-06-21 11:40:23 +0200
committerDavid Seifert <soap@gentoo.org>2022-06-21 11:40:23 +0200
commit31743b41bf156e6ccd8f311ea2e8ff3cce243874 (patch)
tree9b0b12f785e064ebea0f14d99c0b513a30e00fd4 /net-fs/nfs-utils/files
parentnet-fs/libnfs: drop 4.0.0 (diff)
downloadgentoo-31743b41bf156e6ccd8f311ea2e8ff3cce243874.tar.gz
gentoo-31743b41bf156e6ccd8f311ea2e8ff3cce243874.tar.bz2
gentoo-31743b41bf156e6ccd8f311ea2e8ff3cce243874.zip
net-fs/nfs-utils: drop 2.5.4-r4
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'net-fs/nfs-utils/files')
-rw-r--r--net-fs/nfs-utils/files/nfs-utils-2.5.4-kernel-5.3-nfsv4.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/net-fs/nfs-utils/files/nfs-utils-2.5.4-kernel-5.3-nfsv4.patch b/net-fs/nfs-utils/files/nfs-utils-2.5.4-kernel-5.3-nfsv4.patch
deleted file mode 100644
index c9a543191b5d..000000000000
--- a/net-fs/nfs-utils/files/nfs-utils-2.5.4-kernel-5.3-nfsv4.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-https://git.linux-nfs.org/?p=steved/nfs-utils.git;a=commitdiff;h=feb3dfc7127cf1337530ccb06ed90e818b026a07#patch1
-https://bugzilla.redhat.com/show_bug.cgi?id=1979816
-https://bugs.gentoo.org/808183
-
-Slightly rebased by sam@ to account for version.h moving around.
-
-From feb3dfc7127cf1337530ccb06ed90e818b026a07 Mon Sep 17 00:00:00 2001
-From: Steve Dickson <steved@redhat.com>
-Date: Wed, 22 Sep 2021 11:31:56 -0400
-Subject: [PATCH] mountd: only do NFSv4 logging on supported kernels.
-
-Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1979816
-Signed-off-by: Steve Dickson <steved@redhat.com>
---- a/support/export/v4clients.c
-+++ b/support/export/v4clients.c
-@@ -10,6 +10,7 @@
- #include <sys/inotify.h>
- #include <errno.h>
- #include "export.h"
-+#include "../../utils/mount/version.h"
-
- /* search.h declares 'struct entry' and nfs_prot.h
- * does too. Easiest fix is to trick search.h into
-@@ -23,6 +24,8 @@ static int clients_fd = -1;
-
- void v4clients_init(void)
- {
-+ if (linux_version_code() < MAKE_VERSION(5, 3, 0))
-+ return;
- if (clients_fd >= 0)
- return;
- clients_fd = inotify_init1(IN_NONBLOCK);