Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 112145
b: refs/heads/master
c: 821d577
h: refs/heads/master
i:
  112143: d0922a5
v: v3
  • Loading branch information
Denis V. Lunev authored and David S. Miller committed Oct 8, 2008
1 parent 3d7c711 commit 322f546
Show file tree
Hide file tree
Showing 3 changed files with 4 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: 483a47d2fe794328d29950fe00ce26dd405d9437
refs/heads/master: 821d57776d4dda47ef5f0c33fdb3c761214b2f9f
3 changes: 2 additions & 1 deletion trunk/include/net/ipv6.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ DECLARE_SNMP_STAT(struct ipstats_mib, ipv6_statistics);
_DEVINC(ipv6, , idev, field); })
#define IP6_INC_STATS_BH(net, idev,field) ({ (void)(net); \
_DEVINC(ipv6, _BH, idev, field); })
#define IP6_ADD_STATS_BH(idev,field,val) _DEVADD(ipv6, _BH, idev, field, val)
#define IP6_ADD_STATS_BH(net, idev,field,val) ({ (void)(net); \
_DEVADD(ipv6, _BH, idev, field, val); })

DECLARE_SNMP_STAT(struct icmpv6_mib, icmpv6_statistics);
DECLARE_SNMP_STAT(struct icmpv6msg_mib, icmpv6msg_statistics);
Expand Down
2 changes: 1 addition & 1 deletion trunk/net/ipv6/reassembly.c
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ static void ip6_evictor(struct net *net, struct inet6_dev *idev)

evicted = inet_frag_evictor(&net->ipv6.frags, &ip6_frags);
if (evicted)
IP6_ADD_STATS_BH(idev, IPSTATS_MIB_REASMFAILS, evicted);
IP6_ADD_STATS_BH(net, idev, IPSTATS_MIB_REASMFAILS, evicted);
}

static void ip6_frag_expire(unsigned long data)
Expand Down

0 comments on commit 322f546

Please sign in to comment.