Message ID | 20211027085208.16048-4-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: Wen Gu <guwen@linux.alibaba.com> > > There should use TCPF_SYN_RECV instead of TCP_SYN_RECV. Thanks for fixing this, we will include your patch in our next submission to the netdev tree.
On Wed, Oct 27, 2021 at 12:23:34PM +0200, Karsten Graul wrote: > On 27/10/2021 10:52, Tony Lu wrote: > > From: Wen Gu <guwen@linux.alibaba.com> > > > > There should use TCPF_SYN_RECV instead of TCP_SYN_RECV. > > Thanks for fixing this, we will include your patch in our next submission > to the netdev tree. I will resend it in v2 patch to fix my wrong email address (tony.ly@linux.alibaba.com) to tonylu@linux.alibaba.com. Cheers, Tony Lu
diff --git a/net/smc/af_smc.c b/net/smc/af_smc.c index c038efc23ce3..78b663dbfa1f 100644 --- a/net/smc/af_smc.c +++ b/net/smc/af_smc.c @@ -1057,7 +1057,7 @@ static void smc_connect_work(struct work_struct *work) if (smc->clcsock->sk->sk_err) { smc->sk.sk_err = smc->clcsock->sk->sk_err; } else if ((1 << smc->clcsock->sk->sk_state) & - (TCPF_SYN_SENT | TCP_SYN_RECV)) { + (TCPF_SYN_SENT | TCPF_SYN_RECV)) { rc = sk_stream_wait_connect(smc->clcsock->sk, &timeo); if ((rc == -EPIPE) && ((1 << smc->clcsock->sk->sk_state) &