- https://lore.kernel.org/linux-nfs/4a86eea3-973e-4535-8aa5-f3b8b5f7934d@redhat.com/ - https://kernel.org/pub/linux/utils/nfs-utils/2.8.1/2.8.1-Changelog - Add new binary nfsdctl - The default number of nfsd threads is now 16 instead of 8 - Removed patchs from previous releases - 0001-exportfs-remove-warning-if-neither-subtree_check-or-.patch - 0002-conffile-don-t-report-error-from-conf_init_file.patch - 0003-conffile-allow-usr-etc-to-provide-any-config-files-e.patch - 0004-fsidd-call-anonymous-sockets-by-their-name-only-don-.patch - 0001-gssd-revert-commit-a5f3b7ccb01c.patch - 0002-gssd-revert-commit-513630d720bd.patch - 0003-gssd-switch-to-using-rpc_gss_seccreate.patch - 0004-gssd-handle-KRB5_AP_ERR_BAD_INTEGRITY-for-machine-cr.patch - 0005-gssd-handle-KRB5_AP_ERR_BAD_INTEGRITY-for-user-crede.patch - 0006-configure-check-for-rpc_gss_seccreate.patch - Turn nfs-utils-1.0.7-bind-syntax.patch to git patch (bug reference, easier to refresh via git, likely it can be now removed) - Add BuildRequires libnl-3.0, readline OBS-URL: https://build.opensuse.org/package/show/Base:System/nfs-utils?expand=0&rev=287
30 lines
1018 B
Diff
30 lines
1018 B
Diff
From 374a756bc6d372d242dbcc1178f9ac2f34e0ab32 Mon Sep 17 00:00:00 2001
|
|
From: Petr Vorel <pvorel@suse.cz>
|
|
Date: Tue, 29 Oct 2024 11:10:37 +0100
|
|
Subject: [PATCH] exports: Ignore mount --bind
|
|
References: bcs#229583, https://bugzilla.suse.com/attachment.cgi?id=110519&action=diff
|
|
Upstream-status: SUSE specific workaround for nfs-utils 1.0.7 (SLES10-SP1), still needed?
|
|
|
|
Signed-off-by: Olaf Kirch <okir@suse.com>
|
|
Signed-off-by: Petr Vorel <pvorel@suse.cz>
|
|
---
|
|
support/nfs/exports.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/support/nfs/exports.c b/support/nfs/exports.c
|
|
index a6816e60..b9143718 100644
|
|
--- a/support/nfs/exports.c
|
|
+++ b/support/nfs/exports.c
|
|
@@ -792,6 +792,8 @@ bad_option:
|
|
} else if (strncmp(opt, "replicas=", 9) == 0) {
|
|
ep->e_fslocmethod = FSLOC_REPLICA;
|
|
ep->e_fslocdata = strdup(opt+9);
|
|
+ } else if (strncmp(opt, "bind=/", 6) == 0) {
|
|
+ /* ignore this for now */
|
|
} else if (strncmp(opt, "sec=", 4) == 0) {
|
|
active = parse_flavors(opt+4, ep);
|
|
if (!active)
|
|
--
|
|
2.45.2
|
|
|