diff options
author | Patrick McHardy <kaber@trash.net> | 2007-07-14 23:48:19 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-07-14 23:48:19 -0400 |
commit | 61075af51f252913401c41fbe94075b46c94e9f1 (patch) | |
tree | bf97f2a5ed93ed1767953b0ae8678d921ebc0473 /net/ipv4 | |
parent | 370786f9cfd430cb424f00ce4110e75bb1b95a19 (diff) |
[NETFILTER]: nf_conntrack: mark protocols __read_mostly
Also remove two unnecessary EXPORT_SYMBOLs and move the
nf_conntrack_l3proto_ipv4 declaration to the correct file.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c | 2 | ||||
-rw-r--r-- | net/ipv4/netfilter/nf_conntrack_proto_icmp.c | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c b/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c index ee29f4e9eac2..64552afd01cb 100644 --- a/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c +++ b/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c | |||
@@ -405,7 +405,7 @@ static struct nf_sockopt_ops so_getorigdst = { | |||
405 | .get = &getorigdst, | 405 | .get = &getorigdst, |
406 | }; | 406 | }; |
407 | 407 | ||
408 | struct nf_conntrack_l3proto nf_conntrack_l3proto_ipv4 = { | 408 | struct nf_conntrack_l3proto nf_conntrack_l3proto_ipv4 __read_mostly = { |
409 | .l3proto = PF_INET, | 409 | .l3proto = PF_INET, |
410 | .name = "ipv4", | 410 | .name = "ipv4", |
411 | .pkt_to_tuple = ipv4_pkt_to_tuple, | 411 | .pkt_to_tuple = ipv4_pkt_to_tuple, |
diff --git a/net/ipv4/netfilter/nf_conntrack_proto_icmp.c b/net/ipv4/netfilter/nf_conntrack_proto_icmp.c index f96573304f5b..6593fd2c5b10 100644 --- a/net/ipv4/netfilter/nf_conntrack_proto_icmp.c +++ b/net/ipv4/netfilter/nf_conntrack_proto_icmp.c | |||
@@ -312,7 +312,7 @@ static struct ctl_table icmp_compat_sysctl_table[] = { | |||
312 | #endif /* CONFIG_NF_CONNTRACK_PROC_COMPAT */ | 312 | #endif /* CONFIG_NF_CONNTRACK_PROC_COMPAT */ |
313 | #endif /* CONFIG_SYSCTL */ | 313 | #endif /* CONFIG_SYSCTL */ |
314 | 314 | ||
315 | struct nf_conntrack_l4proto nf_conntrack_l4proto_icmp = | 315 | struct nf_conntrack_l4proto nf_conntrack_l4proto_icmp __read_mostly = |
316 | { | 316 | { |
317 | .l3proto = PF_INET, | 317 | .l3proto = PF_INET, |
318 | .l4proto = IPPROTO_ICMP, | 318 | .l4proto = IPPROTO_ICMP, |
@@ -338,4 +338,3 @@ struct nf_conntrack_l4proto nf_conntrack_l4proto_icmp = | |||
338 | #endif | 338 | #endif |
339 | #endif | 339 | #endif |
340 | }; | 340 | }; |
341 | EXPORT_SYMBOL_GPL(nf_conntrack_l4proto_icmp); | ||