Skip to content

Commit

Permalink
bonding: remove unnecessary setup_by_slave member
Browse files Browse the repository at this point in the history
We have a member called setup_by_slave in struct bonding to denote if the
bond dev has different type than ARPHRD_ETHER, but that is already denoted
in bond's netdev type variable if it was setup by the slave, so use that
instead of the member.

Signed-off-by: Nikolay Aleksandrov <nikolay@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
nikolay@redhat.com authored and David S. Miller committed Jun 28, 2013
1 parent 3a36515 commit 8d2ada7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
5 changes: 1 addition & 4 deletions drivers/net/bonding/bond_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1382,8 +1382,6 @@ static void bond_compute_features(struct bonding *bond)
static void bond_setup_by_slave(struct net_device *bond_dev,
struct net_device *slave_dev)
{
struct bonding *bond = netdev_priv(bond_dev);

bond_dev->header_ops = slave_dev->header_ops;

bond_dev->type = slave_dev->type;
Expand All @@ -1392,7 +1390,6 @@ static void bond_setup_by_slave(struct net_device *bond_dev,

memcpy(bond_dev->broadcast, slave_dev->broadcast,
slave_dev->addr_len);
bond->setup_by_slave = 1;
}

/* On bonding slaves other than the currently active slave, suppress
Expand Down Expand Up @@ -3187,7 +3184,7 @@ static int bond_slave_netdev_event(unsigned long event,

switch (event) {
case NETDEV_UNREGISTER:
if (bond->setup_by_slave)
if (bond_dev->type != ARPHRD_ETHER)
bond_release_and_destroy(bond_dev, slave_dev);
else
bond_release(bond_dev, slave_dev);
Expand Down
1 change: 0 additions & 1 deletion drivers/net/bonding/bonding.h
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@ struct bonding {
rwlock_t lock;
rwlock_t curr_slave_lock;
u8 send_peer_notif;
s8 setup_by_slave;
u8 igmp_retrans;
#ifdef CONFIG_PROC_FS
struct proc_dir_entry *proc_entry;
Expand Down

0 comments on commit 8d2ada7

Please sign in to comment.