From mboxrd@z Thu Jan 1 00:00:00 1970 From: Helin Zhang Subject: [RFC 07/17] enic: support of unified packet type Date: Mon, 19 Jan 2015 11:23:13 +0800 Message-ID: <1421637803-17034-8-git-send-email-helin.zhang@intel.com> References: <1421637803-17034-1-git-send-email-helin.zhang@intel.com> To: dev-VfR2kkLFssw@public.gmane.org Return-path: In-Reply-To: <1421637803-17034-1-git-send-email-helin.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" To unify packet types among all PMDs, bit masks of packet type for ol_flags are replaced by unified packet type. Signed-off-by: Helin Zhang --- lib/librte_pmd_enic/enic_main.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/lib/librte_pmd_enic/enic_main.c b/lib/librte_pmd_enic/enic_main.c index 8ab8e44..aa88e5b 100644 --- a/lib/librte_pmd_enic/enic_main.c +++ b/lib/librte_pmd_enic/enic_main.c @@ -424,7 +424,7 @@ static int enic_rq_indicate_buf(struct vnic_rq *rq, rx_pkt->pkt_len = bytes_written; if (ipv4) { - rx_pkt->ol_flags |= PKT_RX_IPV4_HDR; + rx_pkt->packet_type = RTE_PTYPE_L3_IPV4; if (!csum_not_calc) { if (unlikely(!ipv4_csum_ok)) rx_pkt->ol_flags |= PKT_RX_IP_CKSUM_BAD; @@ -433,7 +433,7 @@ static int enic_rq_indicate_buf(struct vnic_rq *rq, rx_pkt->ol_flags |= PKT_RX_L4_CKSUM_BAD; } } else if (ipv6) - rx_pkt->ol_flags |= PKT_RX_IPV6_HDR; + rx_pkt->packet_type = RTE_PTYPE_L3_IPV6; } else { /* Header split */ if (sop && !eop) { @@ -446,7 +446,7 @@ static int enic_rq_indicate_buf(struct vnic_rq *rq, *rx_pkt_bucket = rx_pkt; rx_pkt->pkt_len = bytes_written; if (ipv4) { - rx_pkt->ol_flags |= PKT_RX_IPV4_HDR; + rx_pkt->packet_type = RTE_PTYPE_L3_IPV4; if (!csum_not_calc) { if (unlikely(!ipv4_csum_ok)) rx_pkt->ol_flags |= @@ -458,13 +458,14 @@ static int enic_rq_indicate_buf(struct vnic_rq *rq, PKT_RX_L4_CKSUM_BAD; } } else if (ipv6) - rx_pkt->ol_flags |= PKT_RX_IPV6_HDR; + rx_pkt->packet_type = RTE_PTYPE_L3_IPV6; } else { /* Payload */ hdr_rx_pkt = *rx_pkt_bucket; hdr_rx_pkt->pkt_len += bytes_written; if (ipv4) { - hdr_rx_pkt->ol_flags |= PKT_RX_IPV4_HDR; + hdr_rx_pkt->packet_type = + RTE_PTYPE_L3_IPV4; if (!csum_not_calc) { if (unlikely(!ipv4_csum_ok)) hdr_rx_pkt->ol_flags |= @@ -476,7 +477,8 @@ static int enic_rq_indicate_buf(struct vnic_rq *rq, PKT_RX_L4_CKSUM_BAD; } } else if (ipv6) - hdr_rx_pkt->ol_flags |= PKT_RX_IPV6_HDR; + hdr_rx_pkt->packet_type = + RTE_PTYPE_L3_IPV6; } } -- 1.8.1.4