[dpdk-dev,v2] devtools: add git log checks for acronyms

Message ID 20180427134232.94035-1-ferruh.yigit@intel.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK

Commit Message

Ferruh Yigit April 27, 2018, 1:42 p.m. UTC
  checks added for vDPA, MSS, UDP, EEPROM

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
v2:
* Add more checks: eeprom
---
 devtools/check-git-log.sh | 4 ++++
 1 file changed, 4 insertions(+)
  

Comments

Thomas Monjalon May 22, 2018, 9:07 p.m. UTC | #1
27/04/2018 15:42, Ferruh Yigit:
> checks added for vDPA, MSS, UDP, EEPROM
> 
> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>

Applied, thanks
  

Patch

diff --git a/devtools/check-git-log.sh b/devtools/check-git-log.sh
index c601f6ae9..c8c149685 100755
--- a/devtools/check-git-log.sh
+++ b/devtools/check-git-log.sh
@@ -123,12 +123,14 @@  bad=$(echo "$headlines" | grep -E --color=always \
 	-e ':.*\<armv8\>' \
 	-e ':.*\<crc\>' \
 	-e ':.*\<dma\>' \
+	-e ':.*\<eeprom\>' \
 	-e ':.*\<freebsd\>' \
 	-e ':.*\<iova\>' \
 	-e ':.*\<linux\>' \
 	-e ':.*\<lro\>' \
 	-e ':.*\<lsc\>' \
 	-e ':.*\<mac\>' \
+	-e ':.*\<mss\>' \
 	-e ':.*\<mtu\>' \
 	-e ':.*\<nic\>' \
 	-e ':.*\<nvm\>' \
@@ -138,7 +140,9 @@  bad=$(echo "$headlines" | grep -E --color=always \
 	-e ':.*\<rss\>' \
 	-e ':.*\<sctp\>' \
 	-e ':.*\<tso\>' \
+	-e ':.*\<udp\>' \
 	-e ':.*\<[Vv]lan\>' \
+	-e ':.*\<vdpa\>' \
 	-e ':.*\<vsi\>' \
 	| sed 's,^,\t,')
 [ -z "$bad" ] || printf "Wrong headline lowercase:\n$bad\n"