Re: [dpdk-dev] [EXT] [PATCH v8 01/16] drivers: introduce mlx5 crypto PMD
From: Akhil Goyal <hidden>
Date: 2021-07-16 19:19:18
From: Akhil Goyal <hidden>
Date: 2021-07-16 19:19:18
diff --git a/doc/guides/rel_notes/release_21_08.rstb/doc/guides/rel_notes/release_21_08.rst index 7d289e07e3..2bf4ce7a73 100644--- a/doc/guides/rel_notes/release_21_08.rst +++ b/doc/guides/rel_notes/release_21_08.rst@@ -125,6 +125,11 @@ New Features The experimental PMD power management API now supports managing multiple Ethernet Rx queues per lcore. +* **Added support for Nvidia crypto device driver.** + + * Added mlx5 crypto driver to support AES-XTS cipher operations. + The first device to support it is ConnectX-6. +
Update release notes when the feature is complete. Probably in your enq/deq patch (12/16)
+static const struct rte_pci_id mlx5_crypto_pci_id_map[] = {
+ {
+ RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
+
PCI_DEVICE_ID_MELLANOX_CONNECTX6)
+ },
+ {
+ .vendor_id = 0
+ }
+ };Fix indentation.
+