[dpdk-dev] devtools: add git log checks for vDPA MSS and UDP

Message ID 20180427132307.117503-1-ferruh.yigit@intel.com (mailing list archive)
State Superseded, archived
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:23 p.m. UTC
  Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
 devtools/check-git-log.sh | 3 +++
 1 file changed, 3 insertions(+)
  

Patch

diff --git a/devtools/check-git-log.sh b/devtools/check-git-log.sh
index c601f6ae9..2dfa3a1cd 100755
--- a/devtools/check-git-log.sh
+++ b/devtools/check-git-log.sh
@@ -129,6 +129,7 @@  bad=$(echo "$headlines" | grep -E --color=always \
 	-e ':.*\<lro\>' \
 	-e ':.*\<lsc\>' \
 	-e ':.*\<mac\>' \
+	-e ':.*\<mss\>' \
 	-e ':.*\<mtu\>' \
 	-e ':.*\<nic\>' \
 	-e ':.*\<nvm\>' \
@@ -138,7 +139,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"