mbuf: remove the rte_pktmbuf structure
[dpdk.git] / app / test-pmd / flowgen.c
index a8f2a65..17dbf83 100644 (file)
@@ -171,11 +171,11 @@ pkt_burst_flow_gen(struct fwd_stream *fs)
                if (!pkt)
                        break;
 
-               pkt->pkt.data_len = pkt_size;
-               pkt->pkt.next = NULL;
+               pkt->data_len = pkt_size;
+               pkt->next = NULL;
 
                /* Initialize Ethernet header. */
-               eth_hdr = (struct ether_hdr *)pkt->pkt.data;
+               eth_hdr = (struct ether_hdr *)pkt->data;
                ether_addr_copy(&cfg_ether_dst, &eth_hdr->d_addr);
                ether_addr_copy(&cfg_ether_src, &eth_hdr->s_addr);
                eth_hdr->ether_type = rte_cpu_to_be_16(ETHER_TYPE_IPv4);
@@ -205,12 +205,12 @@ pkt_burst_flow_gen(struct fwd_stream *fs)
                udp_hdr->dgram_len      = RTE_CPU_TO_BE_16(pkt_size -
                                                           sizeof(*eth_hdr) -
                                                           sizeof(*ip_hdr));
-               pkt->pkt.nb_segs                = 1;
-               pkt->pkt.pkt_len                = pkt_size;
+               pkt->nb_segs                    = 1;
+               pkt->pkt_len                    = pkt_size;
                pkt->ol_flags                   = ol_flags;
-               pkt->pkt.vlan_macip.f.vlan_tci  = vlan_tci;
-               pkt->pkt.vlan_macip.f.l2_len    = sizeof(struct ether_hdr);
-               pkt->pkt.vlan_macip.f.l3_len    = sizeof(struct ipv4_hdr);
+               pkt->vlan_macip.f.vlan_tci      = vlan_tci;
+               pkt->vlan_macip.f.l2_len        = sizeof(struct ether_hdr);
+               pkt->vlan_macip.f.l3_len        = sizeof(struct ipv4_hdr);
                pkts_burst[nb_pkt]              = pkt;
 
                next_flow = (next_flow + 1) % cfg_n_flows;