devtools: add git log checks for TPID, LACP and RETA

Message ID 20190408163718.81576-1-ferruh.yigit@intel.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series devtools: add git log checks for TPID, LACP and RETA |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK
ci/intel-Performance-Testing success Performance Testing PASS
ci/mellanox-Performance-Testing success Performance Testing PASS

Commit Message

Ferruh Yigit April 8, 2019, 4:37 p.m. UTC
  Add case check to TPID, LACP and RETA abbreviations.

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
 devtools/check-git-log.sh | 3 +++
 1 file changed, 3 insertions(+)
  

Comments

Thomas Monjalon April 15, 2019, 10:19 p.m. UTC | #1
08/04/2019 18:37, Ferruh Yigit:
> Add case check to TPID, LACP and RETA abbreviations.
> 
> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
> ---
>  	-e ':.*\<tos\>' \
>  	-e ':.*\<tso\>' \
> +	-e ':.*\<tpid\>' \
>  	-e ':.*\<ttl\>' \

Applied with alphabetical order fixed, thanks
  

Patch

diff --git a/devtools/check-git-log.sh b/devtools/check-git-log.sh
index 09bc2d8f3..ac7da6898 100755
--- a/devtools/check-git-log.sh
+++ b/devtools/check-git-log.sh
@@ -100,6 +100,7 @@  bad=$(echo "$headlines" | grep -E --color=always \
 	-e ':.*\<eeprom\>' \
 	-e ':.*\<freebsd\>' \
 	-e ':.*\<iova\>' \
+	-e ':.*\<lacp\>' \
 	-e ':.*\<linux\>' \
 	-e ':.*\<lro\>' \
 	-e ':.*\<lsc\>' \
@@ -112,10 +113,12 @@  bad=$(echo "$headlines" | grep -E --color=always \
 	-e ':.*\<pci\>' \
 	-e ':.*\<phy\>' \
 	-e ':.*\<pmd\>' \
+	-e ':.*\<reta\>' \
 	-e ':.*\<rss\>' \
 	-e ':.*\<sctp\>' \
 	-e ':.*\<tos\>' \
 	-e ':.*\<tso\>' \
+	-e ':.*\<tpid\>' \
 	-e ':.*\<ttl\>' \
 	-e ':.*\<udp\>' \
 	-e ':.*\<[Vv]lan\>' \