drivers/crypto: add missing OOP feature flag
ZUC, SNOW3G and KASUMI PMDs support Out-of-place operations,
but their feature flags did not reflect this.
Fixes: 2717246ecd
("cryptodev: replace mbuf scatter gather flag")
Cc: stable@dpdk.org
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
This commit is contained in:
parent
1329602b6c
commit
cd346367f8
@ -8,6 +8,7 @@ Symmetric crypto = Y
|
||||
Sym operation chaining = Y
|
||||
Symmetric sessionless = Y
|
||||
Non-Byte aligned data = Y
|
||||
OOP LB In LB Out = Y
|
||||
|
||||
;
|
||||
; Supported crypto algorithms of the 'kasumi' crypto driver.
|
||||
|
@ -8,6 +8,7 @@ Symmetric crypto = Y
|
||||
Sym operation chaining = Y
|
||||
Symmetric sessionless = Y
|
||||
Non-Byte aligned data = Y
|
||||
OOP LB In LB Out = Y
|
||||
|
||||
;
|
||||
; Supported crypto algorithms of the 'snow3g' crypto driver.
|
||||
|
@ -8,6 +8,7 @@ Symmetric crypto = Y
|
||||
Sym operation chaining = Y
|
||||
Symmetric sessionless = Y
|
||||
Non-Byte aligned data = Y
|
||||
OOP LB In LB Out = Y
|
||||
|
||||
;
|
||||
; Supported crypto algorithms of the 'zuc' crypto driver.
|
||||
|
@ -551,7 +551,8 @@ cryptodev_kasumi_create(const char *name,
|
||||
dev->feature_flags = RTE_CRYPTODEV_FF_SYMMETRIC_CRYPTO |
|
||||
RTE_CRYPTODEV_FF_SYM_OPERATION_CHAINING |
|
||||
RTE_CRYPTODEV_FF_NON_BYTE_ALIGNED_DATA |
|
||||
RTE_CRYPTODEV_FF_SYM_SESSIONLESS;
|
||||
RTE_CRYPTODEV_FF_SYM_SESSIONLESS |
|
||||
RTE_CRYPTODEV_FF_OOP_LB_IN_LB_OUT;
|
||||
|
||||
mgr = alloc_mb_mgr(0);
|
||||
if (mgr == NULL)
|
||||
|
@ -563,7 +563,8 @@ cryptodev_snow3g_create(const char *name,
|
||||
dev->feature_flags = RTE_CRYPTODEV_FF_SYMMETRIC_CRYPTO |
|
||||
RTE_CRYPTODEV_FF_SYM_OPERATION_CHAINING |
|
||||
RTE_CRYPTODEV_FF_NON_BYTE_ALIGNED_DATA |
|
||||
RTE_CRYPTODEV_FF_SYM_SESSIONLESS;
|
||||
RTE_CRYPTODEV_FF_SYM_SESSIONLESS |
|
||||
RTE_CRYPTODEV_FF_OOP_LB_IN_LB_OUT;
|
||||
|
||||
mgr = alloc_mb_mgr(0);
|
||||
if (mgr == NULL)
|
||||
|
@ -480,7 +480,8 @@ cryptodev_zuc_create(const char *name,
|
||||
dev->feature_flags = RTE_CRYPTODEV_FF_SYMMETRIC_CRYPTO |
|
||||
RTE_CRYPTODEV_FF_SYM_OPERATION_CHAINING |
|
||||
RTE_CRYPTODEV_FF_NON_BYTE_ALIGNED_DATA |
|
||||
RTE_CRYPTODEV_FF_SYM_SESSIONLESS;
|
||||
RTE_CRYPTODEV_FF_SYM_SESSIONLESS |
|
||||
RTE_CRYPTODEV_FF_OOP_LB_IN_LB_OUT;
|
||||
|
||||
mb_mgr = alloc_mb_mgr(0);
|
||||
if (mb_mgr == NULL)
|
||||
|
Loading…
Reference in New Issue
Block a user