Blame SOURCES/autofs-5.1.6-remove-intr-hosts-map-mount-option.patch

9a499a
autofs-5.1.6 - remove intr hosts map mount option
9a499a
9a499a
From: Ian Kent <raven@themaw.net>
9a499a
9a499a
Don't use the intr option on NFS mounts by default, it's been ignored
9a499a
by the kernel for a long time now.
9a499a
9a499a
Signed-off-by: Ian Kent <raven@themaw.net>
9a499a
---
9a499a
 CHANGELOG            |    1 +
9a499a
 man/auto.master.5.in |    4 ++--
9a499a
 man/autofs.5         |    4 ++--
9a499a
 modules/parse_sun.c  |    9 +++------
9a499a
 samples/auto.misc    |    2 +-
9a499a
 samples/auto.net     |    2 +-
9a499a
 6 files changed, 10 insertions(+), 12 deletions(-)
9a499a
9a499a
--- autofs-5.1.4.orig/CHANGELOG
9a499a
+++ autofs-5.1.4/CHANGELOG
9a499a
@@ -77,6 +77,7 @@
9a499a
 - add missing description of null map option.
9a499a
 - fix empty mounts list return from unlink_mount_tree().
9a499a
 - fix nonstrict offset mount fail handling.
9a499a
+- remove intr hosts map mount option.
9a499a
 
9a499a
 xx/xx/2018 autofs-5.1.5
9a499a
 - fix flag file permission.
9a499a
--- autofs-5.1.4.orig/man/auto.master.5.in
9a499a
+++ autofs-5.1.4/man/auto.master.5.in
9a499a
@@ -260,8 +260,8 @@ For example, with an entry in the master
9a499a
 accessing /net/myserver will mount exports from myserver on directories below
9a499a
 /net/myserver.
9a499a
 .P
9a499a
-NOTE: mounts done from a hosts map will be mounted with the "nosuid,nodev,intr" options
9a499a
-unless overridden by explicitly specifying the "suid", "dev" or "nointr" options in the
9a499a
+NOTE: mounts done from a hosts map will be mounted with the "nosuid,nodev" options
9a499a
+unless overridden by explicitly specifying the "suid", "dev" options in the
9a499a
 master map entry.
9a499a
 .SH BUILTIN MAP \-null
9a499a
 If "\-null" is given as the map it is used to tell automount(8) to ignore a subsequent
9a499a
--- autofs-5.1.4.orig/man/autofs.5
9a499a
+++ autofs-5.1.4/man/autofs.5
9a499a
@@ -86,13 +86,13 @@ Indirect map:
9a499a
 .RS +.2i
9a499a
 .ta 1.0i 3.0i
9a499a
 .nf
9a499a
-kernel	\-ro,soft,intr	ftp.kernel.org:/pub/linux
9a499a
+kernel	\-ro,soft	ftp.kernel.org:/pub/linux
9a499a
 boot	\-fstype=ext2	:/dev/hda1
9a499a
 windoze	\-fstype=smbfs	://windoze/c
9a499a
 removable	\-fstype=ext2	:/dev/hdd
9a499a
 cd	\-fstype=iso9660,ro	:/dev/hdc
9a499a
 floppy	\-fstype=auto	:/dev/fd0
9a499a
-server	\-rw,hard,intr	/ \-ro myserver.me.org:/ \\
9a499a
+server	\-rw,hard	/ \-ro myserver.me.org:/ \\
9a499a
 			/usr myserver.me.org:/usr \\
9a499a
 			/home myserver.me.org:/home
9a499a
 .fi
9a499a
--- autofs-5.1.4.orig/modules/parse_sun.c
9a499a
+++ autofs-5.1.4/modules/parse_sun.c
9a499a
@@ -628,10 +628,9 @@ static int sun_mount(struct autofs_point
9a499a
 			int len = strlen(options);
9a499a
 			int suid = strstr(options, "suid") ? 0 : 7;
9a499a
 			int dev = strstr(options, "dev") ? 0 : 6;
9a499a
-			int nointr = strstr(options, "nointr") ? 0 : 5;
9a499a
 
9a499a
-			if (suid || dev || nointr) {
9a499a
-				char *tmp = alloca(len + suid + dev + nointr + 1);
9a499a
+			if (suid || dev) {
9a499a
+				char *tmp = alloca(len + suid + dev + 1);
9a499a
 				if (!tmp) {
9a499a
 					error(ap->logopt, MODPREFIX
9a499a
 					      "alloca failed for options");
9a499a
@@ -645,8 +644,6 @@ static int sun_mount(struct autofs_point
9a499a
 					strcat(tmp, ",nosuid");
9a499a
 				if (dev)
9a499a
 					strcat(tmp, ",nodev");
9a499a
-				if (nointr)
9a499a
-					strcat(tmp, ",intr");
9a499a
 				options = tmp;
9a499a
 			}
9a499a
 		} else {
9a499a
@@ -658,7 +655,7 @@ static int sun_mount(struct autofs_point
9a499a
 					return -1;
9a499a
 				return 1;
9a499a
 			}
9a499a
-			strcpy(tmp, "nosuid,nodev,intr");
9a499a
+			strcpy(tmp, "nosuid,nodev");
9a499a
 			options = tmp;
9a499a
 		}
9a499a
 	}
9a499a
--- autofs-5.1.4.orig/samples/auto.misc
9a499a
+++ autofs-5.1.4/samples/auto.misc
9a499a
@@ -6,7 +6,7 @@
9a499a
 cd		-fstype=iso9660,ro,nosuid,nodev	:/dev/cdrom
9a499a
 
9a499a
 # the following entries are samples to pique your imagination
9a499a
-#linux		-ro,soft,intr		ftp.example.org:/pub/linux
9a499a
+#linux		-ro,soft		ftp.example.org:/pub/linux
9a499a
 #boot		-fstype=ext2		:/dev/hda1
9a499a
 #floppy		-fstype=auto		:/dev/fd0
9a499a
 #floppy		-fstype=ext2		:/dev/fd0
9a499a
--- autofs-5.1.4.orig/samples/auto.net
9a499a
+++ autofs-5.1.4/samples/auto.net
9a499a
@@ -9,7 +9,7 @@ key="$1"
9a499a
 
9a499a
 # add "nosymlink" here if you want to suppress symlinking local filesystems
9a499a
 # add "nonstrict" to make it OK for some filesystems to not mount
9a499a
-opts="-fstype=nfs,hard,intr,nodev,nosuid"
9a499a
+opts="-fstype=nfs,hard,nodev,nosuid"
9a499a
 
9a499a
 for P in /bin /sbin /usr/bin /usr/sbin
9a499a
 do