ixgbe: Remove never defined UDP_IPV4_EX
Reviewed by: sbruno Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D12454
This commit is contained in:
parent
74acc5b16c
commit
d7f38869d6
@ -469,9 +469,6 @@ ixgbe_initialize_rss_mapping(struct adapter *adapter)
|
||||
mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_EX_TCP;
|
||||
if (rss_hash_config & RSS_HASHTYPE_RSS_UDP_IPV4)
|
||||
mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
|
||||
if (rss_hash_config & RSS_HASHTYPE_RSS_UDP_IPV4_EX)
|
||||
device_printf(adapter->dev, "%s: RSS_HASHTYPE_RSS_UDP_IPV4_EX defined, but not supported\n",
|
||||
__func__);
|
||||
if (rss_hash_config & RSS_HASHTYPE_RSS_UDP_IPV6)
|
||||
mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
|
||||
if (rss_hash_config & RSS_HASHTYPE_RSS_UDP_IPV6_EX)
|
||||
|
@ -1403,9 +1403,6 @@ ixv_initialize_rss_mapping(struct adapter *adapter)
|
||||
__func__);
|
||||
if (rss_hash_config & RSS_HASHTYPE_RSS_UDP_IPV4)
|
||||
mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
|
||||
if (rss_hash_config & RSS_HASHTYPE_RSS_UDP_IPV4_EX)
|
||||
device_printf(adapter->dev, "%s: RSS_HASHTYPE_RSS_UDP_IPV4_EX defined, but not supported\n",
|
||||
__func__);
|
||||
if (rss_hash_config & RSS_HASHTYPE_RSS_UDP_IPV6)
|
||||
mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
|
||||
if (rss_hash_config & RSS_HASHTYPE_RSS_UDP_IPV6_EX)
|
||||
|
@ -49,7 +49,6 @@
|
||||
#define RSS_HASHTYPE_RSS_IPV6_EX (1 << 5)
|
||||
#define RSS_HASHTYPE_RSS_TCP_IPV6_EX (1 << 6)
|
||||
#define RSS_HASHTYPE_RSS_UDP_IPV4 (1 << 7)
|
||||
#define RSS_HASHTYPE_RSS_UDP_IPV4_EX (1 << 8)
|
||||
#define RSS_HASHTYPE_RSS_UDP_IPV6 (1 << 9)
|
||||
#define RSS_HASHTYPE_RSS_UDP_IPV6_EX (1 << 10)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user