* Kyle McMartin <kmcmartin@xxxxxxxxxx> wrote: > Hi folks, > > As you may have noticed, I committed and pushed out builds for > 2.6.35-rc3 to devel/ today overtop of 2.6.34, which is still on track > for F-13. FYI, just in case you have not included it yet, there's a critical localhost networking bug in -rc3, i've applied the fix below. Localhost networking hangs without this fix. Ingo -----------------> >From 4373374f03bb077beda7d728e49635e74942cdb4 Mon Sep 17 00:00:00 2001 From: John Fastabend <john.r.fastabend@xxxxxxxxx> Date: Sun, 13 Jun 2010 10:36:30 +0000 Subject: [PATCH] net: fix deliver_no_wcard regression on loopback device deliver_no_wcard is not being set in skb_copy_header. In the skb_cloned case it is not being cleared and may cause the skb to be dropped when the loopback device pushes it back up the stack. Signed-off-by: John Fastabend <john.r.fastabend@xxxxxxxxx> Acked-by: Eric Dumazet <eric.dumazet@xxxxxxxxx> Tested-by: Markus Trippelsdorf <markus@xxxxxxxxxxxxxxx> Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx> --- net/core/skbuff.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 9f07e74..bcf2fa3 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -532,6 +532,7 @@ static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old) new->ip_summed = old->ip_summed; skb_copy_queue_mapping(new, old); new->priority = old->priority; + new->deliver_no_wcard = old->deliver_no_wcard; #if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE) new->ipvs_property = old->ipvs_property; #endif _______________________________________________ kernel mailing list kernel@xxxxxxxxxxxxxxxxxxxxxxx https://admin.fedoraproject.org/mailman/listinfo/kernel