]> git.baikalelectronics.ru Git - kernel.git/commit
mptcp: remove all subflows involving id 0 address
authorGeliang Tang <geliangtang@gmail.com>
Wed, 31 Mar 2021 00:08:51 +0000 (17:08 -0700)
committerDavid S. Miller <davem@davemloft.net>
Wed, 31 Mar 2021 00:42:23 +0000 (17:42 -0700)
commita1ab5ce6e94a675100724ffe17c0e1902d672074
tree4aed532518932037c4f5793043e5f75e82cf0ea7
parent11a9fc5fbc4a33b80a792391364f393a6faf3bdb
mptcp: remove all subflows involving id 0 address

There's only one subflow involving the non-zero id address, but there
may be multi subflows involving the id 0 address.

Here's an example:

 local_id=0, remote_id=0
 local_id=1, remote_id=0
 local_id=0, remote_id=1

If the removing address id is 0, all the subflows involving the id 0
address need to be removed.

In mptcp_pm_nl_rm_addr_received/mptcp_pm_nl_rm_subflow_received, the
"break" prevents the iteration to the next subflow, so this patch
dropped them.

Reviewed-by: Mat Martineau <mathew.j.martineau@linux.intel.com>
Signed-off-by: Geliang Tang <geliangtang@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/mptcp/pm_netlink.c