Commit d48e074d authored by Jean-Mickael Guerin's avatar Jean-Mickael Guerin Committed by Vlad Yasevich

sctp: fix sack_timeout sysctl min and max types

sctp_sack_timeout is defined as int, but the sysctl's maxsize is set
to sizeof(long) and the min/max are defined as long.

Signed-off-by: jean-mickael.guerin@6wind.com
Signed-off-by: default avatarVlad Yasevich <vladislav.yasevich@hp.com>
parent 10a43cea
...@@ -49,8 +49,8 @@ static int zero = 0; ...@@ -49,8 +49,8 @@ static int zero = 0;
static int one = 1; static int one = 1;
static int timer_max = 86400000; /* ms in one day */ static int timer_max = 86400000; /* ms in one day */
static int int_max = INT_MAX; static int int_max = INT_MAX;
static long sack_timer_min = 1; static int sack_timer_min = 1;
static long sack_timer_max = 500; static int sack_timer_max = 500;
extern int sysctl_sctp_mem[3]; extern int sysctl_sctp_mem[3];
extern int sysctl_sctp_rmem[3]; extern int sysctl_sctp_rmem[3];
...@@ -223,7 +223,7 @@ static ctl_table sctp_table[] = { ...@@ -223,7 +223,7 @@ static ctl_table sctp_table[] = {
.ctl_name = NET_SCTP_SACK_TIMEOUT, .ctl_name = NET_SCTP_SACK_TIMEOUT,
.procname = "sack_timeout", .procname = "sack_timeout",
.data = &sctp_sack_timeout, .data = &sctp_sack_timeout,
.maxlen = sizeof(long), .maxlen = sizeof(int),
.mode = 0644, .mode = 0644,
.proc_handler = proc_dointvec_minmax, .proc_handler = proc_dointvec_minmax,
.strategy = sysctl_intvec, .strategy = sysctl_intvec,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment