summaryrefslogtreecommitdiffstats
path: root/net/sctp/sysctl.c
diff options
context:
space:
mode:
authorDaniel Borkmann2014-06-30 13:52:09 +0200
committerDavid S. Miller2014-07-03 03:44:07 +0200
commiteaea2da7286ebc56d557b40ad7e59e715a84e4a0 (patch)
tree1507ed91bbbaec02273bf493fa13c2d0a383b6be /net/sctp/sysctl.c
parentnet: sctp: improve timer slack calculation for transport HBs (diff)
downloadkernel-qcow2-linux-eaea2da7286ebc56d557b40ad7e59e715a84e4a0.tar.gz
kernel-qcow2-linux-eaea2da7286ebc56d557b40ad7e59e715a84e4a0.tar.xz
kernel-qcow2-linux-eaea2da7286ebc56d557b40ad7e59e715a84e4a0.zip
net: sctp: only warn in proc_sctp_do_alpha_beta if write
Only warn if the value is written to alpha or beta. We don't care emitting a one-time warning when only reading it. Reported-by: Jiri Pirko <jpirko@redhat.com> Signed-off-by: Daniel Borkmann <dborkman@redhat.com> Reviewed-by: Jiri Pirko <jiri@resnulli.us> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/sysctl.c')
-rw-r--r--net/sctp/sysctl.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/sctp/sysctl.c b/net/sctp/sysctl.c
index 12c7e01c2677..2e9ada10fd84 100644
--- a/net/sctp/sysctl.c
+++ b/net/sctp/sysctl.c
@@ -424,8 +424,9 @@ static int proc_sctp_do_alpha_beta(struct ctl_table *ctl, int write,
void __user *buffer, size_t *lenp,
loff_t *ppos)
{
- pr_warn_once("Changing rto_alpha or rto_beta may lead to "
- "suboptimal rtt/srtt estimations!\n");
+ if (write)
+ pr_warn_once("Changing rto_alpha or rto_beta may lead to "
+ "suboptimal rtt/srtt estimations!\n");
return proc_dointvec_minmax(ctl, write, buffer, lenp, ppos);
}