DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH 0/2] have crypto drivers use a standard map file name format
@ 2017-09-14 16:02 Bruce Richardson
  2017-09-14 16:02 ` [dpdk-dev] [PATCH 1/2] crypto/aesni_mb: rename map file to standard name Bruce Richardson
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Bruce Richardson @ 2017-09-14 16:02 UTC (permalink / raw)
  To: pablo.de.lara.guarch, declan.doherty, jerin.jacob; +Cc: dev, Bruce Richardson

rename some of the version.map files that don't match the standard naming
convention. For future meson build system, this will save us having to
specify for each driver what the filename of its map file is.

Bruce Richardson (2):
  crypto/aesni_mb: rename map file to standard name
  crypto/armv8: rename map file to standard name

 drivers/crypto/aesni_mb/Makefile                                        | 2 +-
 .../{rte_pmd_aesni_version.map => rte_pmd_aesni_mb_version.map}         | 0
 drivers/crypto/armv8/Makefile                                           | 2 +-
 .../armv8/{rte_armv8_pmd_version.map => rte_pmd_armv8_version.map}      | 0
 4 files changed, 2 insertions(+), 2 deletions(-)
 rename drivers/crypto/aesni_mb/{rte_pmd_aesni_version.map => rte_pmd_aesni_mb_version.map} (100%)
 rename drivers/crypto/armv8/{rte_armv8_pmd_version.map => rte_pmd_armv8_version.map} (100%)

-- 
2.13.5

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

* [dpdk-dev] [PATCH 1/2] crypto/aesni_mb: rename map file to standard name
  2017-09-14 16:02 [dpdk-dev] [PATCH 0/2] have crypto drivers use a standard map file name format Bruce Richardson
@ 2017-09-14 16:02 ` Bruce Richardson
  2017-09-14 16:02 ` [dpdk-dev] [PATCH 2/2] crypto/armv8: " Bruce Richardson
  2017-09-18  9:35 ` [dpdk-dev] [PATCH 0/2] have crypto drivers use a standard map file name format Zhang, Roy Fan
  2 siblings, 0 replies; 5+ messages in thread
From: Bruce Richardson @ 2017-09-14 16:02 UTC (permalink / raw)
  To: pablo.de.lara.guarch, declan.doherty, jerin.jacob; +Cc: dev, Bruce Richardson

Naming convention for crypto drivers is "rte_pmd_<name>_version.map"

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 drivers/crypto/aesni_mb/Makefile                                        | 2 +-
 .../{rte_pmd_aesni_version.map => rte_pmd_aesni_mb_version.map}         | 0
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename drivers/crypto/aesni_mb/{rte_pmd_aesni_version.map => rte_pmd_aesni_mb_version.map} (100%)

diff --git a/drivers/crypto/aesni_mb/Makefile b/drivers/crypto/aesni_mb/Makefile
index 611d4123b..e094178ce 100644
--- a/drivers/crypto/aesni_mb/Makefile
+++ b/drivers/crypto/aesni_mb/Makefile
@@ -47,7 +47,7 @@ CFLAGS += $(WERROR_FLAGS)
 LIBABIVER := 1
 
 # versioning export map
-EXPORT_MAP := rte_pmd_aesni_version.map
+EXPORT_MAP := rte_pmd_aesni_mb_version.map
 
 # external library dependencies
 CFLAGS += -I$(AESNI_MULTI_BUFFER_LIB_PATH)
diff --git a/drivers/crypto/aesni_mb/rte_pmd_aesni_version.map b/drivers/crypto/aesni_mb/rte_pmd_aesni_mb_version.map
similarity index 100%
rename from drivers/crypto/aesni_mb/rte_pmd_aesni_version.map
rename to drivers/crypto/aesni_mb/rte_pmd_aesni_mb_version.map
-- 
2.13.5

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

