mbuf: add rte prefix to offload flags
[dpdk.git] / drivers / net / mlx5 / mlx5_rxtx_vec_altivec.h
index 6bf0c9b..bcf487c 100644 (file)
 /**
  * Store free buffers to RX SW ring.
  *
- * @param rxq
- *   Pointer to RX queue structure.
+ * @param elts
+ *   Pointer to SW ring to be filled.
  * @param pkts
  *   Pointer to array of packets to be stored.
  * @param pkts_n
  *   Number of packets to be stored.
  */
 static inline void
-rxq_copy_mbuf_v(struct mlx5_rxq_data *rxq, struct rte_mbuf **pkts, uint16_t n)
+rxq_copy_mbuf_v(struct rte_mbuf **elts, struct rte_mbuf **pkts, uint16_t n)
 {
-       const uint16_t q_mask = (1 << rxq->elts_n) - 1;
-       struct rte_mbuf **elts = &(*rxq->elts)[rxq->rq_pi & q_mask];
        unsigned int pos;
        uint16_t p = n & -2;
 
@@ -110,7 +108,8 @@ rxq_cq_decompress_v(struct mlx5_rxq_data *rxq, volatile struct mlx5_cqe *cq,
        const vector unsigned short rxdf_sel_mask =
                (vector unsigned short){
                        0xffff, 0xffff, 0, 0, 0, 0xffff, 0, 0};
-       const uint32_t flow_tag = t_pkt->hash.fdir.hi;
+       vector unsigned char ol_flags = (vector unsigned char){0};
+       vector unsigned char ol_flags_mask = (vector unsigned char){0};
        unsigned int pos;
        unsigned int i;
        unsigned int inv = 0;
@@ -233,11 +232,10 @@ rxq_cq_decompress_v(struct mlx5_rxq_data *rxq, volatile struct mlx5_cqe *cq,
                        vec_sel((vector unsigned long)shmask,
                        (vector unsigned long)invalid_mask, shmask);
 
-               mcqe1 = (vector unsigned char)
+               byte_cnt = (vector unsigned char)
+                       vec_sel((vector unsigned short)
                        vec_sro((vector unsigned short)mcqe1,
                        (vector unsigned char){32}),
-               byte_cnt = (vector unsigned char)
-                       vec_sel((vector unsigned short)mcqe1,
                        (vector unsigned short)mcqe2, mcqe_sel_mask);
                byte_cnt = vec_perm(byte_cnt, zero, len_shuf_mask);
                byte_cnt = (vector unsigned char)
@@ -257,11 +255,216 @@ rxq_cq_decompress_v(struct mlx5_rxq_data *rxq, volatile struct mlx5_cqe *cq,
 #endif
 
                if (rxq->mark) {
-                       /* E.1 store flow tag (rte_flow mark). */
-                       elts[pos]->hash.fdir.hi = flow_tag;
-                       elts[pos + 1]->hash.fdir.hi = flow_tag;
-                       elts[pos + 2]->hash.fdir.hi = flow_tag;
-                       elts[pos + 3]->hash.fdir.hi = flow_tag;
+                       if (rxq->mcqe_format !=
+                           MLX5_CQE_RESP_FORMAT_FTAG_STRIDX) {
+                               const uint32_t flow_tag = t_pkt->hash.fdir.hi;
+
+                               /* E.1 store flow tag (rte_flow mark). */
+                               elts[pos]->hash.fdir.hi = flow_tag;
+                               elts[pos + 1]->hash.fdir.hi = flow_tag;
+                               elts[pos + 2]->hash.fdir.hi = flow_tag;
+                               elts[pos + 3]->hash.fdir.hi = flow_tag;
+                       } else {
+                               const vector unsigned char flow_mark_adj =
+                                       (vector unsigned char)
+                                       (vector unsigned int){
+                                       -1, -1, -1, -1};
+                               const vector unsigned char flow_mark_shuf =
+                                       (vector unsigned char){
+                                       -1, -1, -1, -1,
+                                       -1, -1, -1, -1,
+                                       12,  8,  9, -1,
+                                        4,  0,  1,  -1};
+                               const vector unsigned char ft_mask =
+                                       (vector unsigned char)
+                                       (vector unsigned int){
+                                       0xffffff00, 0xffffff00,
+                                       0xffffff00, 0xffffff00};
+                               const vector unsigned char fdir_flags =
+                                       (vector unsigned char)
+                                       (vector unsigned int){
+                                       RTE_MBUF_F_RX_FDIR, RTE_MBUF_F_RX_FDIR,
+                                       RTE_MBUF_F_RX_FDIR, RTE_MBUF_F_RX_FDIR};
+                               const vector unsigned char fdir_all_flags =
+                                       (vector unsigned char)
+                                       (vector unsigned int){
+                                       RTE_MBUF_F_RX_FDIR | RTE_MBUF_F_RX_FDIR_ID,
+                                       RTE_MBUF_F_RX_FDIR | RTE_MBUF_F_RX_FDIR_ID,
+                                       RTE_MBUF_F_RX_FDIR | RTE_MBUF_F_RX_FDIR_ID,
+                                       RTE_MBUF_F_RX_FDIR | RTE_MBUF_F_RX_FDIR_ID};
+                               vector unsigned char fdir_id_flags =
+                                       (vector unsigned char)
+                                       (vector unsigned int){
+                                       RTE_MBUF_F_RX_FDIR_ID, RTE_MBUF_F_RX_FDIR_ID,
+                                       RTE_MBUF_F_RX_FDIR_ID, RTE_MBUF_F_RX_FDIR_ID};
+                               /* Extract flow_tag field. */
+                               vector unsigned char ftag0 = vec_perm(mcqe1,
+                                                       zero, flow_mark_shuf);
+                               vector unsigned char ftag1 = vec_perm(mcqe2,
+                                                       zero, flow_mark_shuf);
+                               vector unsigned char ftag =
+                                       (vector unsigned char)
+                                       vec_mergel((vector unsigned int)ftag0,
+                                       (vector unsigned int)ftag1);
+                               vector unsigned char invalid_mask =
+                                       (vector unsigned char)
+                                       vec_cmpeq((vector unsigned int)ftag,
+                                       (vector unsigned int)zero);
+
+                               ol_flags_mask = (vector unsigned char)
+                                       vec_or((vector unsigned long)
+                                       ol_flags_mask,
+                                       (vector unsigned long)fdir_all_flags);
+
+                               /* Set RTE_MBUF_F_RX_FDIR if flow tag is non-zero. */
+                               invalid_mask = (vector unsigned char)
+                                       vec_cmpeq((vector unsigned int)ftag,
+                                       (vector unsigned int)zero);
+                               ol_flags = (vector unsigned char)
+                                       vec_or((vector unsigned long)ol_flags,
+                                       (vector unsigned long)
+                                       vec_andc((vector unsigned long)
+                                       fdir_flags,
+                                       (vector unsigned long)invalid_mask));
+                               ol_flags_mask = (vector unsigned char)
+                                       vec_or((vector unsigned long)
+                                       ol_flags_mask,
+                                       (vector unsigned long)fdir_flags);
+
+                               /* Mask out invalid entries. */
+                               fdir_id_flags = (vector unsigned char)
+                                       vec_andc((vector unsigned long)
+                                       fdir_id_flags,
+                                       (vector unsigned long)invalid_mask);
+
+                               /* Check if flow tag MLX5_FLOW_MARK_DEFAULT. */
+                               ol_flags = (vector unsigned char)
+                                       vec_or((vector unsigned long)ol_flags,
+                                       (vector unsigned long)
+                                       vec_andc((vector unsigned long)
+                                       fdir_id_flags,
+                                       (vector unsigned long)
+                                       vec_cmpeq((vector unsigned int)ftag,
+                                       (vector unsigned int)ft_mask)));
+
+                               ftag = (vector unsigned char)
+                                       ((vector unsigned int)ftag +
+                                       (vector unsigned int)flow_mark_adj);
+                               elts[pos]->hash.fdir.hi =
+                                       ((vector unsigned int)ftag)[0];
+                               elts[pos + 1]->hash.fdir.hi =
+                                       ((vector unsigned int)ftag)[1];
+                               elts[pos + 2]->hash.fdir.hi =
+                                       ((vector unsigned int)ftag)[2];
+                               elts[pos + 3]->hash.fdir.hi =
+                                       ((vector unsigned int)ftag)[3];
+                       }
+               }
+               if (unlikely(rxq->mcqe_format != MLX5_CQE_RESP_FORMAT_HASH)) {
+                       if (rxq->mcqe_format ==
+                           MLX5_CQE_RESP_FORMAT_L34H_STRIDX) {
+                               const uint8_t pkt_info =
+                                       (cq->pkt_info & 0x3) << 6;
+                               const uint8_t pkt_hdr0 =
+                                       mcq[pos % 8].hdr_type;
+                               const uint8_t pkt_hdr1 =
+                                       mcq[pos % 8 + 1].hdr_type;
+                               const uint8_t pkt_hdr2 =
+                                       mcq[pos % 8 + 2].hdr_type;
+                               const uint8_t pkt_hdr3 =
+                                       mcq[pos % 8 + 3].hdr_type;
+                               const vector unsigned char vlan_mask =
+                                       (vector unsigned char)
+                                       (vector unsigned int) {
+                                       (RTE_MBUF_F_RX_VLAN | RTE_MBUF_F_RX_VLAN_STRIPPED),
+                                       (RTE_MBUF_F_RX_VLAN | RTE_MBUF_F_RX_VLAN_STRIPPED),
+                                       (RTE_MBUF_F_RX_VLAN | RTE_MBUF_F_RX_VLAN_STRIPPED),
+                                       (RTE_MBUF_F_RX_VLAN | RTE_MBUF_F_RX_VLAN_STRIPPED)};
+                               const vector unsigned char cv_mask =
+                                       (vector unsigned char)
+                                       (vector unsigned int) {
+                                       MLX5_CQE_VLAN_STRIPPED,
+                                       MLX5_CQE_VLAN_STRIPPED,
+                                       MLX5_CQE_VLAN_STRIPPED,
+                                       MLX5_CQE_VLAN_STRIPPED};
+                               vector unsigned char pkt_cv =
+                                       (vector unsigned char)
+                                       (vector unsigned int) {
+                                       pkt_hdr0 & 0x1, pkt_hdr1 & 0x1,
+                                       pkt_hdr2 & 0x1, pkt_hdr3 & 0x1};
+
+                               ol_flags_mask = (vector unsigned char)
+                                       vec_or((vector unsigned long)
+                                       ol_flags_mask,
+                                       (vector unsigned long)vlan_mask);
+                               ol_flags = (vector unsigned char)
+                                       vec_or((vector unsigned long)ol_flags,
+                                       (vector unsigned long)
+                                       vec_and((vector unsigned long)vlan_mask,
+                                       (vector unsigned long)
+                                       vec_cmpeq((vector unsigned int)pkt_cv,
+                                       (vector unsigned int)cv_mask)));
+                               elts[pos]->packet_type =
+                                       mlx5_ptype_table[(pkt_hdr0 >> 2) |
+                                                        pkt_info];
+                               elts[pos + 1]->packet_type =
+                                       mlx5_ptype_table[(pkt_hdr1 >> 2) |
+                                                        pkt_info];
+                               elts[pos + 2]->packet_type =
+                                       mlx5_ptype_table[(pkt_hdr2 >> 2) |
+                                                        pkt_info];
+                               elts[pos + 3]->packet_type =
+                                       mlx5_ptype_table[(pkt_hdr3 >> 2) |
+                                                        pkt_info];
+                               if (rxq->tunnel) {
+                                       elts[pos]->packet_type |=
+                                               !!(((pkt_hdr0 >> 2) |
+                                               pkt_info) & (1 << 6));
+                                       elts[pos + 1]->packet_type |=
+                                               !!(((pkt_hdr1 >> 2) |
+                                               pkt_info) & (1 << 6));
+                                       elts[pos + 2]->packet_type |=
+                                               !!(((pkt_hdr2 >> 2) |
+                                               pkt_info) & (1 << 6));
+                                       elts[pos + 3]->packet_type |=
+                                               !!(((pkt_hdr3 >> 2) |
+                                               pkt_info) & (1 << 6));
+                               }
+                       }
+                       const vector unsigned char hash_mask =
+                               (vector unsigned char)(vector unsigned int) {
+                                       RTE_MBUF_F_RX_RSS_HASH,
+                                       RTE_MBUF_F_RX_RSS_HASH,
+                                       RTE_MBUF_F_RX_RSS_HASH,
+                                       RTE_MBUF_F_RX_RSS_HASH};
+                       const vector unsigned char rearm_flags =
+                               (vector unsigned char)(vector unsigned int) {
+                               (uint32_t)t_pkt->ol_flags,
+                               (uint32_t)t_pkt->ol_flags,
+                               (uint32_t)t_pkt->ol_flags,
+                               (uint32_t)t_pkt->ol_flags};
+
+                       ol_flags_mask = (vector unsigned char)
+                               vec_or((vector unsigned long)ol_flags_mask,
+                               (vector unsigned long)hash_mask);
+                       ol_flags = (vector unsigned char)
+                               vec_or((vector unsigned long)ol_flags,
+                               (vector unsigned long)
+                               vec_andc((vector unsigned long)rearm_flags,
+                               (vector unsigned long)ol_flags_mask));
+
+                       elts[pos]->ol_flags =
+                               ((vector unsigned int)ol_flags)[0];
+                       elts[pos + 1]->ol_flags =
+                               ((vector unsigned int)ol_flags)[1];
+                       elts[pos + 2]->ol_flags =
+                               ((vector unsigned int)ol_flags)[2];
+                       elts[pos + 3]->ol_flags =
+                               ((vector unsigned int)ol_flags)[3];
+                       elts[pos]->hash.rss = 0;
+                       elts[pos + 1]->hash.rss = 0;
+                       elts[pos + 2]->hash.rss = 0;
+                       elts[pos + 3]->hash.rss = 0;
                }
                if (rxq->dynf_meta) {
                        int32_t offs = rxq->flow_meta_offset;
@@ -303,7 +506,6 @@ rxq_cq_decompress_v(struct mlx5_rxq_data *rxq, volatile struct mlx5_cqe *cq,
        rxq->stats.ibytes += rcvd_byte;
 #endif
 
-       rxq->cq_ci += mcqe_n;
        return mcqe_n;
 }
 
@@ -329,14 +531,14 @@ rxq_cq_to_ptype_oflags_v(struct mlx5_rxq_data *rxq,
        vector unsigned char pinfo, ptype;
        vector unsigned char ol_flags = (vector unsigned char)
                (vector unsigned int){
-                       rxq->rss_hash * PKT_RX_RSS_HASH |
-                               rxq->hw_timestamp * PKT_RX_TIMESTAMP,
-                       rxq->rss_hash * PKT_RX_RSS_HASH |
-                               rxq->hw_timestamp * PKT_RX_TIMESTAMP,
-                       rxq->rss_hash * PKT_RX_RSS_HASH |
-                               rxq->hw_timestamp * PKT_RX_TIMESTAMP,
-                       rxq->rss_hash * PKT_RX_RSS_HASH |
-                               rxq->hw_timestamp * PKT_RX_TIMESTAMP};
+                       rxq->rss_hash * RTE_MBUF_F_RX_RSS_HASH |
+                               rxq->hw_timestamp * rxq->timestamp_rx_flag,
+                       rxq->rss_hash * RTE_MBUF_F_RX_RSS_HASH |
+                               rxq->hw_timestamp * rxq->timestamp_rx_flag,
+                       rxq->rss_hash * RTE_MBUF_F_RX_RSS_HASH |
+                               rxq->hw_timestamp * rxq->timestamp_rx_flag,
+                       rxq->rss_hash * RTE_MBUF_F_RX_RSS_HASH |
+                               rxq->hw_timestamp * rxq->timestamp_rx_flag};
        vector unsigned char cv_flags;
        const vector unsigned char zero = (vector unsigned char){0};
        const vector unsigned char ptype_mask =
@@ -349,21 +551,21 @@ rxq_cq_to_ptype_oflags_v(struct mlx5_rxq_data *rxq,
                (vector unsigned char)(vector unsigned int){
                0x00000003, 0x00000003, 0x00000003, 0x00000003};
        const vector unsigned char cv_flag_sel = (vector unsigned char){
-               0, (uint8_t)(PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED),
-               (uint8_t)(PKT_RX_IP_CKSUM_GOOD >> 1), 0,
-               (uint8_t)(PKT_RX_L4_CKSUM_GOOD >> 1), 0,
-               (uint8_t)((PKT_RX_IP_CKSUM_GOOD | PKT_RX_L4_CKSUM_GOOD) >> 1),
+               0, (uint8_t)(RTE_MBUF_F_RX_VLAN | RTE_MBUF_F_RX_VLAN_STRIPPED),
+               (uint8_t)(RTE_MBUF_F_RX_IP_CKSUM_GOOD >> 1), 0,
+               (uint8_t)(RTE_MBUF_F_RX_L4_CKSUM_GOOD >> 1), 0,
+               (uint8_t)((RTE_MBUF_F_RX_IP_CKSUM_GOOD | RTE_MBUF_F_RX_L4_CKSUM_GOOD) >> 1),
                0, 0, 0, 0, 0, 0, 0, 0, 0};
        const vector unsigned char cv_mask =
                (vector unsigned char)(vector unsigned int){
-               PKT_RX_IP_CKSUM_GOOD | PKT_RX_L4_CKSUM_GOOD |
-               PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED,
-               PKT_RX_IP_CKSUM_GOOD | PKT_RX_L4_CKSUM_GOOD |
-               PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED,
-               PKT_RX_IP_CKSUM_GOOD | PKT_RX_L4_CKSUM_GOOD |
-               PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED,
-               PKT_RX_IP_CKSUM_GOOD | PKT_RX_L4_CKSUM_GOOD |
-               PKT_RX_VLAN | PKT_RX_VLAN_STRIPPED};
+               RTE_MBUF_F_RX_IP_CKSUM_GOOD | RTE_MBUF_F_RX_L4_CKSUM_GOOD |
+               RTE_MBUF_F_RX_VLAN | RTE_MBUF_F_RX_VLAN_STRIPPED,
+               RTE_MBUF_F_RX_IP_CKSUM_GOOD | RTE_MBUF_F_RX_L4_CKSUM_GOOD |
+               RTE_MBUF_F_RX_VLAN | RTE_MBUF_F_RX_VLAN_STRIPPED,
+               RTE_MBUF_F_RX_IP_CKSUM_GOOD | RTE_MBUF_F_RX_L4_CKSUM_GOOD |
+               RTE_MBUF_F_RX_VLAN | RTE_MBUF_F_RX_VLAN_STRIPPED,
+               RTE_MBUF_F_RX_IP_CKSUM_GOOD | RTE_MBUF_F_RX_L4_CKSUM_GOOD |
+               RTE_MBUF_F_RX_VLAN | RTE_MBUF_F_RX_VLAN_STRIPPED};
        const vector unsigned char mbuf_init =
                (vector unsigned char)vec_vsx_ld
                        (0, (vector unsigned char *)&rxq->mbuf_initializer);
@@ -400,19 +602,19 @@ rxq_cq_to_ptype_oflags_v(struct mlx5_rxq_data *rxq,
                        0xffffff00, 0xffffff00, 0xffffff00, 0xffffff00};
                const vector unsigned char fdir_flags =
                        (vector unsigned char)(vector unsigned int){
-                       PKT_RX_FDIR, PKT_RX_FDIR,
-                       PKT_RX_FDIR, PKT_RX_FDIR};
+                       RTE_MBUF_F_RX_FDIR, RTE_MBUF_F_RX_FDIR,
+                       RTE_MBUF_F_RX_FDIR, RTE_MBUF_F_RX_FDIR};
                vector unsigned char fdir_id_flags =
                        (vector unsigned char)(vector unsigned int){
-                       PKT_RX_FDIR_ID, PKT_RX_FDIR_ID,
-                       PKT_RX_FDIR_ID, PKT_RX_FDIR_ID};
+                       RTE_MBUF_F_RX_FDIR_ID, RTE_MBUF_F_RX_FDIR_ID,
+                       RTE_MBUF_F_RX_FDIR_ID, RTE_MBUF_F_RX_FDIR_ID};
                vector unsigned char flow_tag, invalid_mask;
 
                flow_tag = (vector unsigned char)
                        vec_and((vector unsigned long)pinfo,
                        (vector unsigned long)pinfo_ft_mask);
 
-               /* Check if flow tag is non-zero then set PKT_RX_FDIR. */
+               /* Check if flow tag is non-zero then set RTE_MBUF_F_RX_FDIR. */
                invalid_mask = (vector unsigned char)
                        vec_cmpeq((vector unsigned int)flow_tag,
                        (vector unsigned int)zero);
@@ -550,14 +752,17 @@ rxq_cq_to_ptype_oflags_v(struct mlx5_rxq_data *rxq,
                (vector unsigned char *)&pkts[3]->rearm_data);
 }
 
-
 /**
- * Receive burst of packets. An errored completion also consumes a mbuf, but the
- * packet_type is set to be RTE_PTYPE_ALL_MASK. Marked mbufs should be freed
- * before returning to application.
+ * Process a non-compressed completion and fill in mbufs in RX SW ring
+ * with data extracted from the title completion descriptor.
  *
  * @param rxq
  *   Pointer to RX queue structure.
+ * @param cq
+ *   Pointer to completion array having a non-compressed completion at first.
+ * @param elts
+ *   Pointer to SW ring to be filled. The first mbuf has to be pre-built from
+ *   the title completion descriptor to be copied to the rest of mbufs.
  * @param[out] pkts
  *   Array to store received packets.
  * @param pkts_n
@@ -565,28 +770,23 @@ rxq_cq_to_ptype_oflags_v(struct mlx5_rxq_data *rxq,
  * @param[out] err
  *   Pointer to a flag. Set non-zero value if pkts array has at least one error
  *   packet to handle.
- * @param[out] no_cq
- *  Pointer to a boolean. Set true if no new CQE seen.
+ * @param[out] comp
+ *   Pointer to a index. Set it to the first compressed completion if any.
  *
  * @return
- *   Number of packets received including errors (<= pkts_n).
+ *   Number of CQEs successfully processed.
  */
 static inline uint16_t
-rxq_burst_v(struct mlx5_rxq_data *rxq, struct rte_mbuf **pkts, uint16_t pkts_n,
-           uint64_t *err, bool *no_cq)
+rxq_cq_process_v(struct mlx5_rxq_data *rxq, volatile struct mlx5_cqe *cq,
+                struct rte_mbuf **elts, struct rte_mbuf **pkts,
+                uint16_t pkts_n, uint64_t *err, uint64_t *comp)
 {
        const uint16_t q_n = 1 << rxq->cqe_n;
        const uint16_t q_mask = q_n - 1;
-       volatile struct mlx5_cqe *cq;
-       struct rte_mbuf **elts;
        unsigned int pos;
-       uint64_t n;
-       uint16_t repl_n;
+       uint64_t n = 0;
        uint64_t comp_idx = MLX5_VPMD_DESCS_PER_LOOP;
        uint16_t nocmp_n = 0;
-       uint16_t rcvd_pkt = 0;
-       unsigned int cq_idx = rxq->cq_ci & q_mask;
-       unsigned int elts_idx;
        unsigned int ownership = !!(rxq->cq_ci & (q_mask + 1));
        const vector unsigned char zero = (vector unsigned char){0};
        const vector unsigned char ones = vec_splat_u8(-1);
@@ -638,44 +838,9 @@ rxq_burst_v(struct mlx5_rxq_data *rxq, struct rte_mbuf **pkts, uint16_t pkts_n,
        const vector unsigned short cqe_sel_mask2 =
                (vector unsigned short){0, 0, 0xffff, 0, 0, 0, 0, 0};
 
-       MLX5_ASSERT(rxq->sges_n == 0);
-       MLX5_ASSERT(rxq->cqe_n == rxq->elts_n);
-       cq = &(*rxq->cqes)[cq_idx];
-       rte_prefetch0(cq);
-       rte_prefetch0(cq + 1);
-       rte_prefetch0(cq + 2);
-       rte_prefetch0(cq + 3);
-       pkts_n = RTE_MIN(pkts_n, MLX5_VPMD_RX_MAX_BURST);
-
-       repl_n = q_n - (rxq->rq_ci - rxq->rq_pi);
-       if (repl_n >= rxq->rq_repl_thresh)
-               mlx5_rx_replenish_bulk_mbuf(rxq, repl_n);
-       /* See if there're unreturned mbufs from compressed CQE. */
-       rcvd_pkt = rxq->decompressed;
-       if (rcvd_pkt > 0) {
-               rcvd_pkt = RTE_MIN(rcvd_pkt, pkts_n);
-               rxq_copy_mbuf_v(rxq, pkts, rcvd_pkt);
-               rxq->rq_pi += rcvd_pkt;
-               rxq->decompressed -= rcvd_pkt;
-               pkts += rcvd_pkt;
-       }
-       elts_idx = rxq->rq_pi & q_mask;
-       elts = &(*rxq->elts)[elts_idx];
-       /* Not to overflow pkts array. */
-       pkts_n = RTE_ALIGN_FLOOR(pkts_n - rcvd_pkt, MLX5_VPMD_DESCS_PER_LOOP);
-       /* Not to cross queue end. */
-       pkts_n = RTE_MIN(pkts_n, q_n - elts_idx);
-       pkts_n = RTE_MIN(pkts_n, q_n - cq_idx);
-       if (!pkts_n) {
-               *no_cq = !rcvd_pkt;
-               return rcvd_pkt;
-       }
-       /* At this point, there shouldn't be any remaining packets. */
-       MLX5_ASSERT(rxq->decompressed == 0);
-
        /*
         * A. load first Qword (8bytes) in one loop.
-        * B. copy 4 mbuf pointers from elts ring to returing pkts.
+        * B. copy 4 mbuf pointers from elts ring to returning pkts.
         * C. load remaining CQE data and extract necessary fields.
         *    Final 16bytes cqes[] extracted from original 64bytes CQE has the
         *    following structure:
@@ -1025,52 +1190,58 @@ rxq_burst_v(struct mlx5_rxq_data *rxq, struct rte_mbuf **pkts, uint16_t pkts_n,
                /* D.5 fill in mbuf - rearm_data and packet_type. */
                rxq_cq_to_ptype_oflags_v(rxq, cqes, opcode, &pkts[pos]);
                if (rxq->hw_timestamp) {
+                       int offset = rxq->timestamp_offset;
                        if (rxq->rt_timestamp) {
                                struct mlx5_dev_ctx_shared *sh = rxq->sh;
                                uint64_t ts;
 
                                ts = rte_be_to_cpu_64(cq[pos].timestamp);
-                               pkts[pos]->timestamp =
-                                       mlx5_txpp_convert_rx_ts(sh, ts);
+                               mlx5_timestamp_set(pkts[pos], offset,
+                                       mlx5_txpp_convert_rx_ts(sh, ts));
                                ts = rte_be_to_cpu_64(cq[pos + p1].timestamp);
-                               pkts[pos + 1]->timestamp =
-                                       mlx5_txpp_convert_rx_ts(sh, ts);
+                               mlx5_timestamp_set(pkts[pos + 1], offset,
+                                       mlx5_txpp_convert_rx_ts(sh, ts));
                                ts = rte_be_to_cpu_64(cq[pos + p2].timestamp);
-                               pkts[pos + 2]->timestamp =
-                                       mlx5_txpp_convert_rx_ts(sh, ts);
+                               mlx5_timestamp_set(pkts[pos + 2], offset,
+                                       mlx5_txpp_convert_rx_ts(sh, ts));
                                ts = rte_be_to_cpu_64(cq[pos + p3].timestamp);
-                               pkts[pos + 3]->timestamp =
-                                       mlx5_txpp_convert_rx_ts(sh, ts);
+                               mlx5_timestamp_set(pkts[pos + 3], offset,
+                                       mlx5_txpp_convert_rx_ts(sh, ts));
                        } else {
-                               pkts[pos]->timestamp = rte_be_to_cpu_64
-                                               (cq[pos].timestamp);
-                               pkts[pos + 1]->timestamp = rte_be_to_cpu_64
-                                               (cq[pos + p1].timestamp);
-                               pkts[pos + 2]->timestamp = rte_be_to_cpu_64
-                                               (cq[pos + p2].timestamp);
-                               pkts[pos + 3]->timestamp = rte_be_to_cpu_64
-                                               (cq[pos + p3].timestamp);
+                               mlx5_timestamp_set(pkts[pos], offset,
+                                       rte_be_to_cpu_64(cq[pos].timestamp));
+                               mlx5_timestamp_set(pkts[pos + 1], offset,
+                                       rte_be_to_cpu_64(cq[pos + p1].timestamp));
+                               mlx5_timestamp_set(pkts[pos + 2], offset,
+                                       rte_be_to_cpu_64(cq[pos + p2].timestamp));
+                               mlx5_timestamp_set(pkts[pos + 3], offset,
+                                       rte_be_to_cpu_64(cq[pos + p3].timestamp));
                        }
                }
                if (rxq->dynf_meta) {
                        uint64_t flag = rxq->flow_meta_mask;
                        int32_t offs = rxq->flow_meta_offset;
+                       uint32_t mask = rxq->flow_meta_port_mask;
                        uint32_t metadata;
 
                        /* This code is subject for futher optimization. */
-                       metadata = cq[pos].flow_table_metadata;
+                       metadata = rte_be_to_cpu_32
+                               (cq[pos].flow_table_metadata) & mask;
                        *RTE_MBUF_DYNFIELD(pkts[pos], offs, uint32_t *) =
                                                                metadata;
                        pkts[pos]->ol_flags |= metadata ? flag : 0ULL;
-                       metadata = cq[pos + 1].flow_table_metadata;
+                       metadata = rte_be_to_cpu_32
+                               (cq[pos + 1].flow_table_metadata) & mask;
                        *RTE_MBUF_DYNFIELD(pkts[pos + 1], offs, uint32_t *) =
                                                                metadata;
                        pkts[pos + 1]->ol_flags |= metadata ? flag : 0ULL;
-                       metadata = cq[pos + 2].flow_table_metadata;
+                       metadata = rte_be_to_cpu_32
+                               (cq[pos + 2].flow_table_metadata) &     mask;
                        *RTE_MBUF_DYNFIELD(pkts[pos + 2], offs, uint32_t *) =
                                                                metadata;
                        pkts[pos + 2]->ol_flags |= metadata ? flag : 0ULL;
-                       metadata = cq[pos + 3].flow_table_metadata;
+                       metadata = rte_be_to_cpu_32
+                               (cq[pos + 3].flow_table_metadata) &     mask;
                        *RTE_MBUF_DYNFIELD(pkts[pos + 3], offs, uint32_t *) =
                                                                metadata;
                        pkts[pos + 3]->ol_flags |= metadata ? flag : 0ULL;
@@ -1101,40 +1272,13 @@ rxq_burst_v(struct mlx5_rxq_data *rxq, struct rte_mbuf **pkts, uint16_t pkts_n,
                if (n != MLX5_VPMD_DESCS_PER_LOOP)
                        break;
        }
-       /* If no new CQE seen, return without updating cq_db. */
-       if (unlikely(!nocmp_n && comp_idx == MLX5_VPMD_DESCS_PER_LOOP)) {
-               *no_cq = true;
-               return rcvd_pkt;
-       }
-       /* Update the consumer indexes for non-compressed CQEs. */
-       MLX5_ASSERT(nocmp_n <= pkts_n);
-       rxq->cq_ci += nocmp_n;
-       rxq->rq_pi += nocmp_n;
-       rcvd_pkt += nocmp_n;
 #ifdef MLX5_PMD_SOFT_COUNTERS
        rxq->stats.ipackets += nocmp_n;
        rxq->stats.ibytes += rcvd_byte;
 #endif
-       /* Decompress the last CQE if compressed. */
-       if (comp_idx < MLX5_VPMD_DESCS_PER_LOOP && comp_idx == n) {
-               MLX5_ASSERT(comp_idx == (nocmp_n % MLX5_VPMD_DESCS_PER_LOOP));
-               rxq->decompressed =
-                       rxq_cq_decompress_v(rxq, &cq[nocmp_n], &elts[nocmp_n]);
-               /* Return more packets if needed. */
-               if (nocmp_n < pkts_n) {
-                       uint16_t n = rxq->decompressed;
-
-                       n = RTE_MIN(n, pkts_n - nocmp_n);
-                       rxq_copy_mbuf_v(rxq, &pkts[nocmp_n], n);
-                       rxq->rq_pi += n;
-                       rcvd_pkt += n;
-                       rxq->decompressed -= n;
-               }
-       }
-       rte_compiler_barrier();
-       *rxq->cq_db = rte_cpu_to_be_32(rxq->cq_ci);
-       *no_cq = !rcvd_pkt;
-       return rcvd_pkt;
+       if (comp_idx == n)
+               *comp = comp_idx;
+       return nocmp_n;
 }
 
 #endif /* RTE_PMD_MLX5_RXTX_VEC_ALTIVEC_H_ */