crypto/ccp: fix maximum queues and burst size
[dpdk.git] / drivers / crypto / ccp / ccp_pmd_private.h
index 79752f6..781050c 100644 (file)
@@ -31,9 +31,9 @@
 #endif
 
 /**< Maximum queue pairs supported by CCP PMD */
-#define CCP_PMD_MAX_QUEUE_PAIRS        1
+#define CCP_PMD_MAX_QUEUE_PAIRS        8
 #define CCP_NB_MAX_DESCRIPTORS 1024
-#define CCP_MAX_BURST 64
+#define CCP_MAX_BURST 256
 
 #include "ccp_dev.h"
 
@@ -76,6 +76,8 @@ struct ccp_qp {
        /**< Ring for placing process packets */
        struct rte_mempool *sess_mp;
        /**< Session Mempool */
+       struct rte_mempool *sess_mp_priv;
+       /**< Session Private Data Mempool */
        struct rte_mempool *batch_mp;
        /**< Session Mempool for batch info */
        struct rte_cryptodev_stats qp_stats;