* [dpdk-dev] [PATCH 2/2] crypto/armv8: rename map file to standard name
  2017-09-14 16:02 [dpdk-dev] [PATCH 0/2] have crypto drivers use a standard map file name format Bruce Richardson
  2017-09-14 16:02 ` [dpdk-dev] [PATCH 1/2] crypto/aesni_mb: rename map file to standard name Bruce Richardson
@ 2017-09-14 16:02 ` Bruce Richardson
  2017-09-18  9:35 ` [dpdk-dev] [PATCH 0/2] have crypto drivers use a standard map file name format Zhang, Roy Fan
  2 siblings, 0 replies; 5+ messages in thread
From: Bruce Richardson @ 2017-09-14 16:02 UTC (permalink / raw)
  To: pablo.de.lara.guarch, declan.doherty, jerin.jacob; +Cc: dev, Bruce Richardson

Naming convention for crypto drivers is "rte_pmd_<name>_version.map"

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 drivers/crypto/armv8/Makefile                                           | 2 +-
 .../armv8/{rte_armv8_pmd_version.map => rte_pmd_armv8_version.map}      | 0
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename drivers/crypto/armv8/{rte_armv8_pmd_version.map => rte_pmd_armv8_version.map} (100%)

diff --git a/drivers/crypto/armv8/Makefile b/drivers/crypto/armv8/Makefile
index 86611fa2e..082fbf54b 100644
--- a/drivers/crypto/armv8/Makefile
+++ b/drivers/crypto/armv8/Makefile
@@ -51,7 +51,7 @@ CFLAGS += $(WERROR_FLAGS)
 LIBABIVER := 1
 
 # versioning export map
-EXPORT_MAP := rte_armv8_pmd_version.map
+EXPORT_MAP := rte_pmd_armv8_version.map
 
 # external library dependencies
 CFLAGS += -I$(ARMV8_CRYPTO_LIB_PATH)
diff --git a/drivers/crypto/armv8/rte_armv8_pmd_version.map b/drivers/crypto/armv8/rte_pmd_armv8_version.map
similarity index 100%
rename from drivers/crypto/armv8/rte_armv8_pmd_version.map
rename to drivers/crypto/armv8/rte_pmd_armv8_version.map
-- 
2.13.5

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

* Re: [dpdk-dev] [PATCH 0/2] have crypto drivers use a standard map file name format
  2017-09-14 16:02 [dpdk-dev] [PATCH 0/2] have crypto drivers use a standard map file name format Bruce Richardson
  2017-09-14 16:02 ` [dpdk-dev] [PATCH 1/2] crypto/aesni_mb: rename map file to standard name Bruce Richardson
  2017-09-14 16:02 ` [dpdk-dev] [PATCH 2/2] crypto/armv8: " Bruce Richardson
@ 2017-09-18  9:35 ` Zhang, Roy Fan
  2017-09-21  8:32   ` De Lara Guarch, Pablo
  2 siblings, 1 reply; 5+ messages in thread
From: Zhang, Roy Fan @ 2017-09-18  9:35 UTC (permalink / raw)
  To: Richardson, Bruce, De Lara Guarch, Pablo, Doherty, Declan, jerin.jacob
  Cc: dev, Richardson, Bruce


> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Bruce Richardson
> Sent: Thursday, September 14, 2017 5:02 PM
> To: De Lara Guarch, Pablo <pablo.de.lara.guarch@intel.com>; Doherty,
> Declan <declan.doherty@intel.com>; jerin.jacob@caviumnetworks.com
> Cc: dev@dpdk.org; Richardson, Bruce <bruce.richardson@intel.com>
> Subject: [dpdk-dev] [PATCH 0/2] have crypto drivers use a standard map file
> name format
> 
> rename some of the version.map files that don't match the standard naming
> convention. For future meson build system, this will save us having to specify
> for each driver what the filename of its map file is.
> 
> Bruce Richardson (2):
>   crypto/aesni_mb: rename map file to standard name
>   crypto/armv8: rename map file to standard name
> 
>  drivers/crypto/aesni_mb/Makefile                                        | 2 +-
>  .../{rte_pmd_aesni_version.map => rte_pmd_aesni_mb_version.map}
> | 0
>  drivers/crypto/armv8/Makefile                                           | 2 +-
>  .../armv8/{rte_armv8_pmd_version.map => rte_pmd_armv8_version.map}
> | 0
>  4 files changed, 2 insertions(+), 2 deletions(-)  rename
> drivers/crypto/aesni_mb/{rte_pmd_aesni_version.map =>
> rte_pmd_aesni_mb_version.map} (100%)  rename
> drivers/crypto/armv8/{rte_armv8_pmd_version.map =>
> rte_pmd_armv8_version.map} (100%)
> 
> --
> 2.13.5

Series Acked by: Fan Zhang <roy.fan.zhang@intel.com>

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

* Re: [dpdk-dev] [PATCH 0/2] have crypto drivers use a standard map file name format
  2017-09-18  9:35 ` [dpdk-dev] [PATCH 0/2] have crypto drivers use a standard map file name format Zhang, Roy Fan
