DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] OpenSSL 3.0 released, deprecated functions - DPDK crypto compilation issues
@ 2021-09-15 10:31 Kusztal, ArkadiuszX
  2021-09-15 10:50 ` Akhil Goyal
  0 siblings, 1 reply; 4+ messages in thread
From: Kusztal, ArkadiuszX @ 2021-09-15 10:31 UTC (permalink / raw)
  To: dev; +Cc: Akhil Goyal, asomalap, Zhang, Roy Fan, Doherty, Declan

Hi,

OpenSSL 3.0 is now released and since some PMDs in DPDK depends on libcrypto deprecated now functions, anyone who install 3.0 may see compilation problems.
So we suggest in case adaptation cannot be made in time to put version constraint in meson dependencies "version : '<3.0.0'", it probably will not work with OpenSSL installed from source though (at least did not work for me).

Regards,
Arek



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

* Re: [dpdk-dev] OpenSSL 3.0 released, deprecated functions - DPDK crypto compilation issues
  2021-09-15 10:31 [dpdk-dev] OpenSSL 3.0 released, deprecated functions - DPDK crypto compilation issues Kusztal, ArkadiuszX
@ 2021-09-15 10:50 ` Akhil Goyal
  2021-09-15 12:01   ` Kusztal, ArkadiuszX
  2021-10-08 13:10   ` Zhang, Roy Fan
  0 siblings, 2 replies; 4+ messages in thread
From: Akhil Goyal @ 2021-09-15 10:50 UTC (permalink / raw)
  To: Kusztal, ArkadiuszX, dev; +Cc: asomalap, Zhang, Roy Fan, Doherty, Declan

Hi Arek,

Can you submit changes for the meson files needed to compile it with 3.0 if needed?

Regards,
Akhil

From: Kusztal, ArkadiuszX <arkadiuszx.kusztal@intel.com>
Sent: Wednesday, September 15, 2021 4:02 PM
To: dev@dpdk.org
Cc: Akhil Goyal <gakhil@marvell.com>; asomalap@amd.com; Zhang, Roy Fan <roy.fan.zhang@intel.com>; Doherty, Declan <declan.doherty@intel.com>
Subject: [EXT] OpenSSL 3.0 released, deprecated functions - DPDK crypto compilation issues

External Email
________________________________
Hi,

OpenSSL 3.0 is now released and since some PMDs in DPDK depends on libcrypto deprecated now functions, anyone who install 3.0 may see compilation problems.
So we suggest in case adaptation cannot be made in time to put version constraint in meson dependencies "version : '<3.0.0'", it probably will not work with OpenSSL installed from source though (at least did not work for me).

Regards,
Arek



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

