All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
To: davem@davemloft.net
Cc: Andre Guedes <andre.guedes@intel.com>,
	netdev@vger.kernel.org, nhorman@redhat.com, sassmann@redhat.com,
	Sasha Neftin <sasha.neftin@intel.com>,
	Aaron Brown <aaron.f.brown@intel.com>,
	Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Subject: [net-next 10/17] igc: Fix IGC_MAX_RXNFC_RULES
Date: Thu, 28 May 2020 21:39:57 -0700	[thread overview]
Message-ID: <20200529044004.3725307-11-jeffrey.t.kirsher@intel.com> (raw)
In-Reply-To: <20200529044004.3725307-1-jeffrey.t.kirsher@intel.com>

From: Andre Guedes <andre.guedes@intel.com>

IGC supports a total of 32 rules. 16 MAC address based, 8 VLAN priority
based, and 8 Ethertype based. This patch fixes IGC_MAX_RXNFC_RULES
accordingly.

Signed-off-by: Andre Guedes <andre.guedes@intel.com>
Acked-by: Sasha Neftin <sasha.neftin@intel.com>
Tested-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
---
 drivers/net/ethernet/intel/igc/igc.h | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/intel/igc/igc.h b/drivers/net/ethernet/intel/igc/igc.h
index 14f9edaaaf83..5dbc5a156626 100644
--- a/drivers/net/ethernet/intel/igc/igc.h
+++ b/drivers/net/ethernet/intel/igc/igc.h
@@ -457,7 +457,10 @@ struct igc_nfc_rule {
 	u16 action;
 };
 
-#define IGC_MAX_RXNFC_RULES		16
+/* IGC supports a total of 32 NFC rules: 16 MAC address based,, 8 VLAN priority
+ * based, and 8 ethertype based.
+ */
+#define IGC_MAX_RXNFC_RULES		32
 
 /* igc_desc_unused - calculate if we have unused descriptors */
 static inline u16 igc_desc_unused(const struct igc_ring *ring)
-- 
2.26.2


  parent reply	other threads:[~2020-05-29  4:40 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-29  4:39 [net-next 00/17][pull request] Intel Wired LAN Driver Updates 2020-05-28 Jeff Kirsher
2020-05-29  4:39 ` [net-next 01/17] i40e: Use scnprintf() for avoiding potential buffer overflow Jeff Kirsher
2020-05-29  4:39 ` [net-next 02/17] i40e: trivial fixup of comments in i40e_xsk.c Jeff Kirsher
2020-05-29  4:39 ` [net-next 03/17] ixgbe: fix signed-integer-overflow warning Jeff Kirsher
2020-05-29  4:39 ` [net-next 04/17] ixgbe: Remove conversion to bool in ixgbe_device_supports_autoneg_fc() Jeff Kirsher
2020-05-29  4:39 ` [net-next 05/17] ixgbe: Use true, false for bool variable in __ixgbe_enable_sriov() Jeff Kirsher
2020-05-29  4:39 ` [net-next 06/17] ixgbe: Remove unused inline function ixgbe_irq_disable_queues Jeff Kirsher
2020-05-29  4:39 ` [net-next 07/17] igb: make igb_set_fc_watermarks() return void Jeff Kirsher
2020-05-29  4:39 ` [net-next 08/17] igc: Remove unused flags Jeff Kirsher
2020-05-29  4:39 ` [net-next 09/17] igc: Reject NFC rules with multiple matches Jeff Kirsher
2020-05-29  4:39 ` Jeff Kirsher [this message]
2020-05-29  4:39 ` [net-next 11/17] e1000e: Relax condition to trigger reset for ME workaround Jeff Kirsher
2020-05-29  4:39 ` [net-next 12/17] i40e: Make i40e_shutdown_adminq() return void Jeff Kirsher
2020-05-29  4:40 ` [net-next 13/17] igc: Remove symbol error counter Jeff Kirsher
2020-05-29  4:40 ` [net-next 14/17] igc: Add Receive Error Counter Jeff Kirsher
2020-05-29  4:40 ` [net-next 15/17] igc: Remove Sequence " Jeff Kirsher
2020-05-29  4:40 ` [net-next 16/17] igc: Fix wrong register name Jeff Kirsher
2020-05-29  4:40 ` [net-next 17/17] e1000: Fix typo in the comment Jeff Kirsher
2020-05-29 19:17 ` [net-next 00/17][pull request] Intel Wired LAN Driver Updates 2020-05-28 David Miller

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=20200529044004.3725307-11-jeffrey.t.kirsher@intel.com \
    --to=jeffrey.t.kirsher@intel.com \
    --cc=aaron.f.brown@intel.com \
    --cc=andre.guedes@intel.com \
    --cc=davem@davemloft.net \
    --cc=netdev@vger.kernel.org \
    --cc=nhorman@redhat.com \
    --cc=sasha.neftin@intel.com \
    --cc=sassmann@redhat.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 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.