diff options
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/ethtool.h | 1 | ||||
-rw-r--r-- | include/linux/netdevice.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/ethtool.h b/include/linux/ethtool.h index b33f316bb92e..b391969a0dd9 100644 --- a/include/linux/ethtool.h +++ b/include/linux/ethtool.h | |||
@@ -310,6 +310,7 @@ struct ethtool_perm_addr { | |||
310 | enum ethtool_flags { | 310 | enum ethtool_flags { |
311 | ETH_FLAG_LRO = (1 << 15), /* LRO is enabled */ | 311 | ETH_FLAG_LRO = (1 << 15), /* LRO is enabled */ |
312 | ETH_FLAG_NTUPLE = (1 << 27), /* N-tuple filters enabled */ | 312 | ETH_FLAG_NTUPLE = (1 << 27), /* N-tuple filters enabled */ |
313 | ETH_FLAG_RXHASH = (1 << 28), | ||
313 | }; | 314 | }; |
314 | 315 | ||
315 | /* The following structures are for supporting RX network flow | 316 | /* The following structures are for supporting RX network flow |
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 53c272f2a734..b5670ab5107c 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -785,6 +785,7 @@ struct net_device { | |||
785 | #define NETIF_F_SCTP_CSUM (1 << 25) /* SCTP checksum offload */ | 785 | #define NETIF_F_SCTP_CSUM (1 << 25) /* SCTP checksum offload */ |
786 | #define NETIF_F_FCOE_MTU (1 << 26) /* Supports max FCoE MTU, 2158 bytes*/ | 786 | #define NETIF_F_FCOE_MTU (1 << 26) /* Supports max FCoE MTU, 2158 bytes*/ |
787 | #define NETIF_F_NTUPLE (1 << 27) /* N-tuple filters supported */ | 787 | #define NETIF_F_NTUPLE (1 << 27) /* N-tuple filters supported */ |
788 | #define NETIF_F_RXHASH (1 << 28) /* Receive hashing offload */ | ||
788 | 789 | ||
789 | /* Segmentation offload features */ | 790 | /* Segmentation offload features */ |
790 | #define NETIF_F_GSO_SHIFT 16 | 791 | #define NETIF_F_GSO_SHIFT 16 |