compress/isal: add ISA-L decomp functionality
[dpdk.git] / drivers / compress / isal / isal_compress_pmd_private.h
index 7e3b840..46e9fcf 100644 (file)
@@ -24,8 +24,14 @@ struct isal_comp_qp {
        uint16_t id;
        /* Unique Queue Pair Name */
        char name[RTE_COMPRESSDEV_NAME_MAX_LEN];
+       /* Ring for placing process packets */
+       struct rte_ring *processed_pkts;
        /* Queue pair statistics */
        struct rte_compressdev_stats qp_stats;
+       /* Compression stream information*/
+       struct isal_zstream *stream;
+       /* Decompression state information*/
+       struct inflate_state *state;
        /* Number of free elements on ring */
        uint16_t num_free_elements;
 } __rte_cache_aligned;