diff options
| author | Adrian Bunk <bunk@r063144.stusta.swh.mhn.de> | 2006-03-20 20:30:36 +0300 | 
|---|---|---|
| committer | Adrian Bunk <bunk@r063144.stusta.swh.mhn.de> | 2006-03-20 20:30:36 +0300 | 
| commit | 0f76ee451484d02c7405d92e7bceb39b415abb01 (patch) | |
| tree | 9722f84281f786ba48971dde057f5171a49969e4 /net/core/skbuff.c | |
| parent | 01d206a7c1167639f6ca6dac22140fbdca017558 (diff) | |
| parent | 7705a8792b0fc82fd7d4dd923724606bbfd9fb20 (diff) | |
| download | linux-0f76ee451484d02c7405d92e7bceb39b415abb01.tar.xz | |
Merge with git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Diffstat (limited to 'net/core/skbuff.c')
| -rw-r--r-- | net/core/skbuff.c | 10 | 
1 files changed, 3 insertions, 7 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 6766f118f070..2144952d1c6c 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -411,6 +411,9 @@ struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)  	C(pkt_type);  	C(ip_summed);  	C(priority); +#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE) +	C(ipvs_property); +#endif  	C(protocol);  	n->destructor = NULL;  #ifdef CONFIG_NETFILTER @@ -422,13 +425,6 @@ struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)  	C(nfct_reasm);  	nf_conntrack_get_reasm(skb->nfct_reasm);  #endif -#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE) -	C(ipvs_property); -#endif -#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE) -	C(nfct_reasm); -	nf_conntrack_get_reasm(skb->nfct_reasm); -#endif  #ifdef CONFIG_BRIDGE_NETFILTER  	C(nf_bridge);  	nf_bridge_get(skb->nf_bridge);  | 
