]> git.droids-corp.org - dpdk.git/commitdiff
ixgbe/base: add flow control ethertype for filtering
authorWenzhuo Lu <wenzhuo.lu@intel.com>
Fri, 20 Nov 2015 07:17:48 +0000 (15:17 +0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Thu, 14 Jan 2016 08:43:21 +0000 (09:43 +0100)
This patch adds the flow control ethertype to the defines for the
ETQF filter list. This only adds the define. Each driver
can add this ethertype to the filter. This is needed to prevent
denial of service by malicious VFs sending out flow control
packets.

Signed-off-by: Wenzhuo Lu <wenzhuo.lu@intel.com>
drivers/net/ixgbe/base/ixgbe_type.h

index 881f34cca103fb58a8c8308ba4ef366db59c6bf0..e3c41a9aeafddfe6bea1b7291380d4729b12c454 100644 (file)
@@ -1956,6 +1956,7 @@ enum {
  *     FIP  (0x8914):   Filter 4
  *     LLDP (0x88CC):   Filter 5
  *     LACP (0x8809):   Filter 6
+ *     FC   (0x8808):   Filter 7
  */
 #define IXGBE_ETQF_FILTER_EAPOL                0
 #define IXGBE_ETQF_FILTER_FCOE         2
@@ -1963,6 +1964,7 @@ enum {
 #define IXGBE_ETQF_FILTER_FIP          4
 #define IXGBE_ETQF_FILTER_LLDP         5
 #define IXGBE_ETQF_FILTER_LACP         6
+#define IXGBE_ETQF_FILTER_FC           7
 /* VLAN Control Bit Masks */
 #define IXGBE_VLNCTRL_VET              0x0000FFFF  /* bits 0-15 */
 #define IXGBE_VLNCTRL_CFI              0x10000000  /* bit 28 */