DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Azarewicz, PiotrX T" <piotrx.t.azarewicz@intel.com>
To: John Daley <johndale@cisco.com>, Nelson Escobar <neescoba@cisco.com>
Cc: "dev@dpdk.org" <dev@dpdk.org>
Subject: Re: [dpdk-dev] [PATCH v2 09/11] enic: optimize the Tx function
Date: Mon, 30 May 2016 10:05:11 +0000	[thread overview]
Message-ID: <4837007523CC9A4B9414D20C13DE6E64136CEDBC@IRSMSX102.ger.corp.intel.com> (raw)
In-Reply-To: <1464071579-30072-10-git-send-email-johndale@cisco.com>

Hi,

>  uint16_t enic_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
>  	uint16_t nb_pkts)
>  {
>  	uint16_t index;
> -	unsigned int frags;
> -	unsigned int pkt_len;
> -	unsigned int seg_len;
> -	unsigned int inc_len;
> +	unsigned int pkt_len, data_len;
>  	unsigned int nb_segs;
> -	struct rte_mbuf *tx_pkt, *next_tx_pkt;
> +	struct rte_mbuf *tx_pkt;
>  	struct vnic_wq *wq = (struct vnic_wq *)tx_queue;
>  	struct enic *enic = vnic_dev_priv(wq->vdev);
>  	unsigned short vlan_id;
>  	unsigned short ol_flags;

Above ol_flags  should be uint64_t.

> -	uint8_t last_seg, eop;
> -	unsigned int host_tx_descs = 0;
> +	unsigned int wq_desc_avail;
> +	int head_idx;
> +	struct vnic_wq_buf *buf;
> +	unsigned int hw_ip_cksum_enabled;
> +	unsigned int desc_count;
> +	struct wq_enet_desc *descs, *desc_p, desc_tmp;
> +	uint16_t mss;
> +	uint8_t vlan_tag_insert;
> +	uint8_t eop;
> +	uint64_t bus_addr;
> 
> +	enic_cleanup_wq(enic, wq);
> +	wq_desc_avail = vnic_wq_desc_avail(wq);
> +	head_idx = wq->head_idx;
> +	desc_count = wq->ring.desc_count;
> +
> +	nb_pkts = RTE_MIN(nb_pkts, ENIC_TX_XMIT_MAX);
> +
> +	hw_ip_cksum_enabled = enic->hw_ip_checksum;
>  	for (index = 0; index < nb_pkts; index++) {
>  		tx_pkt = *tx_pkts++;
> -		inc_len = 0;
>  		nb_segs = tx_pkt->nb_segs;
> -		if (nb_segs > vnic_wq_desc_avail(wq)) {
> +		if (nb_segs > wq_desc_avail) {
>  			if (index > 0)
> -				enic_post_wq_index(wq);
> -
> -			/* wq cleanup and try again */
> -			if (!enic_cleanup_wq(enic, wq) ||
> -				(nb_segs > vnic_wq_desc_avail(wq))) {
> -				return index;
> -			}
> +				goto post;
> +			goto done;
>  		}
> 
>  		pkt_len = tx_pkt->pkt_len;
> +		data_len = tx_pkt->data_len;
>  		vlan_id = tx_pkt->vlan_tci;
>  		ol_flags = tx_pkt->ol_flags;

Cause you may miss a lot of flags in here.
Piotr

> -		for (frags = 0; inc_len < pkt_len; frags++) {
> -			if (!tx_pkt)
> -				break;
> -			next_tx_pkt = tx_pkt->next;
> -			seg_len = tx_pkt->data_len;
> -			inc_len += seg_len;
> -
> -			host_tx_descs++;
> -			last_seg = 0;
> -			eop = 0;
> -			if ((pkt_len == inc_len) || !next_tx_pkt) {
> -				eop = 1;
> -				/* post if last packet in batch or > thresh */
> -				if ((index == (nb_pkts - 1)) ||
> -				   (host_tx_descs > ENIC_TX_POST_THRESH))
> {
> -					last_seg = 1;
> -					host_tx_descs = 0;
> -				}
> +
> +		mss = 0;
> +		vlan_tag_insert = 0;
> +		bus_addr = (dma_addr_t)
> +			   (tx_pkt->buf_physaddr + tx_pkt->data_off);
> +
> +		descs = (struct wq_enet_desc *)wq->ring.descs;
> +		desc_p = descs + head_idx;
> +
> +		eop = (data_len == pkt_len);
> +
> +		if (ol_flags & PKT_TX_VLAN_PKT)
> +			vlan_tag_insert = 1;
> +
> +		if (hw_ip_cksum_enabled && (ol_flags &
> PKT_TX_IP_CKSUM))
> +			mss |= ENIC_CALC_IP_CKSUM;
> +
> +		if (hw_ip_cksum_enabled && (ol_flags &
> PKT_TX_TCP_UDP_CKSUM))
> +			mss |= ENIC_CALC_TCP_UDP_CKSUM;
> +
> +		wq_enet_desc_enc(&desc_tmp, bus_addr, data_len, mss, 0,
> 0, eop,
> +				 eop, 0, vlan_tag_insert, vlan_id, 0);
> +
> +		*desc_p = desc_tmp;
> +		buf = &wq->bufs[head_idx];
> +		buf->mb = (void *)tx_pkt;
> +		head_idx = enic_ring_incr(desc_count, head_idx);
> +		wq_desc_avail--;
> +
> +		if (!eop) {
> +			for (tx_pkt = tx_pkt->next; tx_pkt; tx_pkt =
> +			    tx_pkt->next) {
> +				data_len = tx_pkt->data_len;
> +
> +				if (tx_pkt->next == NULL)
> +					eop = 1;
> +				desc_p = descs + head_idx;
> +				bus_addr = (dma_addr_t)(tx_pkt-
> >buf_physaddr
> +					   + tx_pkt->data_off);
> +				wq_enet_desc_enc((struct wq_enet_desc *)
> +						 &desc_tmp, bus_addr,
> data_len,
> +						 mss, 0, 0, eop, eop, 0,
> +						 vlan_tag_insert, vlan_id, 0);
> +
> +				*desc_p = desc_tmp;
> +				buf = &wq->bufs[head_idx];
> +				buf->mb = (void *)tx_pkt;
> +				head_idx = enic_ring_incr(desc_count,
> head_idx);
> +				wq_desc_avail--;
>  			}
> -			enic_send_pkt(enic, wq, tx_pkt, (unsigned
> short)seg_len,
> -				      !frags, eop, last_seg, ol_flags, vlan_id);
> -			tx_pkt = next_tx_pkt;
>  		}
>  	}
> + post:
> +	rte_wmb();
> +	iowrite32(head_idx, &wq->ctrl->posted_index);
> + done:
> +	wq->ring.desc_avail = wq_desc_avail;
> +	wq->head_idx = head_idx;
> 
> -	enic_cleanup_wq(enic, wq);
>  	return index;
>  }
> +
> +
> --
> 2.7.0

  reply	other threads:[~2016-05-30 10:05 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-24  6:32 [dpdk-dev] [PATCH v2 00/11] enic counter fixes and Tx optimization John Daley
2016-05-24  6:32 ` [dpdk-dev] [PATCH v2 01/11] enic: fix Rx drop counters John Daley
2016-05-24  6:32 ` [dpdk-dev] [PATCH v2 02/11] enic: drop bad packets and remove unused Rx error flag John Daley
2016-05-24  6:32 ` [dpdk-dev] [PATCH v2 03/11] enic: count truncated packets John Daley
2016-05-24  6:32 ` [dpdk-dev] [PATCH v2 04/11] enic: put Tx and Rx functions into same file John Daley
2016-05-24  6:32 ` [dpdk-dev] [PATCH v2 05/11] enic: remove some unused functions in Tx path John Daley
2016-05-24  6:32 ` [dpdk-dev] [PATCH v2 06/11] enic: streamline mbuf handling " John Daley
2016-05-24  6:32 ` [dpdk-dev] [PATCH v2 07/11] enic: use Tx completion messages instead of descriptors John Daley
2016-05-24  6:32 ` [dpdk-dev] [PATCH v2 08/11] enic: refactor Tx mbuf recycling John Daley
2016-05-24  6:32 ` [dpdk-dev] [PATCH v2 09/11] enic: optimize the Tx function John Daley
2016-05-30 10:05   ` Azarewicz, PiotrX T [this message]
2016-05-24  6:32 ` [dpdk-dev] [PATCH v2 10/11] enic: remove unused files and functions and variables John Daley
2016-05-24  6:32 ` [dpdk-dev] [PATCH v2 11/11] enic: add an enic assert macro John Daley
2016-06-03  0:22 ` [dpdk-dev] [PATCH v3 00/13] enic counter fixes and Tx optimization John Daley
2016-06-03  0:22   ` [dpdk-dev] [PATCH v3 01/13] enic: fix Rx drop counters John Daley
2016-06-03  0:22   ` [dpdk-dev] [PATCH v3 02/13] enic: drop bad packets and remove unused Rx error flag John Daley
2016-06-03  0:22   ` [dpdk-dev] [PATCH v3 03/13] enic: count truncated packets John Daley
2016-06-03  0:22   ` [dpdk-dev] [PATCH v3 04/13] enic: put Tx and Rx functions into same file John Daley
2016-06-03  0:22   ` [dpdk-dev] [PATCH v3 05/13] enic: remove some unused functions in Tx path John Daley
2016-06-03  0:22   ` [dpdk-dev] [PATCH v3 06/13] enic: streamline mbuf handling " John Daley
2016-06-03  0:22   ` [dpdk-dev] [PATCH v3 07/13] enic: use Tx completion messages instead of descriptors John Daley
2016-06-10 21:18     ` Bruce Richardson
2016-06-10 22:28       ` John Daley (johndale)
2016-06-03  0:22   ` [dpdk-dev] [PATCH v3 08/13] enic: refactor Tx mbuf recycling John Daley
2016-06-03  0:22   ` [dpdk-dev] [PATCH v3 09/13] enic: optimize the Tx function John Daley
2016-06-03  0:22   ` [dpdk-dev] [PATCH v3 10/13] enic: remove unused files and functions and variables John Daley
2016-06-03  0:22   ` [dpdk-dev] [PATCH v3 11/13] enic: add an enic assert macro John Daley
2016-06-03  0:22   ` [dpdk-dev] [PATCH v3 12/13] enic: expand local Tx mbuf flags variable to 64-bits John Daley
2016-06-03  8:05     ` Azarewicz, PiotrX T
2016-06-03  0:22   ` [dpdk-dev] [PATCH v3 13/13] enic: fix Tx IP and UDP/TCP checksum offload John Daley
2016-06-10 22:38   ` [dpdk-dev] [PATCH v3 00/13] enic counter fixes and Tx optimization Bruce Richardson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4837007523CC9A4B9414D20C13DE6E64136CEDBC@IRSMSX102.ger.corp.intel.com \
    --to=piotrx.t.azarewicz@intel.com \
    --cc=dev@dpdk.org \
    --cc=johndale@cisco.com \
    --cc=neescoba@cisco.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).