diff options
author | Fan Zhang <roy.fan.zhang@intel.com> | 2021-05-25 15:50:30 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-05-26 21:06:34 +0000 |
commit | 3f3da0d27dcf83808f2691205b891a42ac2b4679 (patch) | |
tree | d53c6d086d82c0bd8da377bbfa29a0461b69aede /src/plugins/dpdk/device | |
parent | 57e0af924b8b48cf39b1020bf11f10e3c227f22c (diff) |
dpdk: fix missing symbol
Type: fix
This patch fixes the missing symbol of dpdk_plugin.so when
creating symmetric key. The solution is to add dependency
of libssl to dpdk cryptodev and disable cryptodev engine
when libssl is not presented.
Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
Change-Id: I30aa6e3e3af1faefa82883bad613e1d82235a2ec
Diffstat (limited to 'src/plugins/dpdk/device')
-rw-r--r-- | src/plugins/dpdk/device/init.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/plugins/dpdk/device/init.c b/src/plugins/dpdk/device/init.c index 59d46f086c1..8b07e00dd2d 100644 --- a/src/plugins/dpdk/device/init.c +++ b/src/plugins/dpdk/device/init.c @@ -1842,11 +1842,15 @@ dpdk_process (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f) if (error) clib_error_report (error); - error = dpdk_cryptodev_init (vm); - if (error) + if (dpdk_cryptodev_init) { - vlib_log_warn (dpdk_main.log_cryptodev, "%U", format_clib_error, error); - clib_error_free (error); + error = dpdk_cryptodev_init (vm); + if (error) + { + vlib_log_warn (dpdk_main.log_cryptodev, "%U", format_clib_error, + error); + clib_error_free (error); + } } tm->worker_thread_release = 1; |