From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 65977A058A; Sun, 12 Apr 2020 17:04:27 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 495D7293C; Sun, 12 Apr 2020 17:04:26 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id 25184FFA for ; Sun, 12 Apr 2020 17:04:24 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id 03CF0FAV016874; Sun, 12 Apr 2020 08:04:23 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0818; bh=B0/QaDFoYK/O1Ra9hfYS74N5PqXBYGs3IlOAAvFfsWM=; b=lsAceKfWLLJTHy1pHy+9GczM+3P7YGAcgZtZAcua11CYK/0jvttrk/JneVlYJUzh1WzI 0MgP+oDTll9Aru97BNVHeIZgmvNB38/7X4FTdcbXG3Rf6LdWVSVE65bmbY+obWmQ0/cf uA1EkborUUZNG+1DsAomXrc9rjKAvvIl8G8+jN+dZycMOGaekDxi8YtpySU1gP/8vL5i mo6fGsZGu+rgUL0kmyX0WHxQarOWWw1oh1C43yCXQoOAHXnAnk+LU8Qf0YmgrzA9BxCX nczcqd2Qm/q8HOCqLmLxZNlorLfx8q5s0Fg9ArNa4GCOLAu0EGCoCy4dx2REEbVGTVax iw== Received: from sc-exch02.marvell.com ([199.233.58.182]) by mx0a-0016f401.pphosted.com with ESMTP id 30bb8qbm0u-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Sun, 12 Apr 2020 08:04:23 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by SC-EXCH02.marvell.com (10.93.176.82) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Sun, 12 Apr 2020 08:04:22 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Sun, 12 Apr 2020 08:04:22 -0700 Received: from jerin-lab.marvell.com (jerin-lab.marvell.com [10.28.34.14]) by maili.marvell.com (Postfix) with ESMTP id 81E2E3F703F; Sun, 12 Apr 2020 08:04:20 -0700 (PDT) From: To: Thomas Monjalon CC: , , , Jerin Jacob Date: Sun, 12 Apr 2020 20:34:27 +0530 Message-ID: <20200412150427.2786199-1-jerinj@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200412144047.2125201-1-jerinj@marvell.com> References: <20200412144047.2125201-1-jerinj@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.138, 18.0.676 definitions=2020-04-12_06:2020-04-11, 2020-04-12 signatures=0 Subject: [dpdk-dev] [PATCH v2] doc: use glob terminology X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" From: Jerin Jacob Glob is the terminology used in fnmatch man page. Use glob terminology across DPDK for shell pattern. Signed-off-by: Jerin Jacob --- v2: - Fix typo devtools/check-includes.sh | 2 +- lib/librte_eal/include/rte_log.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/devtools/check-includes.sh b/devtools/check-includes.sh index 3629ab4c7..ca49cd722 100755 --- a/devtools/check-includes.sh +++ b/devtools/check-includes.sh @@ -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 glob 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. # diff --git a/lib/librte_eal/include/rte_log.h b/lib/librte_eal/include/rte_log.h index a497e195d..fa60177c0 100644 --- a/lib/librte_eal/include/rte_log.h +++ b/lib/librte_eal/include/rte_log.h @@ -158,7 +158,7 @@ __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 glob. * * @param pattern * The match pattern identifying the log type. -- 2.25.1