mptcp.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: Yonglong Li <liyonglong@chinatelecom.cn>
To: Mat Martineau <mathew.j.martineau@linux.intel.com>
Cc: mptcp@lists.linux.dev, pabeni@redhat.com,
	matthieu.baerts@tessares.net, geliangtang@gmail.com
Subject: Re: [PATCH v2 1/4] mptcp: fix ADD_ADDR and RM_ADDR maybe flush addr_signal each other
Date: Thu, 17 Jun 2021 10:13:01 +0800	[thread overview]
Message-ID: <5eee8ce5-05d6-70ad-a1f6-84cca0a87eda@chinatelecom.cn> (raw)
In-Reply-To: <fdfdf3c-f3bb-4e83-d49-84e97f667954@linux.intel.com>



On 2021/6/17 7:30, Mat Martineau wrote:
> On Tue, 15 Jun 2021, Yonglong Li wrote:
> 
>> ADD_ADDR share pm.addr_signal with RM_ADDR, so after RM_ADDR/ADD_ADDR
>> done we should not clean ADD_ADDR/RM_ADDR's addr_signal.
>>
>> Signed-off-by: Yonglong Li <liyonglong@chinatelecom.cn>
>> ---
>> net/mptcp/pm.c | 10 +++++++---
>> 1 file changed, 7 insertions(+), 3 deletions(-)
>>
>> diff --git a/net/mptcp/pm.c b/net/mptcp/pm.c
>> index 9d00fa6..74886a3 100644
>> --- a/net/mptcp/pm.c
>> +++ b/net/mptcp/pm.c
>> @@ -252,6 +252,7 @@ void mptcp_pm_mp_prio_received(struct sock *sk, u8 bkup)
>> bool mptcp_pm_add_addr_signal(struct mptcp_sock *msk, unsigned int remaining,
>>                   struct mptcp_addr_info *saddr, bool *echo, bool *port)
>> {
>> +    u8 add_addr;
>>     int ret = false;
>>
>>     spin_lock_bh(&msk->pm.lock);
>> @@ -267,7 +268,8 @@ bool mptcp_pm_add_addr_signal(struct mptcp_sock *msk, unsigned int remaining,
>>         goto out_unlock;
>>
>>     *saddr = msk->pm.local;
>> -    WRITE_ONCE(msk->pm.addr_signal, 0);
>> +    add_addr = msk->pm.addr_signal & BIT(MPTCP_RM_ADDR_SIGNAL);
> 
> Hello Yonglong, thank you for your revised patch series.
> 
> It would be better to use ~BIT(MPTCP_ADD_ADDR_SIGNAL), similar to the change in 
Hi Mat, Thanks for your review.
If use ~BIT(MPTCP_ADD_ADDR_SIGNAL), MPTCP_ADD_ADDR_ECHO maybe not being clean out. MPTCP_ADD_ADDR_ECHO
and MPTCP_ADD_ADDR_SIGNAL are being set with pm.lock at the same time, So I think here use
BIT(MPTCP_RM_ADDR_SIGNAL) is ok.

mptcp_pm_rm_addr_signal() below.
> 
>> +    WRITE_ONCE(msk->pm.addr_signal, add_addr);
>>     ret = true;
>>
>> out_unlock:
>> @@ -278,6 +280,7 @@ bool mptcp_pm_add_addr_signal(struct mptcp_sock *msk, unsigned int remaining,
>> bool mptcp_pm_rm_addr_signal(struct mptcp_sock *msk, unsigned int remaining,
>>                  struct mptcp_rm_list *rm_list)
>> {
>> +    u8 rm_addr;
>>     int ret = false, len;
>>
>>     spin_lock_bh(&msk->pm.lock);
>> @@ -286,16 +289,17 @@ bool mptcp_pm_rm_addr_signal(struct mptcp_sock *msk, unsigned int remaining,
>>     if (!mptcp_pm_should_rm_signal(msk))
>>         goto out_unlock;
>>
>> +    rm_addr = msk->pm.addr_signal & ~BIT(MPTCP_RM_ADDR_SIGNAL);
>>     len = mptcp_rm_addr_len(&msk->pm.rm_list_tx);
>>     if (len < 0) {
>> -        WRITE_ONCE(msk->pm.addr_signal, 0);
>> +        WRITE_ONCE(msk->pm.addr_signal, rm_addr);
>>         goto out_unlock;
>>     }
>>     if (remaining < len)
>>         goto out_unlock;
>>
>>     *rm_list = msk->pm.rm_list_tx;
>> -    WRITE_ONCE(msk->pm.addr_signal, 0);
>> +    WRITE_ONCE(msk->pm.addr_signal, rm_addr);
>>     ret = true;
>>
>> out_unlock:
>> -- 
>> 1.8.3.1
>>
>>
> 
> -- 
> Mat Martineau
> Intel
> 
> 

  reply	other threads:[~2021-06-17  2:13 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-15  1:31 [PATCH v2 0/4] mptcp: fix conflicts when using pm.add_signal in ADD_ADDR/echo and RM_ADDR process Yonglong Li
2021-06-15  1:31 ` [PATCH v2 1/4] mptcp: fix ADD_ADDR and RM_ADDR maybe flush addr_signal each other Yonglong Li
2021-06-16 23:30   ` Mat Martineau
2021-06-17  2:13     ` Yonglong Li [this message]
2021-06-15  1:31 ` [PATCH v2 2/4] mptcp: make MPTCP_ADD_ADDR_SIGNAL and MPTCP_ADD_ADDR_ECHO separate Yonglong Li
2021-06-16 23:35   ` Mat Martineau
2021-06-15  1:31 ` [PATCH v2 3/4] mptcp: build ADD_ADDR/echo-ADD_ADDR option according pm.add_signal Yonglong Li
2021-06-16 23:47   ` Mat Martineau
2021-06-17  2:31     ` Yonglong Li
2021-06-15  1:31 ` [PATCH v2 4/4] mptcp: remove MPTCP_ADD_ADDR_IPV6 and MPTCP_ADD_ADDR_PORT Yonglong Li

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5eee8ce5-05d6-70ad-a1f6-84cca0a87eda@chinatelecom.cn \
    --to=liyonglong@chinatelecom.cn \
    --cc=geliangtang@gmail.com \
    --cc=mathew.j.martineau@linux.intel.com \
    --cc=matthieu.baerts@tessares.net \
    --cc=mptcp@lists.linux.dev \
    --cc=pabeni@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).