All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
To: intel-wired-lan@osuosl.org
Subject: [Intel-wired-lan] [S87 v5 7/7] i40e: restore TCPv4 input set when re-enabling ATR
Date: Thu,  8 Mar 2018 14:52:11 -0800	[thread overview]
Message-ID: <20180308225211.12254-7-jeffrey.t.kirsher@intel.com> (raw)
In-Reply-To: <20180308225211.12254-1-jeffrey.t.kirsher@intel.com>

From: Jacob Keller <jacob.e.keller@intel.com>

When we re-enable ATR we need to restore the input set for TCPv4
filters, in order for ATR to function correctly. We already do this for
the normal case of re-enabling ATR when disabling ntuple support.
However, when re-enabling ATR after the last tcp4 filter is removed (but
when ntuple support is still active), we did not restore the TCPv4
filter input set.

This can cause problems if the TCPv4 filters from FDir had changed the
input set, as ATR will no longer behave as expected.

When clearing the ATR auto-disable flag, make sure we restore the TCPv4
input set to avoid this.

Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
---
 drivers/net/ethernet/intel/i40e/i40e_main.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/drivers/net/ethernet/intel/i40e/i40e_main.c b/drivers/net/ethernet/intel/i40e/i40e_main.c
index 89bcfd1c3213..0df21e4f2a0f 100644
--- a/drivers/net/ethernet/intel/i40e/i40e_main.c
+++ b/drivers/net/ethernet/intel/i40e/i40e_main.c
@@ -8157,6 +8157,15 @@ static void i40e_reenable_fdir_sb(struct i40e_pf *pf)
 static void i40e_reenable_fdir_atr(struct i40e_pf *pf)
 {
 	if (pf->flags & I40E_FLAG_FD_ATR_AUTO_DISABLED) {
+		/* ATR uses the same filtering logic as SB rules. It only
+		 * functions properly if the input set mask is at the default
+		 * settings. It is safe to restore the default input set
+		 * because there are no active TCPv4 filter rules.
+		 */
+		i40e_write_fd_input_set(pf, I40E_FILTER_PCTYPE_NONF_IPV4_TCP,
+					I40E_L3_SRC_MASK | I40E_L3_DST_MASK |
+					I40E_L4_SRC_MASK | I40E_L4_DST_MASK);
+
 		pf->flags &= ~I40E_FLAG_FD_ATR_AUTO_DISABLED;
 		if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
 		    (I40E_DEBUG_FD & pf->hw.debug_mask))
-- 
2.14.3


  parent reply	other threads:[~2018-03-08 22:52 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-08 22:52 [Intel-wired-lan] [S87 v5 1/7] i40e: Fix attach VF to VM issue Jeff Kirsher
2018-03-08 22:52 ` [Intel-wired-lan] [S87 v5 2/7] i40e: Cleanup i40e_vlan_rx_register Jeff Kirsher
2018-03-09  0:28   ` Shannon Nelson
2018-03-12 19:29   ` Bowers, AndrewX
2018-03-08 22:52 ` [Intel-wired-lan] [S87 v5 3/7] i40e: Fix permission check for VF MAC filters Jeff Kirsher
2018-03-12 21:09   ` Bowers, AndrewX
2018-03-08 22:52 ` [Intel-wired-lan] [S87 v5 4/7] i40e: track filter type statistics when deleting invalid filters Jeff Kirsher
2018-03-12 21:20   ` Bowers, AndrewX
2018-03-08 22:52 ` [Intel-wired-lan] [S87 v5 5/7] i40e: factor out re-enable functions for ATR and SB Jeff Kirsher
2018-03-12 21:21   ` Bowers, AndrewX
2018-03-08 22:52 ` [Intel-wired-lan] [S87 v5 6/7] i40e: fix for wrong partition id calculation on OCP mezz cards Jeff Kirsher
2018-03-12 21:21   ` Bowers, AndrewX
2018-03-08 22:52 ` Jeff Kirsher [this message]
2018-03-12 21:22   ` [Intel-wired-lan] [S87 v5 7/7] i40e: restore TCPv4 input set when re-enabling ATR Bowers, AndrewX
2018-03-12 19:29 ` [Intel-wired-lan] [S87 v5 1/7] i40e: Fix attach VF to VM issue Bowers, AndrewX

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=20180308225211.12254-7-jeffrey.t.kirsher@intel.com \
    --to=jeffrey.t.kirsher@intel.com \
    --cc=intel-wired-lan@osuosl.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.