From: Shannon Nelson <shannon.nelson@oracle.com>
To: Alexander Duyck <alexander.duyck@gmail.com>,
netdev@vger.kernel.org, intel-wired-lan@lists.osuosl.org
Subject: Re: [Intel-wired-lan] [jkirsher/next-queue PATCH 3/5] ixgbe: Fix handling of macvlan Tx offload
Date: Fri, 3 Nov 2017 09:30:58 -0700 [thread overview]
Message-ID: <21f34829-71a6-f74a-b04b-dfbec50d6602@oracle.com> (raw)
In-Reply-To: <20171102233351.15146.16006.stgit@localhost.localdomain>
On 11/2/2017 4:34 PM, Alexander Duyck wrote:
> From: Alexander Duyck <alexander.h.duyck@intel.com>
>
> This update makes it so that we report the actual number of Tx queues via
> real_num_tx_queues but are still restricted to RSS on only the first pool
> by setting num_tc equal to 1. Doing this locks us into only having the
> ability to setup XPS on the queues in that pool, and only those queues
> should be used for transmitting anything other than macvlan traffic.
>
> Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
> ---
> drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 17 +++++++++++++++--
> 1 file changed, 15 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
> index 69ef35d13c36..b22ec4b9d02c 100644
> --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
> +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
> @@ -6638,8 +6638,9 @@ int ixgbe_open(struct net_device *netdev)
> goto err_req_irq;
>
> /* Notify the stack of the actual queue counts. */
> - if (adapter->num_rx_pools > 1)
> - queues = adapter->num_rx_queues_per_pool;
> + if (adapter->num_rx_pools > 1 &&
> + adapter->num_tx_queues > IXGBE_MAX_L2A_QUEUES)
> + queues = IXGBE_MAX_L2A_QUEUES;
> else
> queues = adapter->num_tx_queues;
>
> @@ -8901,6 +8902,18 @@ int ixgbe_setup_tc(struct net_device *dev, u8 tc)
> if (adapter->hw.mac.type == ixgbe_mac_82598EB)
> adapter->hw.fc.requested_mode = adapter->last_lfc_mode;
>
> + /* To support macvlan offload we have to use num_tc to
> + * restrict the queues that can be used by the device.
> + * By doing this we can avoid reporing a false number of
s/reporing/reporting/
> + * queues.
> + */
> + if (adapter->num_rx_pools > 1) {
> + u16 qpp = adapter->num_rx_queues_per_pool;
> +
> + netdev_set_num_tc(dev, 1);
> + netdev_set_tc_queue(dev, 0, qpp, 0);
> + }
> +
> adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
>
> adapter->temp_dcb_cfg.pfc_mode_enable = false;
>
> _______________________________________________
> Intel-wired-lan mailing list
> Intel-wired-lan@osuosl.org
> https://lists.osuosl.org/mailman/listinfo/intel-wired-lan
>
next prev parent reply other threads:[~2017-11-03 16:31 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-02 23:33 [jkirsher/next-queue PATCH 0/5] macvlan offload fixes Alexander Duyck
2017-11-02 23:33 ` [jkirsher/next-queue PATCH 1/5] ixgbe: Fix interaction between SR-IOV and macvlan offload Alexander Duyck
2017-11-02 23:33 ` [jkirsher/next-queue PATCH 2/5] fm10k: Fix VLAN configuration for " Alexander Duyck
2017-11-03 17:05 ` [Intel-wired-lan] " Jesse Brandeburg
2017-11-08 22:05 ` Keller, Jacob E
2017-11-08 23:03 ` Alexander Duyck
2017-11-09 0:21 ` Keller, Jacob E
2017-11-09 0:32 ` Alexander Duyck
2017-11-09 1:26 ` Keller, Jacob E
2017-11-02 23:34 ` [jkirsher/next-queue PATCH 3/5] ixgbe: Fix handling of macvlan Tx offload Alexander Duyck
2017-11-03 16:30 ` Shannon Nelson [this message]
2017-11-03 18:18 ` Alexander Duyck
2017-11-02 23:34 ` [jkirsher/next-queue PATCH 4/5] dev: Clean-up __skb_tx_hash to match up with traffic class based configs Alexander Duyck
2017-11-02 23:34 ` [jkirsher/next-queue PATCH 5/5] dev: Cap number of queues even with accel_priv Alexander Duyck
2017-11-03 17:07 ` [Intel-wired-lan] " Jesse Brandeburg
2017-11-03 17:13 ` [Intel-wired-lan] [jkirsher/next-queue PATCH 0/5] macvlan offload fixes Shannon Nelson
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=21f34829-71a6-f74a-b04b-dfbec50d6602@oracle.com \
--to=shannon.nelson@oracle.com \
--cc=alexander.duyck@gmail.com \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=netdev@vger.kernel.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 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).