From: Pablo de Lara Date: Wed, 6 Jul 2016 14:05:32 +0000 (+0100) Subject: cryptodev: move KASUMI to end of list X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=aa6a021db7b788ca17858fe1c011b96355219dbb;p=dpdk.git cryptodev: move KASUMI to end of list New cryptodev type for the new KASUMI PMD was added in the cryptodev type enum, but not at the end of it, causing an ABI breakage. Fixes: 2773c86d061a ("crypto/kasumi: add driver for KASUMI library") Reported-by: Ferruh Yigit Signed-off-by: Pablo de Lara --- diff --git a/lib/librte_cryptodev/rte_cryptodev.h b/lib/librte_cryptodev/rte_cryptodev.h index 4c023077cc..affbdecc89 100644 --- a/lib/librte_cryptodev/rte_cryptodev.h +++ b/lib/librte_cryptodev/rte_cryptodev.h @@ -67,9 +67,9 @@ enum rte_cryptodev_type { RTE_CRYPTODEV_NULL_PMD = 1, /**< Null crypto PMD */ RTE_CRYPTODEV_AESNI_GCM_PMD, /**< AES-NI GCM PMD */ RTE_CRYPTODEV_AESNI_MB_PMD, /**< AES-NI multi buffer PMD */ - RTE_CRYPTODEV_KASUMI_PMD, /**< KASUMI PMD */ RTE_CRYPTODEV_QAT_SYM_PMD, /**< QAT PMD Symmetric Crypto */ RTE_CRYPTODEV_SNOW3G_PMD, /**< SNOW 3G PMD */ + RTE_CRYPTODEV_KASUMI_PMD, /**< KASUMI PMD */ }; extern const char **rte_cyptodev_names;