All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bruce Richardson <bruce.richardson-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
To: Thomas Monjalon
	<thomas.monjalon-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
Cc: dev-VfR2kkLFssw@public.gmane.org
Subject: Re: [PATCH v2 2/4] ethdev: Add in data rxtx callback support
Date: Fri, 13 Feb 2015 17:49:12 +0000	[thread overview]
Message-ID: <20150213174912.GA13940@bricha3-MOBL3> (raw)
In-Reply-To: <1455252.yJnfHs6f2Q@xps13>

On Fri, Feb 13, 2015 at 05:33:12PM +0100, Thomas Monjalon wrote:
> 2015-02-13 15:39, John McNamara:
> > From: Richardson, Bruce <bruce.richardson-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
> > 
> > Add in support for inline processing of packets inside the RX or
> > TX call. For an RX callback, what happens is that we get a set of
> > packets from the NIC and then pass them to a callback function, if
> > configured, to allow additional processing to be done on them, e.g.
> > filling in more mbuf fields, before passing back to the application.
> > On TX, the packets are similarly post-processed before being handed
> > to the NIC for transmission.
> > 
> > Signed-off-by: Bruce Richardson <bruce.richardson-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
> [...]
> > @@ -2390,7 +2445,17 @@ rte_eth_rx_burst(uint8_t port_id, uint16_t queue_id,
> >  	struct rte_eth_dev *dev;
> >  
> >  	dev = &rte_eth_devices[port_id];
> > -	return (*dev->rx_pkt_burst)(dev->data->rx_queues[queue_id], rx_pkts, nb_pkts);
> > +	nb_pkts = (*dev->rx_pkt_burst)(dev->data->rx_queues[queue_id], rx_pkts,
> > +			nb_pkts);
> > +	struct rte_eth_rxtx_callback *cb = dev->rx_cbs[queue_id];
> > +	if (unlikely(cb != NULL)) {
> > +		do {
> > +			nb_pkts = cb->fn(port_id, queue_id, rx_pkts, nb_pkts,
> > +					cb->param);
> > +			cb = cb->next;
> > +		} while (cb != NULL);
> > +	}
> > +	return nb_pkts;
> >  }
> >  #endif
> >  
> > @@ -2517,6 +2582,14 @@ rte_eth_tx_burst(uint8_t port_id, uint16_t queue_id,
> >  	struct rte_eth_dev *dev;
> >  
> >  	dev = &rte_eth_devices[port_id];
> > +	struct rte_eth_rxtx_callback *cb = dev->tx_cbs[queue_id];
> > +	if (unlikely(cb != NULL)) {
> > +		do {
> > +			nb_pkts = cb->fn(port_id, queue_id, tx_pkts, nb_pkts,
> > +					cb->param);
> > +			cb = cb->next;
> > +		} while (cb != NULL);
> > +	}
> >  	return (*dev->tx_pkt_burst)(dev->data->tx_queues[queue_id], tx_pkts, nb_pkts);
> >  }
> >  #endif
> 
> We all know how much the performance of these functions are important.
> So I wonder if we could reduce the impact of this change.
> I don't like the build options but maybe it should be discussed.

Performance impact is minimal, there was some discussion of it previously when
I published the earlier RFC draft. In my quick tests, with vector PMD in the 
fast path, the impact is <=1% for this change as is (i.e. no callbacks set up),
and a further 1% perf hit to actually call an empty callback.

http://article.gmane.org/gmane.comp.networking.dpdk.devel/10489
http://article.gmane.org/gmane.comp.networking.dpdk.devel/10735

Unless people start seeing a higher perf hit on some platforms, I don't think
a build-time option is worth having.

Regards,
/Bruce

  reply	other threads:[~2015-02-13 17:49 UTC|newest]

