[dpdk-dev] devtools: add git log checks for vsi, lsc, crc

Message ID 20170417131336.25921-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 17, 2017, 1:13 p.m. UTC
  Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
 devtools/check-git-log.sh | 3 +++
 1 file changed, 3 insertions(+)
  

Comments

Thomas Monjalon April 25, 2017, 9:55 a.m. UTC | #1
17/04/2017 15:13, Ferruh Yigit:
> 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 8449d4f..910daba 100755
--- a/devtools/check-git-log.sh
+++ b/devtools/check-git-log.sh
@@ -121,10 +121,12 @@  bad=$(echo "$headlines" | grep -E --color=always \
 	-e ':.*\<arm\>' \
 	-e ':.*\<armv7\>' \
 	-e ':.*\<armv8\>' \
+	-e ':.*\<crc\>' \
 	-e ':.*\<dma\>' \
 	-e ':.*\<freebsd\>' \
 	-e ':.*\<linux\>' \
 	-e ':.*\<lro\>' \
+	-e ':.*\<lsc\>' \
 	-e ':.*\<mac\>' \
 	-e ':.*\<mtu\>' \
 	-e ':.*\<nic\>' \
@@ -135,6 +137,7 @@  bad=$(echo "$headlines" | grep -E --color=always \
 	-e ':.*\<rss\>' \
 	-e ':.*\<tso\>' \
 	-e ':.*\<[Vv]lan\>' \
+	-e ':.*\<vsi\>' \
 	| sed 's,^,\t,')
 [ -z "$bad" ] || printf "Wrong headline lowercase:\n$bad\n"