* [dpdk-dev] [PATCH] devtools: add git log checks for TPID, LACP and RETA
@ 2019-04-08 16:37 Ferruh Yigit
2019-04-08 16:37 ` Ferruh Yigit
2019-04-15 22:19 ` Thomas Monjalon
0 siblings, 2 replies; 4+ messages in thread
From: Ferruh Yigit @ 2019-04-08 16:37 UTC (permalink / raw)
To: Thomas Monjalon; +Cc: dev
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(+)
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\>' \
--
2.20.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [dpdk-dev] [PATCH] devtools: add git log checks for TPID, LACP and RETA
2019-04-08 16:37 [dpdk-dev] [PATCH] devtools: add git log checks for TPID, LACP and RETA Ferruh Yigit
@ 2019-04-08 16:37 ` Ferruh Yigit
2019-04-15 22:19 ` Thomas Monjalon
1 sibling, 0 replies; 4+ messages in thread
From: Ferruh Yigit @ 2019-04-08 16:37 UTC (permalink / raw)
To: Thomas Monjalon; +Cc: dev
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(+)
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\>' \
--
2.20.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] devtools: add git log checks for TPID, LACP and RETA
2019-04-08 16:37 [dpdk-dev] [PATCH] devtools: add git log checks for TPID, LACP and RETA Ferruh Yigit
2019-04-08 16:37 ` Ferruh Yigit
@ 2019-04-15 22:19 ` Thomas Monjalon
2019-04-15 22:19 ` Thomas Monjalon
1 sibling, 1 reply; 4+ messages in thread
From: Thomas Monjalon @ 2019-04-15 22:19 UTC (permalink / raw)
To: Ferruh Yigit; +Cc: dev
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
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] devtools: add git log checks for TPID, LACP and RETA
2019-04-15 22:19 ` Thomas Monjalon
@ 2019-04-15 22:19 ` Thomas Monjalon
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Monjalon @ 2019-04-15 22:19 UTC (permalink / raw)
To: Ferruh Yigit; +Cc: dev
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
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-04-15 22:19 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-08 16:37 [dpdk-dev] [PATCH] devtools: add git log checks for TPID, LACP and RETA Ferruh Yigit
2019-04-08 16:37 ` Ferruh Yigit
2019-04-15 22:19 ` Thomas Monjalon
2019-04-15 22:19 ` Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).