diff options
author | Pavel Emelyanov <xemul@openvz.org> | 2008-05-21 14:13:47 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-05-21 14:13:47 -0700 |
commit | a339f1c881fdb8092ef9b118610307e10e885fc8 (patch) | |
tree | 117feec8162165b577d7030262da66e8ac6a5e83 /net/bridge/br_private.h | |
parent | 96e74088f1da4d9a53735a4a57a4f984f86b75c6 (diff) |
bridge: Use on-device stats instead of private ones.
Even though bridges require 6 fields from struct net_device_stats,
the on-device stats are always there, so we may just use them.
The br_dev_get_stats is no longer required after this.
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge/br_private.h')
-rw-r--r-- | net/bridge/br_private.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/bridge/br_private.h b/net/bridge/br_private.h index c11b554fd109..0243cb489edd 100644 --- a/net/bridge/br_private.h +++ b/net/bridge/br_private.h @@ -90,7 +90,6 @@ struct net_bridge spinlock_t lock; struct list_head port_list; struct net_device *dev; - struct net_device_stats statistics; spinlock_t hash_lock; struct hlist_head hash[BR_HASH_SIZE]; struct list_head age_list; |