summaryrefslogtreecommitdiff
path: root/backport/compat/backport-4.6.c
diff options
context:
space:
mode:
Diffstat (limited to 'backport/compat/backport-4.6.c')
-rw-r--r--backport/compat/backport-4.6.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/backport/compat/backport-4.6.c b/backport/compat/backport-4.6.c
index 54ff669d..8d0ecf56 100644
--- a/backport/compat/backport-4.6.c
+++ b/backport/compat/backport-4.6.c
@@ -75,3 +75,29 @@ int kstrtobool_from_user(const char __user *s, size_t count, bool *res)
return kstrtobool(buf, res);
}
EXPORT_SYMBOL_GPL(kstrtobool_from_user);
+
+/**
+ * match_string - matches given string in an array
+ * @array: array of strings
+ * @n: number of strings in the array or -1 for NULL terminated arrays
+ * @string: string to match with
+ *
+ * Return:
+ * index of a @string in the @array if matches, or %-EINVAL otherwise.
+ */
+int match_string(const char * const *array, size_t n, const char *string)
+{
+ int index;
+ const char *item;
+
+ for (index = 0; index < n; index++) {
+ item = array[index];
+ if (!item)
+ break;
+ if (!strcmp(item, string))
+ return index;
+ }
+
+ return -EINVAL;
+}
+EXPORT_SYMBOL(match_string);