From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mahesh Bandewar Subject: [PATCHv2] net: Define enum for the bits used in features. Date: Tue, 24 May 2011 18:56:07 -0700 Message-ID: <1306288567-1773-1-git-send-email-maheshb@google.com> References: <1306263162-2022-1-git-send-email-maheshb@google.com> Cc: netdev , Mahesh Bandewar , Tom Herbert , =?UTF-8?q?Micha=C5=82=20Miros=C5=82aw?= , Stephen Hemminger To: David Miller Return-path: Received: from smtp-out.google.com ([216.239.44.51]:16828 "EHLO smtp-out.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753223Ab1EYB4P (ORCPT ); Tue, 24 May 2011 21:56:15 -0400 In-Reply-To: <1306263162-2022-1-git-send-email-maheshb@google.com> Sender: netdev-owner@vger.kernel.org List-ID: Little bit cleanup by defining enum for all bits used. Also use those enum values to redefine flags. Signed-off-by: Mahesh Bandewar --- Changes since v1: Split the patch into two pieces. include/linux/netdevice.h | 100 +++++++++++++++++++++++++++++++------------- 1 files changed, 70 insertions(+), 30 deletions(-) diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index ca333e7..b4520b2 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -51,6 +51,7 @@ #ifdef CONFIG_DCB #include #endif +#include struct vlan_group; struct netpoll_info; @@ -981,6 +982,49 @@ struct net_device_ops { }; /* + * Net device feature bits; if you change something, + * also update netdev_features_strings[] in ethtool.c + */ +enum netdev_features { + SG_BIT, /* Scatter/gather IO. */ + IP_CSUM_BIT, /* Can checksum TCP/UDP over IPv4. */ + NO_CSUM_BIT, /* Does not require checksum. F.e. loopack. */ + HW_CSUM_BIT, /* Can checksum all the packets. */ + IPV6_CSUM_BIT, /* Can checksum TCP/UDP over IPV6 */ + HIGHDMA_BIT, /* Can DMA to high memory. */ + FRAGLIST_BIT, /* Scatter/gather IO. */ + HW_VLAN_TX_BIT, /* Transmit VLAN hw acceleration */ + HW_VLAN_RX_BIT, /* Receive VLAN hw acceleration */ + HW_VLAN_FILTER_BIT, /* Receive filtering on VLAN */ + VLAN_CHALLENGED_BIT, /* Device cannot handle VLAN packets */ + GSO_BIT, /* Enable software GSO. */ + LLTX_BIT, /* LockLess TX - deprecated. Please */ + /* do not use LLTX in new drivers */ + NETNS_LOCAL_BIT, /* Does not change network namespaces */ + GRO_BIT, /* Generic receive offload */ + LRO_BIT, /* large receive offload */ + RESERVED16_BIT, /* the GSO_MASK reserved bit 16 */ + RESERVED17_BIT, /* the GSO_MASK reserved bit 17 */ + RESERVED18_BIT, /* the GSO_MASK reserved bit 18 */ + RESERVED19_BIT, /* the GSO_MASK reserved bit 19 */ + RESERVED20_BIT, /* the GSO_MASK reserved bit 20 */ + RESERVED21_BIT, /* the GSO_MASK reserved bit 21 */ + RESERVED22_BIT, /* the GSO_MASK reserved bit 22 */ + RESERVED23_BIT, /* the GSO_MASK reserved bit 23 */ + FCOE_CRC_BIT, /* FCoE CRC32 */ + SCTP_CSUM_BIT, /* SCTP checksum offload */ + FCOE_MTU_BIT, /* Supports max FCoE MTU, 2158 bytes*/ + NTUPLE_BIT, /* N-tuple filters supported */ + RXHASH_BIT, /* Receive hashing offload */ + RXCSUM_BIT, /* Receive checksumming offload */ + NOCACHE_COPY_BIT, /* Use no-cache copyfromuser */ + LOOPBACK_BIT, /* Enable loopback */ + + /* Add you bit above this */ + ND_FEATURE_NUM_BITS /* (LAST VALUE) Total bits in use */ +}; + +/* * The DEVICE structure. * Actually, this whole structure is a big mistake. It mixes I/O * data with strictly "high-level" data, and it has to know about @@ -1035,36 +1079,32 @@ struct net_device { /* mask of features inheritable by VLAN devices */ u32 vlan_features; - /* Net device feature bits; if you change something, - * also update netdev_features_strings[] in ethtool.c */ - -#define NETIF_F_SG 1 /* Scatter/gather IO. */ -#define NETIF_F_IP_CSUM 2 /* Can checksum TCP/UDP over IPv4. */ -#define NETIF_F_NO_CSUM 4 /* Does not require checksum. F.e. loopack. */ -#define NETIF_F_HW_CSUM 8 /* Can checksum all the packets. */ -#define NETIF_F_IPV6_CSUM 16 /* Can checksum TCP/UDP over IPV6 */ -#define NETIF_F_HIGHDMA 32 /* Can DMA to high memory. */ -#define NETIF_F_FRAGLIST 64 /* Scatter/gather IO. */ -#define NETIF_F_HW_VLAN_TX 128 /* Transmit VLAN hw acceleration */ -#define NETIF_F_HW_VLAN_RX 256 /* Receive VLAN hw acceleration */ -#define NETIF_F_HW_VLAN_FILTER 512 /* Receive filtering on VLAN */ -#define NETIF_F_VLAN_CHALLENGED 1024 /* Device cannot handle VLAN packets */ -#define NETIF_F_GSO 2048 /* Enable software GSO. */ -#define NETIF_F_LLTX 4096 /* LockLess TX - deprecated. Please */ - /* do not use LLTX in new drivers */ -#define NETIF_F_NETNS_LOCAL 8192 /* Does not change network namespaces */ -#define NETIF_F_GRO 16384 /* Generic receive offload */ -#define NETIF_F_LRO 32768 /* large receive offload */ - -/* the GSO_MASK reserves bits 16 through 23 */ -#define NETIF_F_FCOE_CRC (1 << 24) /* FCoE CRC32 */ -#define NETIF_F_SCTP_CSUM (1 << 25) /* SCTP checksum offload */ -#define NETIF_F_FCOE_MTU (1 << 26) /* Supports max FCoE MTU, 2158 bytes*/ -#define NETIF_F_NTUPLE (1 << 27) /* N-tuple filters supported */ -#define NETIF_F_RXHASH (1 << 28) /* Receive hashing offload */ -#define NETIF_F_RXCSUM (1 << 29) /* Receive checksumming offload */ -#define NETIF_F_NOCACHE_COPY (1 << 30) /* Use no-cache copyfromuser */ -#define NETIF_F_LOOPBACK (1 << 31) /* Enable loopback */ +#define BIT2FLAG(bit) (1 << (bit)) + +#define NETIF_F_SG BIT2FLAG(SG_BIT) +#define NETIF_F_IP_CSUM BIT2FLAG(IP_CSUM_BIT) +#define NETIF_F_NO_CSUM BIT2FLAG(NO_CSUM_BIT) +#define NETIF_F_HW_CSUM BIT2FLAG(HW_CSUM_BIT) +#define NETIF_F_IPV6_CSUM BIT2FLAG(IPV6_CSUM_BIT) +#define NETIF_F_HIGHDMA BIT2FLAG(HIGHDMA_BIT) +#define NETIF_F_FRAGLIST BIT2FLAG(FRAGLIST_BIT) +#define NETIF_F_HW_VLAN_TX BIT2FLAG(HW_VLAN_TX_BIT) +#define NETIF_F_HW_VLAN_RX BIT2FLAG(HW_VLAN_RX_BIT) +#define NETIF_F_HW_VLAN_FILTER BIT2FLAG(HW_VLAN_FILTER_BIT) +#define NETIF_F_VLAN_CHALLENGED BIT2FLAG(VLAN_CHALLENGED_BIT) +#define NETIF_F_GSO BIT2FLAG(GSO_BIT) +#define NETIF_F_LLTX BIT2FLAG(LLTX_BIT) +#define NETIF_F_NETNS_LOCAL BIT2FLAG(NETNS_LOCAL_BIT) +#define NETIF_F_GRO BIT2FLAG(GRO_BIT) +#define NETIF_F_LRO BIT2FLAG(LRO_BIT) +#define NETIF_F_FCOE_CRC BIT2FLAG(FCOE_CRC_BIT) +#define NETIF_F_SCTP_CSUM BIT2FLAG(SCTP_CSUM_BIT) +#define NETIF_F_FCOE_MTU BIT2FLAG(FCOE_MTU_BIT) +#define NETIF_F_NTUPLE BIT2FLAG(NTUPLE_BIT) +#define NETIF_F_RXHASH BIT2FLAG(RXHASH_BIT) +#define NETIF_F_RXCSUM BIT2FLAG(RXCSUM_BIT) +#define NETIF_F_NOCACHE_COPY BIT2FLAG(NOCACHE_COPY_BIT) +#define NETIF_F_LOOPBACK BIT2FLAG(LOOPBACK_BIT) /* Segmentation offload features */ #define NETIF_F_GSO_SHIFT 16 -- 1.7.3.1