Message ID | 20211027085208.16048-3-tonylu@linux.alibaba.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | Fixes for SMC | expand |
On 27/10/2021 10:52, Tony Lu wrote: > From: Tony Lu <tony.ly@linux.alibaba.com> > > 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. Thanks for fixing this, we will include your patch in our next submission to the netdev tree.
On Wed, Oct 27, 2021 at 12:24:18PM +0200, Karsten Graul wrote: > On 27/10/2021 10:52, Tony Lu wrote: > > From: Tony Lu <tony.ly@linux.alibaba.com> > > > > 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. > > Thanks for fixing this, we will include your patch in our next submission > to the netdev tree. Thanks for your reply. There is a little mistake for my email address, the wrong email address (tony.ly@linux.alibaba.com) should be corrected to tonylu@linux.alibaba.com. I will send these two patches with the next one in v2. Cheers, Tony Lu
diff --git a/net/smc/smc_llc.c b/net/smc/smc_llc.c index 72f4b72eb175..f1d323439a2a 100644 --- a/net/smc/smc_llc.c +++ b/net/smc/smc_llc.c @@ -1822,7 +1822,7 @@ void smc_llc_link_active(struct smc_link *link) link->smcibdev->ibdev->name, link->ibport); link->state = SMC_LNK_ACTIVE; if (link->lgr->llc_testlink_time) { - link->llc_testlink_time = link->lgr->llc_testlink_time * HZ; + link->llc_testlink_time = link->lgr->llc_testlink_time; schedule_delayed_work(&link->llc_testlink_wrk, link->llc_testlink_time); }