X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Ftest-pmd%2Ftxonly.c;h=0ac2a080925aed320cca8a3c2d846fa859b8164d;hb=281ccccb1a867f48beb6d357fdd73c4949c90121;hp=db8f37afcbe0a3b7ba15e33e3c124a220aa92421;hpb=92ebda07ee58cf6966305ba03b50b81debfb2d98;p=dpdk.git diff --git a/app/test-pmd/txonly.c b/app/test-pmd/txonly.c index db8f37afcb..0ac2a08092 100644 --- a/app/test-pmd/txonly.c +++ b/app/test-pmd/txonly.c @@ -86,16 +86,6 @@ static struct ipv4_hdr pkt_ip_hdr; /**< IP header of transmitted packets. */ static struct udp_hdr pkt_udp_hdr; /**< UDP header of transmitted packets. */ -static inline struct rte_mbuf * -tx_mbuf_alloc(struct rte_mempool *mp) -{ - struct rte_mbuf *m; - - m = __rte_mbuf_raw_alloc(mp); - __rte_mbuf_sanity_check_raw(m, 0); - return (m); -} - static void copy_buf_to_pkt_segs(void* buf, unsigned len, struct rte_mbuf *pkt, unsigned offset) @@ -210,6 +200,7 @@ pkt_burst_transmit(struct fwd_stream *fs) uint64_t end_tsc; uint64_t core_cycles; #endif + uint32_t nb_segs, pkt_len; #ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES start_tsc = rte_rdtsc(); @@ -224,7 +215,7 @@ pkt_burst_transmit(struct fwd_stream *fs) if (txp->tx_ol_flags & TESTPMD_TX_OFFLOAD_INSERT_QINQ) ol_flags |= PKT_TX_QINQ_PKT; for (nb_pkt = 0; nb_pkt < nb_pkt_per_burst; nb_pkt++) { - pkt = tx_mbuf_alloc(mbp); + pkt = rte_mbuf_raw_alloc(mbp); if (pkt == NULL) { nomore_mbuf: if (nb_pkt == 0) @@ -233,8 +224,13 @@ pkt_burst_transmit(struct fwd_stream *fs) } pkt->data_len = tx_pkt_seg_lengths[0]; pkt_seg = pkt; - for (i = 1; i < tx_pkt_nb_segs; i++) { - pkt_seg->next = tx_mbuf_alloc(mbp); + if (tx_pkt_split == TX_PKT_SPLIT_RND) + nb_segs = random() % tx_pkt_nb_segs + 1; + else + nb_segs = tx_pkt_nb_segs; + pkt_len = pkt->data_len; + for (i = 1; i < nb_segs; i++) { + pkt_seg->next = rte_mbuf_raw_alloc(mbp); if (pkt_seg->next == NULL) { pkt->nb_segs = i; rte_pktmbuf_free(pkt); @@ -242,6 +238,7 @@ pkt_burst_transmit(struct fwd_stream *fs) } pkt_seg = pkt_seg->next; pkt_seg->data_len = tx_pkt_seg_lengths[i]; + pkt_len += pkt_seg->data_len; } pkt_seg->next = NULL; /* Last segment of packet. */ @@ -266,8 +263,8 @@ pkt_burst_transmit(struct fwd_stream *fs) * Complete first mbuf of packet and append it to the * burst of packets to be transmitted. */ - pkt->nb_segs = tx_pkt_nb_segs; - pkt->pkt_len = tx_pkt_length; + pkt->nb_segs = nb_segs; + pkt->pkt_len = pkt_len; pkt->ol_flags = ol_flags; pkt->vlan_tci = vlan_tci; pkt->vlan_tci_outer = vlan_tci_outer;