doc: use globbing terminology
authorJerin Jacob <jerinj@marvell.com>
Mon, 4 May 2020 13:45:37 +0000 (19:15 +0530)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 19 May 2020 14:05:17 +0000 (16:05 +0200)
Glob is the terminology used in fnmatch man page.
Use glob terminology across DPDK for shell pattern.

Signed-off-by: Jerin Jacob <jerinj@marvell.com>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
devtools/check-includes.sh
lib/librte_eal/common/eal_common_log.c
lib/librte_eal/include/rte_log.h

index 3629ab4..749b9b2 100755 (executable)
@@ -23,7 +23,7 @@
 # PEDANTIC_CFLAGS, PEDANTIC_CXXFLAGS and PEDANTIC_CPPFLAGS provide strict
 # C/C++ compilation flags.
 #
-# IGNORE contains a list of shell patterns matching files (relative to the
+# IGNORE contains a list of globbing patterns matching files (relative to the
 # include directory) to avoid. It is set by default to known DPDK headers
 # which must not be included on their own.
 #
index d7a5f9b..8835c8f 100644 (file)
@@ -29,7 +29,7 @@ struct rte_eal_opt_loglevel {
        TAILQ_ENTRY(rte_eal_opt_loglevel) next;
        /** Compiled regular expression obtained from the option */
        regex_t re_match;
-       /** Glob match string option */
+       /** Globbing pattern option */
        char *pattern;
        /** Log level value obtained from the option */
        uint32_t level;
@@ -207,7 +207,7 @@ int rte_log_save_regexp(const char *regex, int tmp)
        return rte_log_save_level(tmp, regex, NULL);
 }
 
-/* set log level based on glob (file match) pattern */
+/* set log level based on globbing pattern */
 int
 rte_log_set_level_pattern(const char *pattern, uint32_t level)
 {
index c020a3d..1789ede 100644 (file)
@@ -158,10 +158,10 @@ __rte_experimental
 bool rte_log_can_log(uint32_t logtype, uint32_t loglevel);
 
 /**
- * Set the log level for a given type based on shell pattern.
+ * Set the log level for a given type based on globbing pattern.
  *
  * @param pattern
- *   The match pattern identifying the log type.
+ *   The globbing pattern identifying the log type.
  * @param level
  *   The level to be set.
  * @return