* Re: [dpdk-dev] OpenSSL 3.0 released, deprecated functions - DPDK crypto compilation issues
  2021-09-15 10:50 ` Akhil Goyal
@ 2021-09-15 12:01   ` Kusztal, ArkadiuszX
  2021-10-08 13:10   ` Zhang, Roy Fan
  1 sibling, 0 replies; 4+ messages in thread
From: Kusztal, ArkadiuszX @ 2021-09-15 12:01 UTC (permalink / raw)
  To: Akhil Goyal, dev; +Cc: asomalap, Zhang, Roy Fan, Doherty, Declan

Sure Akhil, will do some more testing and will send (unless some better proposal come in). It needs to be backported as well.

From: Akhil Goyal <gakhil@marvell.com>
Sent: Wednesday, September 15, 2021 12:51 PM
To: Kusztal, ArkadiuszX <arkadiuszx.kusztal@intel.com>; dev@dpdk.org
Cc: asomalap@amd.com; Zhang, Roy Fan <roy.fan.zhang@intel.com>; Doherty, Declan <declan.doherty@intel.com>
Subject: RE: OpenSSL 3.0 released, deprecated functions - DPDK crypto compilation issues

Hi Arek,

Can you submit changes for the meson files needed to compile it with 3.0 if needed?

Regards,
Akhil

From: Kusztal, ArkadiuszX <arkadiuszx.kusztal@intel.com<mailto:arkadiuszx.kusztal@intel.com>>
Sent: Wednesday, September 15, 2021 4:02 PM
To: dev@dpdk.org<mailto:dev@dpdk.org>
Cc: Akhil Goyal <gakhil@marvell.com<mailto:gakhil@marvell.com>>; asomalap@amd.com<mailto:asomalap@amd.com>; Zhang, Roy Fan <roy.fan.zhang@intel.com<mailto:roy.fan.zhang@intel.com>>; Doherty, Declan <declan.doherty@intel.com<mailto:declan.doherty@intel.com>>
Subject: [EXT] OpenSSL 3.0 released, deprecated functions - DPDK crypto compilation issues

External Email
________________________________
Hi,

OpenSSL 3.0 is now released and since some PMDs in DPDK depends on libcrypto deprecated now functions, anyone who install 3.0 may see compilation problems.
So we suggest in case adaptation cannot be made in time to put version constraint in meson dependencies "version : '<3.0.0'", it probably will not work with OpenSSL installed from source though (at least did not work for me).

Regards,
Arek



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

* Re: [dpdk-dev] OpenSSL 3.0 released, deprecated functions - DPDK crypto compilation issues
  2021-09-15 10:50 ` Akhil Goyal
  2021-09-15 12:01   ` Kusztal, ArkadiuszX
@ 2021-10-08 13:10   ` Zhang, Roy Fan
  1 sibling, 0 replies; 4+ messages in thread
From: Zhang, Roy Fan @ 2021-10-08 13:10 UTC (permalink / raw)
  To: Akhil Goyal, Kusztal, ArkadiuszX, dev; +Cc: asomalap, Doherty, Declan

Hi Akhil,

Meson may pop warnings when detected the libcrypto APIs that are marked as deprecated – but for now it is still compliable.
For now shall we not touching it but fix the problem in future releases (we need to address before it is gone for sure)?

Regards,
Fan

From: Akhil Goyal <gakhil@marvell.com>
Sent: Wednesday, September 15, 2021 11:51 AM
To: Kusztal, ArkadiuszX <arkadiuszx.kusztal@intel.com>; dev@dpdk.org
Cc: asomalap@amd.com; Zhang, Roy Fan <roy.fan.zhang@intel.com>; Doherty, Declan <declan.doherty@intel.com>
Subject: RE: OpenSSL 3.0 released, deprecated functions - DPDK crypto compilation issues

Hi Arek,

Can you submit changes for the meson files needed to compile it with 3.0 if needed?

Regards,
Akhil

From: Kusztal, ArkadiuszX <arkadiuszx.kusztal@intel.com<mailto:arkadiuszx.kusztal@intel.com>>
Sent: Wednesday, September 15, 2021 4:02 PM
To: dev@dpdk.org<mailto:dev@dpdk.org>
Cc: Akhil Goyal <gakhil@marvell.com<mailto:gakhil@marvell.com>>; asomalap@amd.com<mailto:asomalap@amd.com>; Zhang, Roy Fan <roy.fan.zhang@intel.com<mailto:roy.fan.zhang@intel.com>>; Doherty, Declan <declan.doherty@intel.com<mailto:declan.doherty@intel.com>>
Subject: [EXT] OpenSSL 3.0 released, deprecated functions - DPDK crypto compilation issues

External Email
________________________________
Hi,

OpenSSL 3.0 is now released and since some PMDs in DPDK depends on libcrypto deprecated now functions, anyone who install 3.0 may see compilation problems.
So we suggest in case adaptation cannot be made in time to put version constraint in meson dependencies “version : '<3.0.0'”, it probably will not work with OpenSSL installed from source though (at least did not work for me).

Regards,
Arek



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

end of thread, other threads:[~2021-10-08 13:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-15 10:31 [dpdk-dev] OpenSSL 3.0 released, deprecated functions - DPDK crypto compilation issues Kusztal, ArkadiuszX
2021-09-15 10:50 ` Akhil Goyal
2021-09-15 12:01   ` Kusztal, ArkadiuszX
2021-10-08 13:10   ` Zhang, Roy Fan

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