diff options
author | 2024-08-29 14:33:40 +0200 | |
---|---|---|
committer | 2024-09-03 11:36:43 +0200 | |
commit | a61fec1c87be682b5c0fdba6074649c469c675a3 (patch) | |
tree | 352246cbb5dab7b083fc7377b45d523b8aad68b1 /include/linux/netdev_features.h | |
parent | netdev_features: convert NETIF_F_FCOE_MTU to dev->fcoe_mtu (diff) | |
download | wireguard-linux-a61fec1c87be682b5c0fdba6074649c469c675a3.tar.xz wireguard-linux-a61fec1c87be682b5c0fdba6074649c469c675a3.zip |
netdev_features: remove NETIF_F_ALL_FCOE
NETIF_F_ALL_FCOE is used only in vlan_dev.c, 2 times. Now that it's only
2 bits, open-code it and remove the definition from netdev_features.h.
Suggested-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Alexander Lobakin <aleksander.lobakin@intel.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'include/linux/netdev_features.h')
-rw-r--r-- | include/linux/netdev_features.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/netdev_features.h b/include/linux/netdev_features.h index 37af2c6e7caf..66e7d26b70a4 100644 --- a/include/linux/netdev_features.h +++ b/include/linux/netdev_features.h @@ -209,8 +209,6 @@ static inline int find_next_netdev_feature(u64 feature, unsigned long start) #define NETIF_F_ALL_TSO (NETIF_F_TSO | NETIF_F_TSO6 | \ NETIF_F_TSO_ECN | NETIF_F_TSO_MANGLEID) -#define NETIF_F_ALL_FCOE (NETIF_F_FCOE_CRC | NETIF_F_FSO) - /* List of features with software fallbacks. */ #define NETIF_F_GSO_SOFTWARE (NETIF_F_ALL_TSO | NETIF_F_GSO_SCTP | \ NETIF_F_GSO_UDP_L4 | NETIF_F_GSO_FRAGLIST) |