netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] netfilter: add a missing include in nf_conntrack_reasm.c
@ 2011-01-20 17:53 Eric Dumazet
  2011-01-20 19:18 ` Patrick McHardy
  0 siblings, 1 reply; 4+ messages in thread
From: Eric Dumazet @ 2011-01-20 17:53 UTC (permalink / raw)
  To: Patrick McHardy
  Cc: Netfilter Development Mailinglist, netdev, KOVACS Krisztian

After commit ae90bdeaeac6b (netfilter: fix compilation when conntrack is
disabled but tproxy is enabled) we have following warnings :

net/ipv6/netfilter/nf_conntrack_reasm.c:520:16: warning: symbol
'nf_ct_frag6_gather' was not declared. Should it be static?
net/ipv6/netfilter/nf_conntrack_reasm.c:591:6: warning: symbol
'nf_ct_frag6_output' was not declared. Should it be static?
net/ipv6/netfilter/nf_conntrack_reasm.c:612:5: warning: symbol
'nf_ct_frag6_init' was not declared. Should it be static?
net/ipv6/netfilter/nf_conntrack_reasm.c:640:6: warning: symbol
'nf_ct_frag6_cleanup' was not declared. Should it be static?

Fix this including net/netfilter/ipv6/nf_defrag_ipv6.h


Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
CC: KOVACS Krisztian <hidden@balabit.hu>
---
 net/ipv6/netfilter/nf_conntrack_reasm.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/net/ipv6/netfilter/nf_conntrack_reasm.c b/net/ipv6/netfilter/nf_conntrack_reasm.c
index 66e003e..0857272 100644
--- a/net/ipv6/netfilter/nf_conntrack_reasm.c
+++ b/net/ipv6/netfilter/nf_conntrack_reasm.c
@@ -45,6 +45,7 @@
 #include <linux/netfilter_ipv6.h>
 #include <linux/kernel.h>
 #include <linux/module.h>
+#include <net/netfilter/ipv6/nf_defrag_ipv6.h>
 
 
 struct nf_ct_frag6_skb_cb



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] netfilter: add a missing include in nf_conntrack_reasm.c
  2011-01-20 17:53 [PATCH] netfilter: add a missing include in nf_conntrack_reasm.c Eric Dumazet
@ 2011-01-20 19:18 ` Patrick McHardy
  2011-01-20 19:57   ` Eric Dumazet
  0 siblings, 1 reply; 4+ messages in thread
From: Patrick McHardy @ 2011-01-20 19:18 UTC (permalink / raw)
  To: Eric Dumazet; +Cc: Netfilter Development Mailinglist, netdev, KOVACS Krisztian

Am 20.01.2011 18:53, schrieb Eric Dumazet:
> After commit ae90bdeaeac6b (netfilter: fix compilation when conntrack is
> disabled but tproxy is enabled) we have following warnings :
> 
> net/ipv6/netfilter/nf_conntrack_reasm.c:520:16: warning: symbol
> 'nf_ct_frag6_gather' was not declared. Should it be static?
> net/ipv6/netfilter/nf_conntrack_reasm.c:591:6: warning: symbol
> 'nf_ct_frag6_output' was not declared. Should it be static?
> net/ipv6/netfilter/nf_conntrack_reasm.c:612:5: warning: symbol
> 'nf_ct_frag6_init' was not declared. Should it be static?
> net/ipv6/netfilter/nf_conntrack_reasm.c:640:6: warning: symbol
> 'nf_ct_frag6_cleanup' was not declared. Should it be static?
> 
> Fix this including net/netfilter/ipv6/nf_defrag_ipv6.h
> 

I currently don't have access to all my trees, does this patch
apply to 2.6.38 or just the current -rc?

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] netfilter: add a missing include in nf_conntrack_reasm.c
  2011-01-20 19:18 ` Patrick McHardy
@ 2011-01-20 19:57   ` Eric Dumazet
  2011-01-20 20:01     ` Patrick McHardy
  0 siblings, 1 reply; 4+ messages in thread
