From: Ursula Braun <[email protected]> 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 <[email protected]> Fixes: 01d2f7e2cdd3 ("net/smc: sockopts TCP_NODELAY and TCP_CORK") Reported-by: Wei Yongjun <[email protected]> --- 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