@ 2017-09-21  8:32   ` De Lara Guarch, Pablo
  0 siblings, 0 replies; 5+ messages in thread
From: De Lara Guarch, Pablo @ 2017-09-21  8:32 UTC (permalink / raw)
  To: Zhang, Roy Fan, Richardson, Bruce, Doherty, Declan, jerin.jacob
  Cc: dev, Richardson, Bruce



> -----Original Message-----
> From: Zhang, Roy Fan
> Sent: Monday, September 18, 2017 10:35 AM
> To: Richardson, Bruce <bruce.richardson@intel.com>; De Lara Guarch,
> Pablo <pablo.de.lara.guarch@intel.com>; Doherty, Declan
> <declan.doherty@intel.com>; jerin.jacob@caviumnetworks.com
> Cc: dev@dpdk.org; Richardson, Bruce <bruce.richardson@intel.com>
> Subject: RE: [dpdk-dev] [PATCH 0/2] have crypto drivers use a standard
> map file name format
> 
> 
> > -----Original Message-----
> > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Bruce Richardson
> > Sent: Thursday, September 14, 2017 5:02 PM
> > To: De Lara Guarch, Pablo <pablo.de.lara.guarch@intel.com>; Doherty,
> > Declan <declan.doherty@intel.com>; jerin.jacob@caviumnetworks.com
> > Cc: dev@dpdk.org; Richardson, Bruce <bruce.richardson@intel.com>
> > Subject: [dpdk-dev] [PATCH 0/2] have crypto drivers use a standard map
> > file name format
> >
> > rename some of the version.map files that don't match the standard
> > naming convention. For future meson build system, this will save us
> > having to specify for each driver what the filename of its map file is.
> >
> > Bruce Richardson (2):
> >   crypto/aesni_mb: rename map file to standard name
> >   crypto/armv8: rename map file to standard name
> >
> >  drivers/crypto/aesni_mb/Makefile                                        | 2 +-
> >  .../{rte_pmd_aesni_version.map => rte_pmd_aesni_mb_version.map}
> > | 0
> >  drivers/crypto/armv8/Makefile                                           | 2 +-
> >  .../armv8/{rte_armv8_pmd_version.map =>
> rte_pmd_armv8_version.map}
> > | 0
> >  4 files changed, 2 insertions(+), 2 deletions(-)  rename
> > drivers/crypto/aesni_mb/{rte_pmd_aesni_version.map =>
> > rte_pmd_aesni_mb_version.map} (100%)  rename
> > drivers/crypto/armv8/{rte_armv8_pmd_version.map =>
> > rte_pmd_armv8_version.map} (100%)
> >
> > --
> > 2.13.5
> 
> Series Acked by: Fan Zhang <roy.fan.zhang@intel.com>

Applied to dpdk-next-crypto.
Thanks,

Pablo

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

end of thread, other threads:[~2017-09-21  8:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-14 16:02 [dpdk-dev] [PATCH 0/2] have crypto drivers use a standard map file name format Bruce Richardson
2017-09-14 16:02 ` [dpdk-dev] [PATCH 1/2] crypto/aesni_mb: rename map file to standard name Bruce Richardson
2017-09-14 16:02 ` [dpdk-dev] [PATCH 2/2] crypto/armv8: " Bruce Richardson
2017-09-18  9:35 ` [dpdk-dev] [PATCH 0/2] have crypto drivers use a standard map file name format Zhang, Roy Fan
2017-09-21  8:32   ` De Lara Guarch, Pablo

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).