direct-io.hg
diff patches/linux-2.6.16.29/net-gso-4-kill-warnon.patch @ 11536:041be3f6b38e
[linux patches] Update patches for linux-2.6.16.29.
Signed-off-by: Christian Limpach <Christian.Limpach@xensource.com>
Signed-off-by: Christian Limpach <Christian.Limpach@xensource.com>
author | Christian Limpach <Christian.Limpach@xensource.com> |
---|---|
date | Tue Sep 19 14:26:47 2006 +0100 (2006-09-19) |
parents | patches/linux-2.6.16.13/net-gso-4-kill-warnon.patch@9519445d9e9d |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/patches/linux-2.6.16.29/net-gso-4-kill-warnon.patch Tue Sep 19 14:26:47 2006 +0100 1.3 @@ -0,0 +1,27 @@ 1.4 +diff -pruN ../orig-linux-2.6.16.29/net/core/dev.c ./net/core/dev.c 1.5 +--- ../orig-linux-2.6.16.29/net/core/dev.c 2006-09-19 13:59:46.000000000 +0100 1.6 ++++ ./net/core/dev.c 2006-09-19 14:05:32.000000000 +0100 1.7 +@@ -1087,11 +1087,6 @@ int skb_checksum_help(struct sk_buff *sk 1.8 + goto out_set_summed; 1.9 + 1.10 + if (unlikely(skb_shinfo(skb)->gso_size)) { 1.11 +- static int warned; 1.12 +- 1.13 +- WARN_ON(!warned); 1.14 +- warned = 1; 1.15 +- 1.16 + /* Let GSO fix up the checksum. */ 1.17 + goto out_set_summed; 1.18 + } 1.19 +@@ -1141,11 +1136,6 @@ struct sk_buff *skb_gso_segment(struct s 1.20 + __skb_pull(skb, skb->mac_len); 1.21 + 1.22 + if (unlikely(skb->ip_summed != CHECKSUM_HW)) { 1.23 +- static int warned; 1.24 +- 1.25 +- WARN_ON(!warned); 1.26 +- warned = 1; 1.27 +- 1.28 + if (skb_header_cloned(skb) && 1.29 + (err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))) 1.30 + return ERR_PTR(err);