Re: [PATCH net-next v2] net: Modify sock_set_keepalive() for more scenarios

From: Leon Romanovsky
Date: Wed Aug 04 2021 - 01:47:53 EST


On Wed, Aug 04, 2021 at 11:28:56AM +0800, Yajun Deng wrote:
> Add 2nd parameter in sock_set_keepalive(), let the caller decide
> whether to set. This can be applied to more scenarios.
>
> v2:
> - add the change in fs/dlm.
>
> Signed-off-by: Yajun Deng <yajun.deng@xxxxxxxxx>
> ---
> fs/dlm/lowcomms.c | 2 +-
> include/net/sock.h | 2 +-
> net/core/filter.c | 4 +---
> net/core/sock.c | 10 ++++------
> net/mptcp/sockopt.c | 4 +---
> net/rds/tcp_listen.c | 2 +-
> net/smc/af_smc.c | 2 +-
> net/sunrpc/xprtsock.c | 2 +-
> 8 files changed, 11 insertions(+), 17 deletions(-)

1. Don't add changelogs in the commit messages and put them under --- marker.
2. Add an explanation to the commit message WHY this change is necessary
and HOW will it be used.
3. Drop all your double NOT in front of values (!!val) and rely on C
that casts int to bool naturally.

Thanks