Blame SOURCES/autofs-5.1.7-fix-mnts_get_expire_list-expire-list-construction.patch

9a499a
autofs-5.1.7 - fix mnts_get_expire_list() expire list construction
9a499a
9a499a
From: Ian Kent <raven@themaw.net>
9a499a
9a499a
The mnts_get_expire_list() function is supposed to return an ordered
9a499a
list of expire candidates but it is not checking the mounted status
9a499a
of list entries and is returning a larger list than is needed.
9a499a
9a499a
Signed-off-by: Ian Kent <raven@themaw.net>
9a499a
---
9a499a
 CHANGELOG    |    1 +
9a499a
 lib/mounts.c |    3 +++
9a499a
 2 files changed, 4 insertions(+)
9a499a
9a499a
--- autofs-5.1.4.orig/CHANGELOG
9a499a
+++ autofs-5.1.4/CHANGELOG
9a499a
@@ -13,6 +13,7 @@
9a499a
 - refactor umount_multi_triggers().
9a499a
 - eliminate clean_stale_multi_triggers().
9a499a
 - simplify mount_subtree() mount check.
9a499a
+- fix mnts_get_expire_list() expire list construction.
9a499a
 
9a499a
 xx/xx/2018 autofs-5.1.5
9a499a
 - fix flag file permission.
9a499a
--- autofs-5.1.4.orig/lib/mounts.c
9a499a
+++ autofs-5.1.4/lib/mounts.c
9a499a
@@ -1364,6 +1364,9 @@ void mnts_get_expire_list(struct list_he
9a499a
 	list_for_each_entry(mnt, &ap->mounts, mount) {
9a499a
 		struct node *n;
9a499a
 
9a499a
+		if (!(mnt->flags & MNTS_MOUNTED))
9a499a
+			continue;
9a499a
+
9a499a
 		__mnts_get_mount(mnt);
9a499a
 
9a499a
 		if (!tree) {