Blame SOURCES/autofs-5.1.7-set-offset-parent-in-update_offset_entry.patch

9a499a
autofs-5.1.7 - set offset parent in update_offset_entry()
9a499a
9a499a
From: Ian Kent <raven@themaw.net>
9a499a
9a499a
Avoid the list traversal in cache_set_parents() by setting the
9a499a
offset parent when updating the offset.
9a499a
9a499a
Signed-off-by: Ian Kent <raven@themaw.net>
9a499a
---
9a499a
 CHANGELOG           |    1 +
9a499a
 include/automount.h |    2 +-
9a499a
 lib/cache.c         |   26 +++++++++++---------------
9a499a
 modules/parse_sun.c |    5 ++++-
9a499a
 4 files changed, 17 insertions(+), 17 deletions(-)
9a499a
9a499a
--- autofs-5.1.4.orig/CHANGELOG
9a499a
+++ autofs-5.1.4/CHANGELOG
9a499a
@@ -7,6 +7,7 @@
9a499a
 - eliminate cache_lookup_offset() usage.
9a499a
 - fix is mounted check on non existent path.
9a499a
 - simplify cache_get_parent().
9a499a
+- set offset parent in update_offset_entry().
9a499a
 
9a499a
 xx/xx/2018 autofs-5.1.5
9a499a
 - fix flag file permission.
9a499a
--- autofs-5.1.4.orig/include/automount.h
9a499a
+++ autofs-5.1.4/include/automount.h
9a499a
@@ -207,7 +207,7 @@ struct mapent *cache_partial_match_wild(
9a499a
 int cache_add(struct mapent_cache *mc, struct map_source *ms, const char *key, const char *mapent, time_t age);
9a499a
 int cache_update_offset(struct mapent_cache *mc, const char *mkey, const char *key, const char *mapent, time_t age);
9a499a
 void cache_update_negative(struct mapent_cache *mc, struct map_source *ms, const char *key, time_t timeout);
9a499a
-int cache_set_parents(struct mapent *mm);
9a499a
+int cache_set_offset_parent(struct mapent_cache *mc, const char *offset);
9a499a
 int cache_update(struct mapent_cache *mc, struct map_source *ms, const char *key, const char *mapent, time_t age);
9a499a
 int cache_delete(struct mapent_cache *mc, const char *key);
9a499a
 int cache_delete_offset(struct mapent_cache *mc, const char *key);
9a499a
--- autofs-5.1.4.orig/lib/cache.c
9a499a
+++ autofs-5.1.4/lib/cache.c
9a499a
@@ -834,25 +834,21 @@ static struct mapent *get_offset_parent(
9a499a
 	return NULL;
9a499a
 }
9a499a
 
9a499a
-int cache_set_parents(struct mapent *mm)
9a499a
+int cache_set_offset_parent(struct mapent_cache *mc, const char *offset)
9a499a
 {
9a499a
-	struct list_head *multi_head, *p;
9a499a
-	struct mapent *this;
9a499a
+	struct mapent *this, *parent;
9a499a
 
9a499a
-	if (!mm->multi)
9a499a
+	this = cache_lookup_distinct(mc, offset);
9a499a
+	if (!this)
9a499a
+		return 0;
9a499a
+	if (!this->multi)
9a499a
 		return 0;
9a499a
 
9a499a
-	multi_head = &mm->multi->multi_list;
9a499a
-
9a499a
-	list_for_each(p, multi_head) {
9a499a
-		struct mapent *parent;
9a499a
-		this = list_entry(p, struct mapent, multi_list);
9a499a
-		parent = get_offset_parent(mm->mc, this->key);
9a499a
-		if (parent)
9a499a
-			this->parent = parent;
9a499a
-		else
9a499a
-			this->parent = mm->multi;
9a499a
-	}
9a499a
+	parent = get_offset_parent(mc, offset);
9a499a
+	if (parent)
9a499a
+		this->parent = parent;
9a499a
+	else
9a499a
+		this->parent = this->multi;
9a499a
 
9a499a
 	return 1;
9a499a
 }
9a499a
--- autofs-5.1.4.orig/modules/parse_sun.c
9a499a
+++ autofs-5.1.4/modules/parse_sun.c
9a499a
@@ -861,6 +861,10 @@ update_offset_entry(struct autofs_point
9a499a
 	}
9a499a
 
9a499a
 	ret = cache_update_offset(mc, name, m_key, m_mapent, age);
9a499a
+
9a499a
+	if (!cache_set_offset_parent(mc, m_key))
9a499a
+		error(ap->logopt, "failed to set offset parent");
9a499a
+
9a499a
 	if (ret == CHE_DUPLICATE) {
9a499a
 		warn(ap->logopt, MODPREFIX
9a499a
 		     "syntax error or duplicate offset %s -> %s", path, loc);
9a499a
@@ -1615,7 +1619,6 @@ dont_expand:
9a499a
 		 */
9a499a
 		if (me == me->multi)
9a499a
 			clean_stale_multi_triggers(ap, me, NULL, NULL);
9a499a
-		cache_set_parents(me);
9a499a
 
9a499a
 		rv = mount_subtree(ap, me, name, NULL, options, ctxt);
9a499a