From: Scott Wood <scottwood@freescale.com>
To: <madalin.bucur@freescale.com>, <netdev@vger.kernel.org>
Cc: <linuxppc-dev@lists.ozlabs.org>, <linux-kernel@vger.kernel.org>,
<davem@davemloft.net>, <igal.liberman@freescale.com>,
<roy.pledge@freescale.com>, <ppc@mindchasers.com>,
<joe@perches.com>, <pebolle@tiscali.nl>,
<joakim.tjernlund@transmode.se>, <gregkh@linuxfoundation.org>
Subject: Re: [net-next v4 4/8] dpaa_eth: add driver's Tx queue selection
Date: Wed, 2 Dec 2015 15:40:31 -0600 [thread overview]
Message-ID: <1449092431.29246.156.camel@freescale.com> (raw)
In-Reply-To: <1446485500-9782-5-git-send-email-madalin.bucur@freescale.com>
On Mon, 2015-11-02 at 19:31 +0200, Madalin Bucur wrote:
> Allow the selection of the transmission queue based on the CPU id.
Explain why.
>
> Signed-off-by: Madalin Bucur <madalin.bucur@freescale.com>
> ---
> drivers/net/ethernet/freescale/dpaa/Kconfig | 10 ++++++++++
> drivers/net/ethernet/freescale/dpaa/dpaa_eth.c | 3 +++
> drivers/net/ethernet/freescale/dpaa/dpaa_eth.h | 6 ++++++
> drivers/net/ethernet/freescale/dpaa/dpaa_eth_common.c | 8 ++++++++
> drivers/net/ethernet/freescale/dpaa/dpaa_eth_common.h | 4 ++++
> 5 files changed, 31 insertions(+)
>
> diff --git a/drivers/net/ethernet/freescale/dpaa/Kconfig
> b/drivers/net/ethernet/freescale/dpaa/Kconfig
> index 022d5aa..2577aac 100644
> --- a/drivers/net/ethernet/freescale/dpaa/Kconfig
> +++ b/drivers/net/ethernet/freescale/dpaa/Kconfig
> @@ -11,6 +11,16 @@ menuconfig FSL_DPAA_ETH
>
> if FSL_DPAA_ETH
>
> +config FSL_DPAA_ETH_USE_NDO_SELECT_QUEUE
> + bool "Use driver's Tx queue selection mechanism"
> + default y
> + ---help---
> + The DPAA Ethernet driver defines a ndo_select_queue() callback
> for optimal selection
> + of the egress FQ. That will override the XPS support for this
> netdevice.
> + If for whatever reason you want to be in control of the egress FQ
> -to-CPU selection and mapping,
> + or simply don't want to use the driver's ndo_select_queue()
> callback, then unselect this
> + and use the standard XPS support instead.
Is there a use case for needing this to be configurable?
> diff --git a/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c
> b/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c
> index 31d55b4..894f1a7 100644
> --- a/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c
> +++ b/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c
> @@ -390,6 +390,9 @@ static const struct net_device_ops dpa_private_ops = {
> .ndo_get_stats64 = dpa_get_stats64,
> .ndo_set_mac_address = dpa_set_mac_address,
> .ndo_validate_addr = eth_validate_addr,
> +#ifdef CONFIG_FSL_DPAA_ETH_USE_NDO_SELECT_QUEUE
> + .ndo_select_queue = dpa_select_queue,
> +#endif
> .ndo_change_mtu = dpa_change_mtu,
> .ndo_set_rx_mode = dpa_set_rx_mode,
> .ndo_init = dpa_ndo_init,
> diff --git a/drivers/net/ethernet/freescale/dpaa/dpaa_eth.h
> b/drivers/net/ethernet/freescale/dpaa/dpaa_eth.h
> index 1ba6617..87577cf 100644
> --- a/drivers/net/ethernet/freescale/dpaa/dpaa_eth.h
> +++ b/drivers/net/ethernet/freescale/dpaa/dpaa_eth.h
> @@ -420,9 +420,15 @@ static inline void _dpa_assign_wq(struct dpa_fq *fq)
> }
> }
>
> +#ifdef CONFIG_FSL_DPAA_ETH_USE_NDO_SELECT_QUEUE
> +/* Use in lieu of skb_get_queue_mapping() */
> +#define dpa_get_queue_mapping(skb) \
> + raw_smp_processor_id()
> +#else
> /* Use the queue selected by XPS */
> #define dpa_get_queue_mapping(skb) \
> skb_get_queue_mapping(skb)
> +#endif
Why is this necessary? Shouldn't providing a custom .ndo_select_queue() be
sufficient to ensure that skb_get_queue_mapping() returns the same thing?
And if this goes away, it's just a matter of a function pointer, so if it does
need to be configurable it could be a runtime option.
-Scott
next prev parent reply other threads:[~2015-12-02 21:40 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-02 17:31 [net-next v4 0/8] dpaa_eth: Add the Freescale DPAA Ethernet driver Madalin Bucur
2015-11-02 17:31 ` [net-next v4 1/8] devres: add devm_alloc_percpu() Madalin Bucur
2015-11-02 19:51 ` Joe Perches
2015-11-02 17:31 ` [net-next v4 2/8] dpaa_eth: add support for DPAA Ethernet Madalin Bucur
2015-11-02 19:51 ` Joe Perches
2015-11-03 7:55 ` Joakim Tjernlund
2015-11-03 9:37 ` Madalin-Cristian Bucur
2015-11-03 11:23 ` Joakim Tjernlund
2015-11-03 13:21 ` Madalin-Cristian Bucur
2015-11-11 3:35 ` Scott Wood
2015-11-02 17:31 ` [net-next v4 3/8] dpaa_eth: add support for S/G frames Madalin Bucur
2015-11-02 20:07 ` Joe Perches
2015-11-03 9:41 ` Madalin-Cristian Bucur
2015-11-02 21:03 ` Joe Perches
2015-11-02 17:31 ` [net-next v4 4/8] dpaa_eth: add driver's Tx queue selection Madalin Bucur
2015-12-02 21:40 ` Scott Wood [this message]
2015-12-03 10:02 ` Madalin-Cristian Bucur
2015-12-03 19:37 ` Scott Wood
2015-11-02 17:31 ` [net-next v4 5/8] dpaa_eth: add ethtool functionality Madalin Bucur
2015-11-02 17:31 ` [net-next v4 6/8] dpaa_eth: add ethtool statistics Madalin Bucur
2015-11-02 20:39 ` Joe Perches
2015-11-02 17:31 ` [net-next v4 7/8] dpaa_eth: add sysfs exports Madalin Bucur
2015-11-02 17:31 ` [net-next v4 8/8] dpaa_eth: add trace points Madalin Bucur
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=1449092431.29246.156.camel@freescale.com \
--to=scottwood@freescale.com \
--cc=davem@davemloft.net \
--cc=gregkh@linuxfoundation.org \
--cc=igal.liberman@freescale.com \
--cc=joakim.tjernlund@transmode.se \
--cc=joe@perches.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=madalin.bucur@freescale.com \
--cc=netdev@vger.kernel.org \
--cc=pebolle@tiscali.nl \
--cc=ppc@mindchasers.com \
--cc=roy.pledge@freescale.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).