aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@openvz.org>2008-01-22 09:11:04 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:10:39 -0500
commit3b4bc4a2bfe80d01ebd4f2b6dcc58986c970ed16 (patch)
treed9dea3af7fb8fc828af0ba484c1fc06007dce351 /net/ipv6
parente31e0bdc7e7fb9a4b09d2f3266c035a18fdcee9d (diff)
[NETNS][FRAGS]: Isolate the secret interval from namespaces.
Since we have one hashtable to lookup the fragment, having different secret_interval-s for hash rebuild doesn't make sense, so move this one to inet_frags. The inet_frags_ctl becomes empty after this, so remove it. The appropriate ctl table is kept read-only in namespaces. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r--net/ipv6/netfilter/nf_conntrack_reasm.c6
-rw-r--r--net/ipv6/reassembly.c6
2 files changed, 3 insertions, 9 deletions
diff --git a/net/ipv6/netfilter/nf_conntrack_reasm.c b/net/ipv6/netfilter/nf_conntrack_reasm.c
index c75ac17e3945..6eed991a4a3f 100644
--- a/net/ipv6/netfilter/nf_conntrack_reasm.c
+++ b/net/ipv6/netfilter/nf_conntrack_reasm.c
@@ -70,10 +70,6 @@ struct nf_ct_frag6_queue
70 __u16 nhoffset; 70 __u16 nhoffset;
71}; 71};
72 72
73static struct inet_frags_ctl nf_frags_ctl __read_mostly = {
74 .secret_interval = 10 * 60 * HZ,
75};
76
77static struct inet_frags nf_frags; 73static struct inet_frags nf_frags;
78static struct netns_frags nf_init_frags; 74static struct netns_frags nf_init_frags;
79 75
@@ -701,7 +697,6 @@ int nf_ct_frag6_kfree_frags(struct sk_buff *skb)
701 697
702int nf_ct_frag6_init(void) 698int nf_ct_frag6_init(void)
703{ 699{
704 nf_frags.ctl = &nf_frags_ctl;
705 nf_frags.hashfn = nf_hashfn; 700 nf_frags.hashfn = nf_hashfn;
706 nf_frags.constructor = ip6_frag_init; 701 nf_frags.constructor = ip6_frag_init;
707 nf_frags.destructor = NULL; 702 nf_frags.destructor = NULL;
@@ -709,6 +704,7 @@ int nf_ct_frag6_init(void)
709 nf_frags.qsize = sizeof(struct nf_ct_frag6_queue); 704 nf_frags.qsize = sizeof(struct nf_ct_frag6_queue);
710 nf_frags.match = ip6_frag_match; 705 nf_frags.match = ip6_frag_match;
711 nf_frags.frag_expire = nf_ct_frag6_expire; 706 nf_frags.frag_expire = nf_ct_frag6_expire;
707 nf_frags.secret_interval = 10 * 60 * HZ;
712 nf_init_frags.timeout = IPV6_FRAG_TIMEOUT; 708 nf_init_frags.timeout = IPV6_FRAG_TIMEOUT;
713 nf_init_frags.high_thresh = 256 * 1024; 709 nf_init_frags.high_thresh = 256 * 1024;
714 nf_init_frags.low_thresh = 192 * 1024; 710 nf_init_frags.low_thresh = 192 * 1024;
diff --git a/net/ipv6/reassembly.c b/net/ipv6/reassembly.c
index 85f3fa382230..852070087307 100644
--- a/net/ipv6/reassembly.c
+++ b/net/ipv6/reassembly.c
@@ -658,7 +658,7 @@ static struct ctl_table ip6_frags_ctl_table[] = {
658 { 658 {
659 .ctl_name = NET_IPV6_IP6FRAG_SECRET_INTERVAL, 659 .ctl_name = NET_IPV6_IP6FRAG_SECRET_INTERVAL,
660 .procname = "ip6frag_secret_interval", 660 .procname = "ip6frag_secret_interval",
661 .data = &init_net.ipv6.sysctl.frags.secret_interval, 661 .data = &ip6_frags.secret_interval,
662 .maxlen = sizeof(int), 662 .maxlen = sizeof(int),
663 .mode = 0644, 663 .mode = 0644,
664 .proc_handler = &proc_dointvec_jiffies, 664 .proc_handler = &proc_dointvec_jiffies,
@@ -719,12 +719,9 @@ static inline void ip6_frags_sysctl_unregister(struct net *net)
719 719
720static int ipv6_frags_init_net(struct net *net) 720static int ipv6_frags_init_net(struct net *net)
721{ 721{
722 ip6_frags.ctl = &net->ipv6.sysctl.frags;
723
724 net->ipv6.frags.high_thresh = 256 * 1024; 722 net->ipv6.frags.high_thresh = 256 * 1024;
725 net->ipv6.frags.low_thresh = 192 * 1024; 723 net->ipv6.frags.low_thresh = 192 * 1024;
726 net->ipv6.frags.timeout = IPV6_FRAG_TIMEOUT; 724 net->ipv6.frags.timeout = IPV6_FRAG_TIMEOUT;
727 net->ipv6.sysctl.frags.secret_interval = 10 * 60 * HZ;
728 725
729 inet_frags_init_net(&net->ipv6.frags); 726 inet_frags_init_net(&net->ipv6.frags);
730 727
@@ -748,6 +745,7 @@ int __init ipv6_frag_init(void)
748 ip6_frags.qsize = sizeof(struct frag_queue); 745 ip6_frags.qsize = sizeof(struct frag_queue);
749 ip6_frags.match = ip6_frag_match; 746 ip6_frags.match = ip6_frag_match;
750 ip6_frags.frag_expire = ip6_frag_expire; 747 ip6_frags.frag_expire = ip6_frag_expire;
748 ip6_frags.secret_interval = 10 * 60 * HZ;
751 inet_frags_init(&ip6_frags); 749 inet_frags_init(&ip6_frags);
752out: 750out:
753 return ret; 751 return ret;