All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] devtools: add acronyms in dictionary for commit checks
@ 2021-11-10 17:41 Ferruh Yigit
  2021-11-25 11:39 ` Thomas Monjalon
  0 siblings, 1 reply; 5+ messages in thread
From: Ferruh Yigit @ 2021-11-10 17:41 UTC (permalink / raw)
  To: Thomas Monjalon; +Cc: Ferruh Yigit, dev

FD      -> File Descriptor
GUID    -> Globally Unique Identifier
Netlink -> Linux Netlink socket family
PCIe    -> Peripheral Component Interconnect Express

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
 devtools/words-case.txt | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/devtools/words-case.txt b/devtools/words-case.txt
index ada6910fa031..268d7edee2f4 100644
--- a/devtools/words-case.txt
+++ b/devtools/words-case.txt
@@ -13,6 +13,7 @@ DevX
 DMA
 eCPRI
 EEPROM
+FD
 FDIR
 FEC
 FreeBSD
@@ -20,6 +21,7 @@ FW
 GCC
 GENEVE
 GTPU
+GUID
 HW
 ICMP
 ID
@@ -44,12 +46,14 @@ MSI-X
 MSS
 MTU
 NEON
+Netlink
 NIC
 null
 NUMA
 NVGRE
 NVM
 PCI
+PCIe
 PF
 PHY
 PMD
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] devtools: add acronyms in dictionary for commit checks
  2021-11-10 17:41 [PATCH] devtools: add acronyms in dictionary for commit checks Ferruh Yigit
@ 2021-11-25 11:39 ` Thomas Monjalon
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2021-11-25 11:39 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: dev

10/11/2021 18:41, Ferruh Yigit:
> FD      -> File Descriptor
> GUID    -> Globally Unique Identifier
> Netlink -> Linux Netlink socket family
> PCIe    -> Peripheral Component Interconnect Express
> 
> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>

Applied, thanks.




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] devtools: add acronyms in dictionary for commit checks
  2024-03-20 12:40 Ferruh Yigit
  2024-03-20 13:01 ` Bruce Richardson
@ 2024-03-20 16:15 ` Tyler Retzlaff
  1 sibling, 0 replies; 5+ messages in thread
From: Tyler Retzlaff @ 2024-03-20 16:15 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: Thomas Monjalon, dev

On Wed, Mar 20, 2024 at 12:40:47PM +0000, Ferruh Yigit wrote:
> ELF      -> Executable and Linkable Format
> Ethernet -> with an uppercase “E”
> mark     -> 'mark' flow action, no need to capitalise
> max      -> maximum
> XSK      -> XDP Socket. XDP (eXpress Data Path)
> 
> Signed-off-by: Ferruh Yigit <ferruh.yigit@amd.com>
> ---

lgtm

Acked-by: Tyler Retzlaff <roretzla@linux.microsoft.com>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] devtools: add acronyms in dictionary for commit checks
  2024-03-20 12:40 Ferruh Yigit
@ 2024-03-20 13:01 ` Bruce Richardson
  2024-03-20 16:15 ` Tyler Retzlaff
  1 sibling, 0 replies; 5+ messages in thread
From: Bruce Richardson @ 2024-03-20 13:01 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: Thomas Monjalon, dev

On Wed, Mar 20, 2024 at 12:40:47PM +0000, Ferruh Yigit wrote:
> ELF      -> Executable and Linkable Format
> Ethernet -> with an uppercase “E”
> mark     -> 'mark' flow action, no need to capitalise
> max      -> maximum
> XSK      -> XDP Socket. XDP (eXpress Data Path)
> 
> Signed-off-by: Ferruh Yigit <ferruh.yigit@amd.com>
> ---
Acked-by: Bruce Richardson <bruce.richardson@intel.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] devtools: add acronyms in dictionary for commit checks
@ 2024-03-20 12:40 Ferruh Yigit
  2024-03-20 13:01 ` Bruce Richardson
  2024-03-20 16:15 ` Tyler Retzlaff
  0 siblings, 2 replies; 5+ messages in thread
From: Ferruh Yigit @ 2024-03-20 12:40 UTC (permalink / raw)
  To: Thomas Monjalon; +Cc: dev

ELF      -> Executable and Linkable Format
Ethernet -> with an uppercase “E”
mark     -> 'mark' flow action, no need to capitalise
max      -> maximum
XSK      -> XDP Socket. XDP (eXpress Data Path)

Signed-off-by: Ferruh Yigit <ferruh.yigit@amd.com>
---
 devtools/words-case.txt | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/devtools/words-case.txt b/devtools/words-case.txt
index 0200741ed862..a404cb0d20e3 100644
--- a/devtools/words-case.txt
+++ b/devtools/words-case.txt
@@ -16,7 +16,9 @@ DevX
 DMA
 eCPRI
 EEPROM
+ELF
 E-Switch
+Ethernet
 FD
 FDIR
 FEC
@@ -48,6 +50,8 @@ LMT
 LRO
 LSC
 MAC
+mark
+max
 MCAM
 MPLS
 MPU
@@ -114,3 +118,4 @@ VXLAN
 Windows
 XDP
 XOR
+XSK
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-03-20 16:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-10 17:41 [PATCH] devtools: add acronyms in dictionary for commit checks Ferruh Yigit
2021-11-25 11:39 ` Thomas Monjalon
2024-03-20 12:40 Ferruh Yigit
2024-03-20 13:01 ` Bruce Richardson
2024-03-20 16:15 ` Tyler Retzlaff

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.