aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/s390/net/ctcm_main.c
diff options
context:
space:
mode:
authorEric Dumazet <eric.dumazet@gmail.com>2009-08-31 02:34:50 -0400
committerDavid S. Miller <davem@davemloft.net>2009-09-03 02:07:36 -0400
commit451f14439847db302e5104c44458b2dbb4b1829d (patch)
tree697046c4438806c37c5b0835dc71b7fdd35b8a92 /drivers/s390/net/ctcm_main.c
parent6ce9e7b5fe3195d1ae6e3a0753d4ddcac5cd699e (diff)
drivers: Kill now superfluous ->last_rx stores
The generic packet receive code takes care of setting netdev->last_rx when necessary, for the sake of the bonding ARP monitor. Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Acked-by: Neil Horman <nhorman@txudriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/s390/net/ctcm_main.c')
-rw-r--r--drivers/s390/net/ctcm_main.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/s390/net/ctcm_main.c b/drivers/s390/net/ctcm_main.c
index 38b5079f1599..c5b83874500c 100644
--- a/drivers/s390/net/ctcm_main.c
+++ b/drivers/s390/net/ctcm_main.c
@@ -164,7 +164,6 @@ void ctcm_unpack_skb(struct channel *ch, struct sk_buff *pskb)
164 priv->stats.rx_packets++; 164 priv->stats.rx_packets++;
165 priv->stats.rx_bytes += skblen; 165 priv->stats.rx_bytes += skblen;
166 netif_rx_ni(skb); 166 netif_rx_ni(skb);
167 dev->last_rx = jiffies;
168 if (len > 0) { 167 if (len > 0) {
169 skb_pull(pskb, header->length); 168 skb_pull(pskb, header->length);
170 if (skb_tailroom(pskb) < LL_HEADER_LENGTH) { 169 if (skb_tailroom(pskb) < LL_HEADER_LENGTH) {