net/smc: Fix smc_link->llc_testlink_time overflow
authorTony Lu <tonylu@linux.alibaba.com>
Thu, 28 Oct 2021 07:13:45 +0000 (15:13 +0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 28 Oct 2021 12:04:28 +0000 (13:04 +0100)
commitc4a146c7cf5e8ad76231523b174d161bf152c6e7
treee85ca4db22596f44c3527f78e3f3001b1ae8e4dc
parent90a881fc352a953f1c8beb61977a2db0818157d4
net/smc: Fix smc_link->llc_testlink_time overflow

The value of llc_testlink_time is set to the value stored in
net->ipv4.sysctl_tcp_keepalive_time when linkgroup init. The value of
sysctl_tcp_keepalive_time is already jiffies, so we don't need to
multiply by HZ, which would cause smc_link->llc_testlink_time overflow,
and test_link send flood.

Signed-off-by: Tony Lu <tonylu@linux.alibaba.com>
Reviewed-by: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
Reviewed-by: Wen Gu <guwen@linux.alibaba.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/smc/smc_llc.c