Blame SOURCES/autofs-5.1.7-eliminate-count_mounts-from-expire_proc_indirect.patch

9a499a
autofs-5.1.7 - eliminate count_mounts() from expire_proc_indirect()
9a499a
9a499a
From: Ian Kent <raven@themaw.net>
9a499a
9a499a
The count_mounts() function traverses the directory tree under a given
9a499a
automount in order to count the number of mounts.
9a499a
9a499a
If there are many directories (such as when there is a very large
9a499a
number of offset trigger mounts) this can take a long time.
9a499a
9a499a
Eliminate the call in expire_proc_indirect() by changing the expire
9a499a
ioctl function to better use the expire return from the kernel.
9a499a
9a499a
Signed-off-by: Ian Kent <raven@themaw.net>
9a499a
---
9a499a
 CHANGELOG           |    1 +
9a499a
 daemon/direct.c     |    4 ++--
9a499a
 daemon/indirect.c   |   10 +++++-----
9a499a
 lib/dev-ioctl-lib.c |   21 +++++++++++++--------
9a499a
 4 files changed, 21 insertions(+), 15 deletions(-)
9a499a
9a499a
--- autofs-5.1.4.orig/CHANGELOG
9a499a
+++ autofs-5.1.4/CHANGELOG
9a499a
@@ -19,6 +19,7 @@
9a499a
 - pass mapent_cache to update_offset_entry().
9a499a
 - fix inconsistent locking in parse_mount().
9a499a
 - remove unused mount offset list lock functions.
9a499a
+- eliminate count_mounts() from expire_proc_indirect().
9a499a
 
9a499a
 xx/xx/2018 autofs-5.1.5
9a499a
 - fix flag file permission.
9a499a
--- autofs-5.1.4.orig/daemon/direct.c
9a499a
+++ autofs-5.1.4/daemon/direct.c
9a499a
@@ -884,7 +884,7 @@ cont:
9a499a
 			ioctlfd = me->ioctlfd;
9a499a
 
9a499a
 			ret = ops->expire(ap->logopt, ioctlfd, mnt->mp, how);
9a499a
-			if (ret) {
9a499a
+			if (ret == 1) {
9a499a
 				left++;
9a499a
 				pthread_setcancelstate(cur_state, NULL);
9a499a
 				continue;
9a499a
@@ -910,7 +910,7 @@ cont:
9a499a
 
9a499a
 		pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cur_state);
9a499a
 		ret = ops->expire(ap->logopt, ioctlfd, mnt->mp, how);
9a499a
-		if (ret)
9a499a
+		if (ret == 1)
9a499a
 			left++;
9a499a
 		pthread_setcancelstate(cur_state, NULL);
9a499a
 	}
9a499a
--- autofs-5.1.4.orig/daemon/indirect.c
9a499a
+++ autofs-5.1.4/daemon/indirect.c
9a499a
@@ -358,7 +358,6 @@ void *expire_proc_indirect(void *arg)
9a499a
 	struct expire_args ec;
9a499a
 	unsigned int how;
9a499a
 	int offsets, submnts, count;
9a499a
-	int retries;
9a499a
 	int ioctlfd, cur_state;
9a499a
 	int status, ret, left;
9a499a
 
9a499a
@@ -496,7 +495,7 @@ void *expire_proc_indirect(void *arg)
9a499a
 
9a499a
 		pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cur_state);
9a499a
 		ret = ops->expire(ap->logopt, ioctlfd, mnt->mp, how);
9a499a
-		if (ret)
9a499a
+		if (ret == 1)
9a499a
 			left++;
9a499a
 		pthread_setcancelstate(cur_state, NULL);
9a499a
 	}
9a499a
@@ -507,10 +506,11 @@ void *expire_proc_indirect(void *arg)
9a499a
 	 * so we need to umount or unlink them here.
9a499a
 	 */
9a499a
 	pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cur_state);
9a499a
-	retries = (count_mounts(ap, ap->path, ap->dev) + 1);
9a499a
-	while (retries--) {
9a499a
+	while (1) {
9a499a
 		ret = ops->expire(ap->logopt, ap->ioctlfd, ap->path, how);
9a499a
-		if (ret)
9a499a
+		if (ret != 0 && errno == EAGAIN)
9a499a
+			break;
9a499a
+		if (ret == 1)
9a499a
 			left++;
9a499a
 	}
9a499a
 	pthread_setcancelstate(cur_state, NULL);
9a499a
--- autofs-5.1.4.orig/lib/dev-ioctl-lib.c
9a499a
+++ autofs-5.1.4/lib/dev-ioctl-lib.c
9a499a
@@ -650,6 +650,7 @@ static int expire(unsigned int logopt,
9a499a
 {
9a499a
 	int ret, retries = EXPIRE_RETRIES;
9a499a
 	unsigned int may_umount;
9a499a
+	int save_errno = 0;
9a499a
 
9a499a
 	while (retries--) {
9a499a
 		struct timespec tm = {0, 100000000};
9a499a
@@ -657,9 +658,11 @@ static int expire(unsigned int logopt,
9a499a
 		/* Ggenerate expire message for the mount. */
9a499a
 		ret = ioctl(fd, cmd, arg);
9a499a
 		if (ret == -1) {
9a499a
+			save_errno = errno;
9a499a
+
9a499a
 			/* Mount has gone away */
9a499a
 			if (errno == EBADF || errno == EINVAL)
9a499a
-				return 0;
9a499a
+				break;
9a499a
 
9a499a
 			/*
9a499a
 			 * Other than EAGAIN is an expire error so continue.
9a499a
@@ -673,14 +676,16 @@ static int expire(unsigned int logopt,
9a499a
 		nanosleep(&tm, NULL);
9a499a
 	}
9a499a
 
9a499a
-	may_umount = 0;
9a499a
-	if (ctl.ops->askumount(logopt, ioctlfd, &may_umount))
9a499a
-		return -1;
9a499a
-
9a499a
-	if (!may_umount)
9a499a
-		return 1;
9a499a
+	if (!ret || save_errno == EAGAIN) {
9a499a
+		may_umount = 0;
9a499a
+		if (!ctl.ops->askumount(logopt, ioctlfd, &may_umount)) {
9a499a
+			if (!may_umount)
9a499a
+				ret = 1;
9a499a
+		}
9a499a
+	}
9a499a
+	errno = save_errno;
9a499a
 
9a499a
-	return 0;
9a499a
+	return ret;
9a499a
 }
9a499a
 
9a499a
 static int dev_ioctl_expire(unsigned int logopt,