Re: kernel oops when system under network stress

From: Herbert Xu
Date: Thu Oct 16 2008 - 05:10:23 EST


On Thu, Oct 16, 2008 at 06:09:34PM +1100, Alex Samad wrote:
>
> just about, within a 5-10 min window

Great. Please apply this patch and let me know what it prints
out (if anything).

Thanks,
--
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@xxxxxxxxxxxxxxxxxxx>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
--
diff --git a/net/ipv6/inet6_connection_sock.c b/net/ipv6/inet6_connection_sock.c
index 16d43f2..72af09d 100644
--- a/net/ipv6/inet6_connection_sock.c
+++ b/net/ipv6/inet6_connection_sock.c
@@ -233,6 +233,13 @@ int inet6_csk_xmit(struct sk_buff *skb, int ipfragok)
/* Restore final destination back after routing done */
ipv6_addr_copy(&fl.fl6_dst, &np->daddr);

+ if (WARN_ON(skb_is_gso(skb) && skb->ip_summed != CHECKSUM_PARTIAL)) {
+ printk("%s: %d %d %d 0x%x 0x%x 0x%lx", skb->dst->dev->name,
+ skb->ip_summed, skb_shinfo(skb)->gso_size, skb->len,
+ skb_shinfo(skb)->gso_type, sk->sk_route_caps,
+ skb->dst->dev->features);
+ }
+
return ip6_xmit(sk, skb, &fl, np->opt, 0);
}

--
To unsubscribe from this list: send the line "unsubscribe linux-net" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html