diff options
author | David S. Miller <davem@davemloft.net> | 2008-11-04 09:01:07 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-04 09:01:07 +0300 |
commit | d2ad3ca88da02baeccd5216780f1fe983c6953ba (patch) | |
tree | 62858c1c1f89cf4abe17f5e4e0812b1b528fbd18 /net/bluetooth/bnep | |
parent | 265eb67fb4e16be8e46a51e1e4e2ecd99fb15219 (diff) | |
download | linux-d2ad3ca88da02baeccd5216780f1fe983c6953ba.tar.xz |
net/: 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: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bluetooth/bnep')
-rw-r--r-- | net/bluetooth/bnep/core.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/bluetooth/bnep/core.c b/net/bluetooth/bnep/core.c index 80ba30cf4b68..7a4d5303b4fe 100644 --- a/net/bluetooth/bnep/core.c +++ b/net/bluetooth/bnep/core.c @@ -311,7 +311,6 @@ static inline int bnep_rx_frame(struct bnep_session *s, struct sk_buff *skb) struct sk_buff *nskb; u8 type; - dev->last_rx = jiffies; s->stats.rx_bytes += skb->len; type = *(u8 *) skb->data; skb_pull(skb, 1); |