From: Changli Gao Date: Fri, 19 Aug 2011 04:44:18 +0000 (+0000) Subject: net: Preserve ooo_okay when copying skb header X-Git-Tag: next-20110822~42^2~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=6461be3a54f802e00d5dcba3537271f92a90eaf3;p=karo-tx-linux.git net: Preserve ooo_okay when copying skb header Signed-off-by: Changli Gao Signed-off-by: David S. Miller --- diff --git a/net/core/skbuff.c b/net/core/skbuff.c index edb66f3e24f1..e27334ec367a 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -529,6 +529,7 @@ static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old) new->mac_header = old->mac_header; skb_dst_copy(new, old); new->rxhash = old->rxhash; + new->ooo_okay = old->ooo_okay; new->l4_rxhash = old->l4_rxhash; #ifdef CONFIG_XFRM new->sp = secpath_get(old->sp);