net/smc: fix error return code in smc_setsockopt()
Fix to return error code -EINVAL instead of 0 if optlen is invalid.
Fixes: 01d2f7e2cd
("net/smc: sockopts TCP_NODELAY and TCP_CORK")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Родитель
8cb77149e8
Коммит
3dc9f558cd
|
@ -1420,7 +1420,7 @@ static int smc_setsockopt(struct socket *sock, int level, int optname,
|
|||
return rc;
|
||||
|
||||
if (optlen < sizeof(int))
|
||||
return rc;
|
||||
return -EINVAL;
|
||||
get_user(val, (int __user *)optval);
|
||||
|
||||
lock_sock(sk);
|
||||
|
|
Загрузка…
Ссылка в новой задаче