diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2008-07-01 19:29:07 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-01 19:29:07 -0700 |
commit | 6dbf4bcac98bbc76ef425b3a2b4169f31199f6c7 (patch) | |
tree | 3ec9383233cdbebcd26a0ab1e7f666ff8cc03b5f /net/ipv4 | |
parent | 28f49d8fec19833672a6a813bfde0068fee50bc9 (diff) | |
download | linux-3.10-6dbf4bcac98bbc76ef425b3a2b4169f31199f6c7.tar.gz linux-3.10-6dbf4bcac98bbc76ef425b3a2b4169f31199f6c7.tar.bz2 linux-3.10-6dbf4bcac98bbc76ef425b3a2b4169f31199f6c7.zip |
icmp: fix units for ratelimit
Convert the sysctl values for icmp ratelimit to use milliseconds instead
of jiffies which is based on kernel configured HZ.
Internal kernel jiffies are not a proper unit for any userspace API.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/sysctl_net_ipv4.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/sysctl_net_ipv4.c b/net/ipv4/sysctl_net_ipv4.c index 90160700320..14ef202a225 100644 --- a/net/ipv4/sysctl_net_ipv4.c +++ b/net/ipv4/sysctl_net_ipv4.c @@ -793,7 +793,8 @@ static struct ctl_table ipv4_net_table[] = { .data = &init_net.ipv4.sysctl_icmp_ratelimit, .maxlen = sizeof(int), .mode = 0644, - .proc_handler = &proc_dointvec + .proc_handler = &proc_dointvec_ms_jiffies, + .strategy = &sysctl_ms_jiffies }, { .ctl_name = NET_IPV4_ICMP_RATEMASK, |