Thread overview: 73+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-22 16:47 [PATCH RFC 0/3] DPDK ethdev callback support Bruce Richardson
2014-12-24  5:06 ` Qiu, Michael
     [not found] ` <1419266844-4848-1-git-send-email-bruce.richardson-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-12-22 16:47   ` [PATCH RFC 1/3] ethdev: rename callbacks field to intr_cbs Bruce Richardson
2014-12-22 16:47   ` [PATCH RFC 2/3] ethdev: Add in data rxtx callback support Bruce Richardson
2014-12-22 16:47   ` [PATCH RFC 3/3] examples: example showing use of callbacks Bruce Richardson
2014-12-22 17:02   ` [PATCH RFC 0/3] DPDK ethdev callback support Thomas Monjalon
2014-12-22 17:33     ` Bruce Richardson
2014-12-22 17:47       ` Neil Horman
     [not found]         ` <20141222174709.GE26669-B26myB8xz7F8NnZeBjwnZQMhkBWG/bsMQH7oEaQurus@public.gmane.org>
2014-12-23  9:28           ` Bruce Richardson
2014-12-23 13:09             ` Neil Horman
     [not found]               ` <20141223130937.GB31876-B26myB8xz7F8NnZeBjwnZQMhkBWG/bsMQH7oEaQurus@public.gmane.org>
2014-12-23 14:09                 ` Bruce Richardson
2015-01-05 16:17       ` Bruce Richardson
2014-12-22 18:31   ` Stephen Hemminger
2014-12-23  9:29     ` Bruce Richardson
2014-12-23  4:23   ` Vithal S Mohare
     [not found]     ` <98DB008FA2AC6644B40AD8C766FAB271014BDE376A-AxeMsvIPF9dVlT40swnHCBaHJUVzwnCM@public.gmane.org>
2014-12-23  9:30       ` Bruce Richardson
2014-12-23  9:37         ` Vithal S Mohare
     [not found]           ` <98DB008FA2AC6644B40AD8C766FAB271014BDE3921-AxeMsvIPF9dVlT40swnHCBaHJUVzwnCM@public.gmane.org>
2014-12-24  1:43             ` Zhang, Helin
2015-02-12 19:57   ` [PATCH " John McNamara
     [not found]     ` <1423771077-13665-1-git-send-email-john.mcnamara-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-12 19:57       ` [PATCH 1/3] ethdev: rename callbacks field to intr_cbs John McNamara
2015-02-12 19:57       ` [PATCH 2/3] ethdev: Add in data rxtx callback support John McNamara
     [not found]         ` <1423771077-13665-3-git-send-email-john.mcnamara-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-12 21:12           ` Neil Horman
2015-02-12 19:57       ` [PATCH 3/3] examples: example showing use of callbacks John McNamara
2015-02-13 14:54       ` [PATCH 0/3] DPDK ethdev callback support Declan Doherty
2015-02-13 15:39   ` [PATCH v2 0/4] " John McNamara
     [not found]     ` <1423841989-9090-1-git-send-email-john.mcnamara-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-13 15:39       ` [PATCH v2 1/4] ethdev: rename callbacks field to intr_cbs John McNamara
     [not found]         ` <1423841989-9090-2-git-send-email-john.mcnamara-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-13 16:06           ` Thomas Monjalon
2015-02-13 16:52             ` Thomas Monjalon
2015-02-13 15:39       ` [PATCH v2 2/4] ethdev: Add in data rxtx callback support John McNamara
     [not found]         ` <1423841989-9090-3-git-send-email-john.mcnamara-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-13 16:33           ` Thomas Monjalon
2015-02-13 17:49             ` Bruce Richardson [this message]
2015-02-13 15:39       ` [PATCH v2 3/4] examples: example showing use of callbacks John McNamara
     [not found]         ` <1423841989-9090-4-git-send-email-john.mcnamara-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-13 16:02           ` Thomas Monjalon
2015-02-16 14:33           ` Olivier MATZ
     [not found]             ` <54E1FFC4.1060605-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
2015-02-16 15:16               ` Bruce Richardson
2015-02-16 17:34                 ` Thomas Monjalon
2015-02-17 12:17                   ` Declan Doherty
2015-02-17 12:25                   ` Bruce Richardson
2015-02-17 13:28                     ` Olivier MATZ
     [not found]                       ` <54E341E2.6090006-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
2015-02-17 13:50                         ` Bruce Richardson
2015-02-17 15:49                           ` Neil Horman
     [not found]                             ` <20150217154924.GA6309-0o1r3XBGOEbbgkc5XkKeNuvMHUBZFtU3YPYVAmT7z5s@public.gmane.org>
