DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] common/qat: fix build errors with incompatible IPSec lib
@ 2023-11-22 16:46 Bruce Richardson
  2023-11-22 17:00 ` Power, Ciara
  0 siblings, 1 reply; 3+ messages in thread
From: Bruce Richardson @ 2023-11-22 16:46 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, brian.dooley, Kai Ji, Pablo de Lara, Ciara Power

Since "find_library()" is used to find the libipsec_mb library, there is
a chance that an incompatible library will be found e.g. when doing
cross-builds. To fix this, we copy the logic from the crypto/ipsec_mb
driver to actually do a link-check on the library before deciding it can
be used.

Fixes: ca0ba0e48129 ("crypto/qat: default to IPsec MB for computations")
Cc: brian.dooley@intel.com

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 drivers/common/qat/meson.build | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/common/qat/meson.build b/drivers/common/qat/meson.build
index edc793ba95..5c36fbb270 100644
--- a/drivers/common/qat/meson.build
+++ b/drivers/common/qat/meson.build
@@ -43,7 +43,8 @@ else
     IMB_required_ver = '1.4.0'
     IMB_header = '#include<intel-ipsec-mb.h>'
     libipsecmb = cc.find_library('IPSec_MB', required: false)
-    if libipsecmb.found()
+    if libipsecmb.found() and meson.version().version_compare('>=0.60') and cc.links(
+            'int main(void) {return 0;}', dependencies: libipsecmb)
         # version comes with quotes, so we split based on " and take the middle
         imb_ver = cc.get_define('IMB_VERSION_STR',
             prefix : IMB_header).split('"')[1]
-- 
2.40.1


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

* RE: [PATCH] common/qat: fix build errors with incompatible IPSec lib
  2023-11-22 16:46 [PATCH] common/qat: fix build errors with incompatible IPSec lib Bruce Richardson
@ 2023-11-22 17:00 ` Power, Ciara
  2023-11-23  0:12   ` Thomas Monjalon
  0 siblings, 1 reply; 3+ messages in thread
From: Power, Ciara @ 2023-11-22 17:00 UTC (permalink / raw)
  To: Richardson, Bruce, dev; +Cc: Dooley, Brian, Ji, Kai, De Lara Guarch, Pablo



> -----Original Message-----
> From: Richardson, Bruce <bruce.richardson@intel.com>
> Sent: Wednesday, November 22, 2023 4:47 PM
> To: dev@dpdk.org
> Cc: Richardson, Bruce <bruce.richardson@intel.com>; Dooley, Brian
> <brian.dooley@intel.com>; Ji, Kai <kai.ji@intel.com>; De Lara Guarch, Pablo
> <pablo.de.lara.guarch@intel.com>; Power, Ciara <ciara.power@intel.com>
> Subject: [PATCH] common/qat: fix build errors with incompatible IPSec lib
> 
> Since "find_library()" is used to find the libipsec_mb library, there is a chance
> that an incompatible library will be found e.g. when doing cross-builds. To fix
> this, we copy the logic from the crypto/ipsec_mb driver to actually do a link-
> check on the library before deciding it can be used.
> 
> Fixes: ca0ba0e48129 ("crypto/qat: default to IPsec MB for computations")
> Cc: brian.dooley@intel.com
> 
> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> ---
>  drivers/common/qat/meson.build | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/common/qat/meson.build
> b/drivers/common/qat/meson.build index edc793ba95..5c36fbb270 100644
> --- a/drivers/common/qat/meson.build
> +++ b/drivers/common/qat/meson.build
> @@ -43,7 +43,8 @@ else
>      IMB_required_ver = '1.4.0'
>      IMB_header = '#include<intel-ipsec-mb.h>'
>      libipsecmb = cc.find_library('IPSec_MB', required: false)
> -    if libipsecmb.found()
> +    if libipsecmb.found() and meson.version().version_compare('>=0.60') and
> cc.links(
> +            'int main(void) {return 0;}', dependencies: libipsecmb)
>          # version comes with quotes, so we split based on " and take the middle
>          imb_ver = cc.get_define('IMB_VERSION_STR',
>              prefix : IMB_header).split('"')[1]
> --
> 2.40.1

Thanks Bruce,

Acked-by: Ciara Power <ciara.power@intel.com>

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

* Re: [PATCH] common/qat: fix build errors with incompatible IPSec lib
  2023-11-22 17:00 ` Power, Ciara
@ 2023-11-23  0:12   ` Thomas Monjalon
  0 siblings, 0 replies; 3+ messages in thread
From: Thomas Monjalon @ 2023-11-23  0:12 UTC (permalink / raw)
  To: Richardson, Bruce
  Cc: dev, Dooley, Brian, Ji, Kai, De Lara Guarch, Pablo, Power, Ciara

> > Since "find_library()" is used to find the libipsec_mb library, there is a chance
> > that an incompatible library will be found e.g. when doing cross-builds. To fix
> > this, we copy the logic from the crypto/ipsec_mb driver to actually do a link-
> > check on the library before deciding it can be used.
> > 
> > Fixes: ca0ba0e48129 ("crypto/qat: default to IPsec MB for computations")
> > Cc: brian.dooley@intel.com
> > 
> > Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> Acked-by: Ciara Power <ciara.power@intel.com>

Applied, thanks.




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

end of thread, other threads:[~2023-11-23  0:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-22 16:46 [PATCH] common/qat: fix build errors with incompatible IPSec lib Bruce Richardson
2023-11-22 17:00 ` Power, Ciara
2023-11-23  0:12   ` 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).