bonding: rename last_arp_rx to last_rx

To reflect the new meaning.

CC: Jay Vosburgh <fubar@us.ibm.com>
CC: Andy Gospodarek <andy@greyhouse.net>
Signed-off-by: Veaceslav Falico <vfalico@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Veaceslav Falico
2014-02-18 07:48:47 +01:00
committed by David S. Miller
parent 8e603460fa
commit 49f17de721
2 changed files with 8 additions and 8 deletions

View File

@@ -190,7 +190,7 @@ struct slave {
int delay;
/* all three in jiffies */
unsigned long last_link_up;
unsigned long last_arp_rx;
unsigned long last_rx;
unsigned long target_last_arp_rx[BOND_MAX_ARP_TARGETS];
s8 link; /* one of BOND_LINK_XXXX */
s8 new_link;
@@ -383,7 +383,7 @@ static inline unsigned long slave_last_rx(struct bonding *bond,
if (bond->params.arp_all_targets == BOND_ARP_TARGETS_ALL)
return slave_oldest_target_arp_rx(bond, slave);
return slave->last_arp_rx;
return slave->last_rx;
}
#ifdef CONFIG_NET_POLL_CONTROLLER