2015-02-17 16:00                               ` Bruce Richardson
2015-02-17 16:08                                 ` Neil Horman
     [not found]                                   ` <20150217160809.GE6309-0o1r3XBGOEbbgkc5XkKeNuvMHUBZFtU3YPYVAmT7z5s@public.gmane.org>
2015-02-17 16:15                                     ` Bruce Richardson
2015-02-17 19:27                                       ` Neil Horman
2015-02-17 15:32                     ` Thomas Monjalon
2015-02-17 15:58                       ` Bruce Richardson
2015-02-13 15:39       ` [PATCH v2 4/4] abi: Added rxtx callback functions to ABI versioning John McNamara
     [not found]         ` <1423841989-9090-5-git-send-email-john.mcnamara-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-13 15:59           ` Thomas Monjalon
2015-02-13 15:48       ` [PATCH v2 0/4] DPDK ethdev callback support Declan Doherty
2015-02-18 17:42   ` [PATCH v3 0/3] " John McNamara
     [not found]     ` <1424281343-2994-1-git-send-email-john.mcnamara-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-18 17:42       ` [PATCH v3 1/3] ethdev: Rename callbacks field to link_intr_cbs John McNamara
2015-02-18 17:42       ` [PATCH v3 2/3] ethdev: Add rxtx callback support John McNamara
     [not found]         ` <1424281343-2994-3-git-send-email-john.mcnamara-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-18 18:19           ` Thomas Monjalon
2015-02-19  9:33             ` Mcnamara, John
2015-02-18 17:42       ` [PATCH v3 3/3] examples: example showing use of callbacks John McNamara
2015-02-19 17:56       ` [PATCH v4 0/3] DPDK ethdev callback support John McNamara
     [not found]         ` <1424368602-30826-1-git-send-email-john.mcnamara-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-19 17:56           ` [PATCH v4 1/3] ethdev: rename callbacks field to link_intr_cbs John McNamara
2015-02-19 17:56           ` [PATCH v4 2/3] ethdev: add optional rxtx callback support John McNamara
     [not found]             ` <1424368602-30826-3-git-send-email-john.mcnamara-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-20 10:06               ` Bruce Richardson
2015-02-20 10:31                 ` Thomas Monjalon
2015-02-19 17:56           ` [PATCH v4 3/3] examples: example showing use of callbacks John McNamara
2015-02-20 17:03       ` [PATCH v5 0/3] DPDK ethdev callback support John McNamara
     [not found]         ` <1424451827-32293-1-git-send-email-john.mcnamara-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-20 17:03           ` [PATCH v5 1/3] ethdev: rename callbacks field to link_intr_cbs John McNamara
2015-02-20 17:03           ` [PATCH v5 2/3] ethdev: add optional rxtx callback support John McNamara
     [not found]             ` <1424451827-32293-3-git-send-email-john.mcnamara-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-23 15:11               ` Thomas Monjalon
2015-02-23 17:27                 ` Mcnamara, John
2015-02-20 17:03           ` [PATCH v5 3/3] examples: example showing use of callbacks John McNamara
2015-02-23 18:30       ` [PATCH v6 0/3] DPDK ethdev callback support John McNamara
     [not found]         ` <1424716210-25773-1-git-send-email-john.mcnamara-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-23 18:30           ` [PATCH v6 1/3] ethdev: rename callbacks field to link_intr_cbs John McNamara
2015-02-23 18:30           ` [PATCH v6 2/3] ethdev: add optional rxtx callback support John McNamara
2015-02-23 18:30           ` [PATCH v6 3/3] examples: example showing use of callbacks John McNamara
2015-02-23 23:39           ` [PATCH v6 0/3] DPDK ethdev callback support Thomas Monjalon

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=20150213174912.GA13940@bricha3-MOBL3 \
    --to=bruce.richardson-ral2jqcrhueavxtiumwx3w@public.gmane.org \
    --cc=dev-VfR2kkLFssw@public.gmane.org \
    --cc=thomas.monjalon-pdR9zngts4EAvxtiuMwx3w@public.gmane.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.