aboutsummaryrefslogtreecommitdiffstats
path: root/patches/linux-2.6.16.31/net-gso-4-kill-warnon.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/linux-2.6.16.31/net-gso-4-kill-warnon.patch')
-rw-r--r--patches/linux-2.6.16.31/net-gso-4-kill-warnon.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/patches/linux-2.6.16.31/net-gso-4-kill-warnon.patch b/patches/linux-2.6.16.31/net-gso-4-kill-warnon.patch
new file mode 100644
index 0000000000..86cd7a2b47
--- /dev/null
+++ b/patches/linux-2.6.16.31/net-gso-4-kill-warnon.patch
@@ -0,0 +1,27 @@
+diff -pruN ../orig-linux-2.6.16.29/net/core/dev.c ./net/core/dev.c
+--- ../orig-linux-2.6.16.29/net/core/dev.c 2006-09-19 13:59:46.000000000 +0100
++++ ./net/core/dev.c 2006-09-19 14:05:32.000000000 +0100
+@@ -1087,11 +1087,6 @@ int skb_checksum_help(struct sk_buff *sk
+ goto out_set_summed;
+
+ if (unlikely(skb_shinfo(skb)->gso_size)) {
+- static int warned;
+-
+- WARN_ON(!warned);
+- warned = 1;
+-
+ /* Let GSO fix up the checksum. */
+ goto out_set_summed;
+ }
+@@ -1141,11 +1136,6 @@ struct sk_buff *skb_gso_segment(struct s
+ __skb_pull(skb, skb->mac_len);
+
+ if (unlikely(skb->ip_summed != CHECKSUM_HW)) {
+- static int warned;
+-
+- WARN_ON(!warned);
+- warned = 1;
+-
+ if (skb_header_cloned(skb) &&
+ (err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC)))
+ return ERR_PTR(err);