[dpdk-dev] [PATCH v8 4/5] cryptodev: change burst API to be crypto op oriented

2016-03-10 Thread Thomas Monjalon
2016-03-10 13:43, Fiona Trahe: > lib/librte_cryptodev/rte_crypto.h | 352 +++- One of the problems with inline functions in a header, is that it must compile with C and C++. Unfortunately there is a small error here when included in a C++ app: rte_crypto.h:172:24: error:

[dpdk-dev] [PATCH v8 4/5] cryptodev: change burst API to be crypto op oriented

2016-03-10 Thread Fiona Trahe
From: Declan Doherty This patch modifies the crypto burst enqueue/dequeue APIs to operate on bursts rte_crypto_op's rather than the current implementation which operates on rte_mbuf bursts, this simplifies the burst processing in the crypto PMDs and the use of crypto operations in general, includ