Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 6069
b: refs/heads/master
c: 18c16c6
h: refs/heads/master
i:
  6067: 4804674
v: v3
  • Loading branch information
Chuck Ebbert authored and Jeff Garzik committed Jul 31, 2005
1 parent d149c84 commit 1361c11
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d2ae1d2ff9282ca061b6f5244eee4c28ee2b3ffa
refs/heads/master: 18c16c696e8b2323a306af455c686df15c717206
4 changes: 2 additions & 2 deletions trunk/drivers/net/loopback.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ static int loopback_xmit(struct sk_buff *skb, struct net_device *dev)

lb_stats = &per_cpu(loopback_stats, get_cpu());
lb_stats->rx_bytes += skb->len;
lb_stats->tx_bytes += skb->len;
lb_stats->tx_bytes = lb_stats->rx_bytes;
lb_stats->rx_packets++;
lb_stats->tx_packets++;
lb_stats->tx_packets = lb_stats->rx_packets;
put_cpu();

netif_rx(skb);
Expand Down

0 comments on commit 1361c11

Please sign in to comment.