Blame SOURCES/autofs-5.1.7-simplify-get_parent.patch

9a499a
autofs-5.1.7 - simplify cache_get_parent()
9a499a
9a499a
From: Ian Kent <raven@themaw.net>
9a499a
9a499a
Eliminate the list traversal from get_parent() and rename it to
9a499a
get_offset_parent() to better describe it's usage.
9a499a
9a499a
Signed-off-by: Ian Kent <raven@themaw.net>
9a499a
---
9a499a
 CHANGELOG   |    1 +
9a499a
 lib/cache.c |   46 ++++++++++++++++++++++++++++------------------
9a499a
 2 files changed, 29 insertions(+), 18 deletions(-)
9a499a
9a499a
--- autofs-5.1.4.orig/CHANGELOG
9a499a
+++ autofs-5.1.4/CHANGELOG
9a499a
@@ -6,6 +6,7 @@
9a499a
 - fix mnts_remove_amdmount() uses wrong list.
9a499a
 - eliminate cache_lookup_offset() usage.
9a499a
 - fix is mounted check on non existent path.
9a499a
+- simplify cache_get_parent().
9a499a
 
9a499a
 xx/xx/2018 autofs-5.1.5
9a499a
 - fix flag file permission.
9a499a
--- autofs-5.1.4.orig/lib/cache.c
9a499a
+++ autofs-5.1.4/lib/cache.c
9a499a
@@ -797,47 +797,57 @@ void cache_update_negative(struct mapent
9a499a
 }
9a499a
 
9a499a
 
9a499a
-static struct mapent *get_parent(const char *key, struct list_head *head, struct list_head **pos)
9a499a
+static struct mapent *get_offset_parent(struct mapent_cache *mc,
9a499a
+					const char *key)
9a499a
 {
9a499a
-	struct list_head *next;
9a499a
-	struct mapent *this, *last;
9a499a
-	int eq;
9a499a
+	struct mapent *me;
9a499a
+	char *parent, *tail;
9a499a
+	int key_len;
9a499a
 
9a499a
-	last = NULL;
9a499a
-	next = *pos ? (*pos)->next : head->next;
9a499a
+	key_len = strlen(key);
9a499a
 
9a499a
-	list_for_each(next, head) {
9a499a
-		this = list_entry(next, struct mapent, multi_list);
9a499a
+	/* Check if this is the root offset */
9a499a
+	if (key[key_len - 1] == '/')
9a499a
+		return NULL;
9a499a
 
9a499a
-		if (!strcmp(this->key, key))
9a499a
+	parent = strdup(key);
9a499a
+	tail = &parent[key_len - 1];
9a499a
+
9a499a
+	while (*tail) {
9a499a
+		while (*tail != '/')
9a499a
+			tail--;
9a499a
+
9a499a
+		*tail = 0;
9a499a
+
9a499a
+		tail--;
9a499a
+		if (tail == parent)
9a499a
 			break;
9a499a
 
9a499a
-		eq = strncmp(this->key, key, strlen(this->key));
9a499a
-		if (eq == 0) {
9a499a
-			*pos = next;
9a499a
-			last = this;
9a499a
-			continue;
9a499a
+		me = cache_lookup_distinct(mc, parent);
9a499a
+		if (me) {
9a499a
+			free(parent);
9a499a
+			return me;
9a499a
 		}
9a499a
 	}
9a499a
+	free(parent);
9a499a
 
9a499a
-	return last;
9a499a
+	return NULL;
9a499a
 }
9a499a
 
9a499a
 int cache_set_parents(struct mapent *mm)
9a499a
 {
9a499a
-	struct list_head *multi_head, *p, *pos;
9a499a
+	struct list_head *multi_head, *p;
9a499a
 	struct mapent *this;
9a499a
 
9a499a
 	if (!mm->multi)
9a499a
 		return 0;
9a499a
 
9a499a
-	pos = NULL;
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_parent(this->key, multi_head, &pos;;
9a499a
+		parent = get_offset_parent(mm->mc, this->key);
9a499a
 		if (parent)
9a499a
 			this->parent = parent;
9a499a
 		else