aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/reassembly.c
diff options
context:
space:
mode:
authorShan Wei <shanwei@cn.fujitsu.com>2010-01-20 10:42:41 +0100
committerPatrick McHardy <kaber@trash.net>2010-01-20 10:42:41 +0100
commit7c070aa947d1a4105742378579c267f6e7fd08a1 (patch)
tree51e0b9344d224fbcfed562361559d881c5fa45de /net/ipv6/reassembly.c
parentb38f6eddeee510ce8178c2d2db54ed25f1d7cb63 (diff)
downloadkernel_samsung_smdk4412-7c070aa947d1a4105742378579c267f6e7fd08a1.zip
kernel_samsung_smdk4412-7c070aa947d1a4105742378579c267f6e7fd08a1.tar.gz
kernel_samsung_smdk4412-7c070aa947d1a4105742378579c267f6e7fd08a1.tar.bz2
IPv6: reassembly: replace magic number with macro definitions
Use macro to define high/low thresh value, refer to IPV6_FRAG_TIMEOUT. Signed-off-by: Shan Wei <shanwei@cn.fujitsu.com> Acked-by: David S. Miller <davem@davemloft.net> Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net/ipv6/reassembly.c')
-rw-r--r--net/ipv6/reassembly.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/reassembly.c b/net/ipv6/reassembly.c
index 2cddea3..15bb122 100644
--- a/net/ipv6/reassembly.c
+++ b/net/ipv6/reassembly.c
@@ -747,8 +747,8 @@ static inline void ip6_frags_sysctl_unregister(void)
static int ipv6_frags_init_net(struct net *net)
{
- net->ipv6.frags.high_thresh = 256 * 1024;
- net->ipv6.frags.low_thresh = 192 * 1024;
+ net->ipv6.frags.high_thresh = IPV6_FRAG_HIGH_THRESH;
+ net->ipv6.frags.low_thresh = IPV6_FRAG_LOW_THRESH;
net->ipv6.frags.timeout = IPV6_FRAG_TIMEOUT;
inet_frags_init_net(&net->ipv6.frags);