diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2007-04-28 21:04:03 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-04-28 21:04:03 -0700 |
commit | 5a1b5898ee9e0bf68a86609ecb9775457b1857a5 (patch) | |
tree | c51b0c34ba89472a2b5c59d735a7e1affaa0e244 /include | |
parent | d16bfd0c77b35a0a0f0e159b94b9921510bf7934 (diff) | |
download | linux-stable-5a1b5898ee9e0bf68a86609ecb9775457b1857a5.tar.gz linux-stable-5a1b5898ee9e0bf68a86609ecb9775457b1857a5.tar.bz2 linux-stable-5a1b5898ee9e0bf68a86609ecb9775457b1857a5.zip |
[NET]: Remove NETIF_F_INTERNAL_STATS, default to internal stats.
Herbert Xu conviced me that a new flag was overkill; every driver
currently overrides get_stats, so we might as well make the internal
one the default. If someone did fail to set get_stats, they would now
get all 0 stats instead of "No statistics available".
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Acked-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/netdevice.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 24cef42f1e0f..ac0c92b1e002 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -325,7 +325,6 @@ struct net_device #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 */ -#define NETIF_F_INTERNAL_STATS 8192 /* Use stats structure in net_device */ /* Segmentation offload features */ #define NETIF_F_GSO_SHIFT 16 |