From: Ursula Braun <ubraun@xxxxxxxxxxxxx> 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@xxxxxxxxxxxxx> Fixes: 01d2f7e2cdd3 ("net/smc: sockopts TCP_NODELAY and TCP_CORK") Reported-by: Wei Yongjun <weiyongjun1@xxxxxxxxxx> --- 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 -- To unsubscribe from this list: send the line "unsubscribe linux-s390" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html