Skip to content
Snippets Groups Projects
Commit a252e749 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

sctp: fix compile error due to sysctl mismerge


I messed up the merge in d7fc02c7, where
the conflict in question wasn't just about CTL_UNNUMBERED being removed,
but the 'strategy' field is too (sysctl handling is now done through the
/proc interface, with no duplicate protocols for reading the data).

Reported-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Reported-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 6035ccd8
No related branches found
No related tags found
No related merge requests found
...@@ -248,7 +248,6 @@ static ctl_table sctp_table[] = { ...@@ -248,7 +248,6 @@ static ctl_table sctp_table[] = {
.maxlen = sizeof(int), .maxlen = sizeof(int),
.mode = 0644, .mode = 0644,
.proc_handler = &proc_dointvec_minmax, .proc_handler = &proc_dointvec_minmax,
.strategy = &sysctl_intvec,
.extra1 = &one, .extra1 = &one,
.extra2 = &rwnd_scale_max, .extra2 = &rwnd_scale_max,
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment