net/softnic: support packet tag action
[dpdk.git] / drivers / baseband / turbo_sw / bbdev_turbo_software.c
index 1a2430e..8ceb276 100644 (file)
@@ -490,8 +490,8 @@ process_enc_cb(struct turbo_sw_queue *q, struct rte_bbdev_enc_op *op,
                        return;
                }
                crc_req.data = in;
-               crc_req.len = (k - 24) >> 3;
-               /* Check if there is a room for CRC bits. If not use
+               crc_req.len = k - 24;
+               /* Check if there is a room for CRC bits if not use
                 * the temporary buffer.
                 */
                if (rte_pktmbuf_append(m_in, 3) == NULL) {
@@ -522,8 +522,8 @@ process_enc_cb(struct turbo_sw_queue *q, struct rte_bbdev_enc_op *op,
                        return;
                }
                crc_req.data = in;
-               crc_req.len = (k - 24) >> 3;
-               /* Check if there is a room for CRC bits. If this is the last
+               crc_req.len = k - 24;
+               /* Check if there is a room for CRC bits if this is the last
                 * CB in TB. If not use temporary buffer.
                 */
                if ((c - r == 1) && (rte_pktmbuf_append(m_in, 3) == NULL)) {