From: Eric Dumazet @ 2011-01-20 19:57 UTC (permalink / raw)
  To: Patrick McHardy
  Cc: Netfilter Development Mailinglist, netdev, KOVACS Krisztian

Le jeudi 20 janvier 2011 à 20:18 +0100, Patrick McHardy a écrit :
> Am 20.01.2011 18:53, schrieb Eric Dumazet:
> > After commit ae90bdeaeac6b (netfilter: fix compilation when conntrack is
> > disabled but tproxy is enabled) we have following warnings :
> > 
> > net/ipv6/netfilter/nf_conntrack_reasm.c:520:16: warning: symbol
> > 'nf_ct_frag6_gather' was not declared. Should it be static?
> > net/ipv6/netfilter/nf_conntrack_reasm.c:591:6: warning: symbol
> > 'nf_ct_frag6_output' was not declared. Should it be static?
> > net/ipv6/netfilter/nf_conntrack_reasm.c:612:5: warning: symbol
> > 'nf_ct_frag6_init' was not declared. Should it be static?
> > net/ipv6/netfilter/nf_conntrack_reasm.c:640:6: warning: symbol
> > 'nf_ct_frag6_cleanup' was not declared. Should it be static?
> > 
> > Fix this including net/netfilter/ipv6/nf_defrag_ipv6.h
> > 
> 
> I currently don't have access to all my trees, does this patch
> apply to 2.6.38 or just the current -rc?

I dont really understand the question.

Or do you mean 2.6.37 versus 2.6.38-rc1 ?

It's a minor correction anyway, not a stable candidate. It would be good
to push it for current (2.6.38)



--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] netfilter: add a missing include in nf_conntrack_reasm.c
  2011-01-20 19:57   ` Eric Dumazet
@ 2011-01-20 20:01     ` Patrick McHardy
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick McHardy @ 2011-01-20 20:01 UTC (permalink / raw)
  To: Eric Dumazet; +Cc: Netfilter Development Mailinglist, netdev, KOVACS Krisztian

Am 20.01.2011 20:57, schrieb Eric Dumazet:
> Le jeudi 20 janvier 2011 à 20:18 +0100, Patrick McHardy a écrit :
>> Am 20.01.2011 18:53, schrieb Eric Dumazet:
>>> After commit ae90bdeaeac6b (netfilter: fix compilation when conntrack is
>>> disabled but tproxy is enabled) we have following warnings :
>>>
>>> net/ipv6/netfilter/nf_conntrack_reasm.c:520:16: warning: symbol
>>> 'nf_ct_frag6_gather' was not declared. Should it be static?
>>> net/ipv6/netfilter/nf_conntrack_reasm.c:591:6: warning: symbol
>>> 'nf_ct_frag6_output' was not declared. Should it be static?
>>> net/ipv6/netfilter/nf_conntrack_reasm.c:612:5: warning: symbol
>>> 'nf_ct_frag6_init' was not declared. Should it be static?
>>> net/ipv6/netfilter/nf_conntrack_reasm.c:640:6: warning: symbol
>>> 'nf_ct_frag6_cleanup' was not declared. Should it be static?
>>>
>>> Fix this including net/netfilter/ipv6/nf_defrag_ipv6.h
>>>
>>
>> I currently don't have access to all my trees, does this patch
>> apply to 2.6.38 or just the current -rc?
> 
> I dont really understand the question.
> 
> Or do you mean 2.6.37 versus 2.6.38-rc1 ?

Right, that was a typo.

> It's a minor correction anyway, not a stable candidate. It would be good
> to push it for current (2.6.38)

Applied, thanks.

I'll push this together with a bunch of other fixes to Dave later tonight.
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-01-20 20:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-20 17:53 [PATCH] netfilter: add a missing include in nf_conntrack_reasm.c Eric Dumazet
2011-01-20 19:18 ` Patrick McHardy
2011-01-20 19:57   ` Eric Dumazet
2011-01-20 20:01     ` Patrick McHardy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).