Commit 0abe791e authored by Santiago Leon's avatar Santiago Leon Committed by Jeff Garzik

[PATCH] ibmveth fix bonding

This patch updates dev->trans_start and dev->last_rx so that the ibmveth
driver can be used with the ARP monitor in the bonding driver.
Signed-off-by: default avatarSantiago Leon <santil@us.ibm.com>
Signed-off-by: default avatarJeff Garzik <jgarzik@pobox.com>
parent 37ff238d
...@@ -725,6 +725,7 @@ static int ibmveth_start_xmit(struct sk_buff *skb, struct net_device *netdev) ...@@ -725,6 +725,7 @@ static int ibmveth_start_xmit(struct sk_buff *skb, struct net_device *netdev)
} else { } else {
adapter->stats.tx_packets++; adapter->stats.tx_packets++;
adapter->stats.tx_bytes += skb->len; adapter->stats.tx_bytes += skb->len;
netdev->trans_start = jiffies;
} }
do { do {
...@@ -776,6 +777,7 @@ static int ibmveth_poll(struct net_device *netdev, int *budget) ...@@ -776,6 +777,7 @@ static int ibmveth_poll(struct net_device *netdev, int *budget)
adapter->stats.rx_packets++; adapter->stats.rx_packets++;
adapter->stats.rx_bytes += length; adapter->stats.rx_bytes += length;
frames_processed++; frames_processed++;
netdev->last_rx = jiffies;
} }
} else { } else {
more_work = 0; more_work = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment