diff options
author | nikolay@redhat.com <nikolay@redhat.com> | 2013-06-26 19:13:37 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-06-28 09:50:15 +0400 |
commit | 8d2ada77f8a7f8f65fcbf71b23cbac54b64151a6 (patch) | |
tree | bf48e3ada33e8b2cc151c3a23adef15e188d85eb /drivers/net/bonding/bonding.h | |
parent | 3a36515f729458c8efa0c124c7262d5843ad5c37 (diff) | |
download | linux-8d2ada77f8a7f8f65fcbf71b23cbac54b64151a6.tar.xz |
bonding: remove unnecessary setup_by_slave member
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>
Diffstat (limited to 'drivers/net/bonding/bonding.h')
-rw-r--r-- | drivers/net/bonding/bonding.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/bonding/bonding.h b/drivers/net/bonding/bonding.h index 3fb73cc8c34a..c6c8d03562e5 100644 --- a/drivers/net/bonding/bonding.h +++ b/drivers/net/bonding/bonding.h @@ -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; |