Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 35cfabdc authored by Ajit Khaparde's avatar Ajit Khaparde Committed by David S. Miller
Browse files

bonding: Remove net_device_stats from bonding struct



There is no need to maintain stats in the bonding structure.
Use the instance of net_device_stats in netdevice.

Signed-off-by: default avatarAjit Khaparde <ajitk@serverengines.com>
Signed-off-by: default avatarJay Vosburgh <fubar@us.ibm.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 235ecb1d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3742,7 +3742,7 @@ static int bond_close(struct net_device *bond_dev)
static struct net_device_stats *bond_get_stats(struct net_device *bond_dev)
{
	struct bonding *bond = netdev_priv(bond_dev);
	struct net_device_stats *stats = &bond->stats;
	struct net_device_stats *stats = &bond_dev->stats;
	struct net_device_stats local_stats;
	struct slave *slave;
	int i;
+0 −1
Original line number Diff line number Diff line
@@ -197,7 +197,6 @@ struct bonding {
	s8	 send_grat_arp;
	s8	 send_unsol_na;
	s8	 setup_by_slave;
	struct   net_device_stats stats;
#ifdef CONFIG_PROC_FS
	struct   proc_dir_entry *proc_entry;
	char     proc_file_name[IFNAMSIZ];