[dpdk-dev] devtools: add git log checks for nvm, tso, Vlan

Message ID 20170126141647.23584-1-ferruh.yigit@intel.com (mailing list archive)
State Accepted, archived
Headers

Checks

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

Commit Message

Ferruh Yigit Jan. 26, 2017, 2:16 p.m. UTC
  Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
 devtools/check-git-log.sh | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
  

Comments

Thomas Monjalon Jan. 29, 2017, 2:45 p.m. UTC | #1
> 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 62b5f43..52b8659 100755
--- a/devtools/check-git-log.sh
+++ b/devtools/check-git-log.sh
@@ -128,13 +128,15 @@  bad=$(echo "$headlines" | grep -E --color=always \
 	-e ':.*\<mac\>' \
 	-e ':.*\<mtu\>' \
 	-e ':.*\<nic\>' \
+	-e ':.*\<nvm\>' \
 	-e ':.*\<numa\>' \
 	-e ':.*\<pci\>' \
 	-e ':.*\<pmd\>' \
 	-e ':.*\<rss\>' \
 	-e ':.*\<tile-gx\>' \
 	-e ':.*\<tilegx\>' \
-	-e ':.*\<vlan\>' \
+	-e ':.*\<tso\>' \
+	-e ':.*\<[Vv]lan\>' \
 	| sed 's,^,\t,')
 [ -z "$bad" ] || printf "Wrong headline lowercase:\n$bad\n"