| Submitter | David Miller |
|---|---|
| Date | March 2, 2009, 5:33 a.m. |
| Message ID | <20090301.213328.103151098.davem@davemloft.net> |
| Download | mbox | patch |
| Permalink | /patch/23921/ |
| State | Not Applicable |
| Delegated to: | David Miller |
| Headers | show |
Comments
On Sun, Mar 01, 2009 at 09:33:28PM -0800, David Miller wrote: > > Pavel already submitted a fix for this and it's in my net-2.6 > tree and therefore will be sent to Linus soon. > > And thanks so much for your amazing patience. > Thanks for resolving this. Apologies I was too ignorant to see the patch from Pavel. :/ regards, Kyle -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/net/ipv6/inet6_hashtables.c b/net/ipv6/inet6_hashtables.c index 8fe267f..1bcc343 100644 --- a/net/ipv6/inet6_hashtables.c +++ b/net/ipv6/inet6_hashtables.c @@ -258,11 +258,11 @@ unique: if (twp != NULL) { *twp = tw; - NET_INC_STATS_BH(twsk_net(tw), LINUX_MIB_TIMEWAITRECYCLED); + NET_INC_STATS_BH(net, LINUX_MIB_TIMEWAITRECYCLED); } else if (tw != NULL) { /* Silly. Should hash-dance instead... */ inet_twsk_deschedule(tw, death_row); - NET_INC_STATS_BH(twsk_net(tw), LINUX_MIB_TIMEWAITRECYCLED); + NET_INC_STATS_BH(net, LINUX_MIB_TIMEWAITRECYCLED); inet_twsk_put(tw); }