c5432960d9
Update to the head of the upstream staging branch * Previous patches 0001-0042 are included in the source tarball * Patches 0001-0032 are from the upstream staging branch Rename redhat patches * Previous patches 0043-0053 are now patches 0033-0043 Change back to using readline instead of libedit * The code the uses readline has been isolated from the code that is licensed gpl v2 only. Add libmpathutil libraries to spec file Add multipathc program to spec file Add multipath.conf systemd tempfile configuration to spec file Misc spec file cleanups
116 lines
2.9 KiB
Diff
116 lines
2.9 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Benjamin Marzinski <bmarzins@redhat.com>
|
|
Date: Wed, 9 Nov 2022 15:49:41 -0600
|
|
Subject: [PATCH] libmultipath: impove add_feature() variable names
|
|
|
|
Use descriptive names, instead of single letters. No functional changes.
|
|
|
|
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
|
|
Reviewed-by: Martin Wilck <mwilck@suse.com>
|
|
---
|
|
libmultipath/structs.c | 63 +++++++++++++++++++++---------------------
|
|
1 file changed, 32 insertions(+), 31 deletions(-)
|
|
|
|
diff --git a/libmultipath/structs.c b/libmultipath/structs.c
|
|
index 7a2ff589..f90bd0b6 100644
|
|
--- a/libmultipath/structs.c
|
|
+++ b/libmultipath/structs.c
|
|
@@ -604,65 +604,66 @@ first_path (const struct multipath * mpp)
|
|
return pgp?VECTOR_SLOT(pgp->paths, 0):NULL;
|
|
}
|
|
|
|
-int add_feature(char **f, const char *n)
|
|
+int add_feature(char **features_p, const char *new_feat)
|
|
{
|
|
- int c = 0, d, l;
|
|
- char *e, *t;
|
|
- const char *p;
|
|
+ int count = 0, new_count, len;
|
|
+ char *tmp, *feats;
|
|
+ const char *ptr;
|
|
|
|
- if (!f)
|
|
+ if (!features_p)
|
|
return 1;
|
|
|
|
/* Nothing to do */
|
|
- if (!n || *n == '\0')
|
|
+ if (!new_feat || *new_feat == '\0')
|
|
return 0;
|
|
|
|
- l = strlen(n);
|
|
- if (isspace(*n) || isspace(*(n + l - 1))) {
|
|
- condlog(0, "internal error: feature \"%s\" has leading or trailing spaces", n);
|
|
+ len = strlen(new_feat);
|
|
+ if (isspace(*new_feat) || isspace(*(new_feat + len - 1))) {
|
|
+ condlog(0, "internal error: feature \"%s\" has leading or trailing spaces",
|
|
+ new_feat);
|
|
return 1;
|
|
}
|
|
|
|
- p = n;
|
|
- d = 1;
|
|
- while (*p != '\0') {
|
|
- if (isspace(*p) && !isspace(*(p + 1)) && *(p + 1) != '\0')
|
|
- d++;
|
|
- p++;
|
|
+ ptr = new_feat;
|
|
+ new_count = 1;
|
|
+ while (*ptr != '\0') {
|
|
+ if (isspace(*ptr) && !isspace(*(ptr + 1)) && *(ptr + 1) != '\0')
|
|
+ new_count++;
|
|
+ ptr++;
|
|
}
|
|
|
|
/* default feature is null */
|
|
- if(!*f)
|
|
+ if(!*features_p)
|
|
{
|
|
- l = asprintf(&t, "%0d %s", d, n);
|
|
- if(l == -1)
|
|
+ len = asprintf(&feats, "%0d %s", new_count, new_feat);
|
|
+ if(len == -1)
|
|
return 1;
|
|
|
|
- *f = t;
|
|
+ *features_p = feats;
|
|
return 0;
|
|
}
|
|
|
|
/* Check if feature is already present */
|
|
- e = *f;
|
|
- while ((e = strstr(e, n)) != NULL) {
|
|
- if (isspace(*(e - 1)) &&
|
|
- (isspace(*(e + l)) || *(e + l) == '\0'))
|
|
+ tmp = *features_p;
|
|
+ while ((tmp = strstr(tmp, new_feat)) != NULL) {
|
|
+ if (isspace(*(tmp - 1)) &&
|
|
+ (isspace(*(tmp + len)) || *(tmp + len) == '\0'))
|
|
return 0;
|
|
- e += l;
|
|
+ tmp += len;
|
|
}
|
|
|
|
/* Get feature count */
|
|
- c = strtoul(*f, &e, 10);
|
|
- if (*f == e || (!isspace(*e) && *e != '\0')) {
|
|
- condlog(0, "parse error in feature string \"%s\"", *f);
|
|
+ count = strtoul(*features_p, &tmp, 10);
|
|
+ if (*features_p == tmp || (!isspace(*tmp) && *tmp != '\0')) {
|
|
+ condlog(0, "parse error in feature string \"%s\"", *features_p);
|
|
return 1;
|
|
}
|
|
- c += d;
|
|
- if (asprintf(&t, "%0d%s %s", c, e, n) < 0)
|
|
+ count += new_count;
|
|
+ if (asprintf(&feats, "%0d%s %s", count, tmp, new_feat) < 0)
|
|
return 1;
|
|
|
|
- free(*f);
|
|
- *f = t;
|
|
+ free(*features_p);
|
|
+ *features_p = feats;
|
|
|
|
return 0;
|
|
}
|