[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20180601145839.22566-1-ubraun@linux.ibm.com>
Date: Fri, 1 Jun 2018 16:58:39 +0200
From: Ursula Braun <ubraun@...ux.ibm.com>
To: davem@...emloft.net
Cc: netdev@...r.kernel.org, linux-s390@...r.kernel.org,
schwidefsky@...ibm.com, heiko.carstens@...ibm.com,
raspl@...ux.ibm.com, ubraun@...ux.ibm.com
Subject: [PATCH net-next 1/1] net/smc: remove duplicate check in smc_setsockopt
From: Ursula Braun <ubraun@...ux.ibm.com>
smc_setsockopt contains a check for the length specified on the
setsockopt socket call. If checked, it is supposed to return with
EINVAL. But the equivalent check is already contained in the preceding
setsockopt call on the internal TCP socket. That means, the extra
check can be removed.
Signed-off-by: Ursula Braun <ubraun@...ux.ibm.com>
Fixes: 01d2f7e2cdd3 ("net/smc: sockopts TCP_NODELAY and TCP_CORK")
Reported-by: Wei Yongjun <weiyongjun1@...wei.com>
---
net/smc/af_smc.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/net/smc/af_smc.c b/net/smc/af_smc.c
index 2c369d4bb1c1..dec3f09f6327 100644
--- a/net/smc/af_smc.c
+++ b/net/smc/af_smc.c
@@ -1419,8 +1419,6 @@ static int smc_setsockopt(struct socket *sock, int level, int optname,
if (rc)
return rc;
- if (optlen < sizeof(int))
- return rc;
get_user(val, (int __user *)optval);
lock_sock(sk);
--
2.16.3
Powered by blists - more mailing lists