diff options
| author | Matthieu Baerts (NGI0) <[email protected]> | 2025-03-07 11:21:51 +0000 |
|---|---|---|
| committer | Jakub Kicinski <[email protected]> | 2025-03-10 20:35:49 +0000 |
| commit | 498d7d8b75f16a5b6e4f6499f1e72e9296f2d0cd (patch) | |
| tree | d3bf75bdf9334a6ac3541186d6268e23f5b35bd1 /net/mptcp/pm.c | |
| parent | mptcp: pm: remove '_nl' from mptcp_pm_nl_subflow_chk_stale() (diff) | |
| download | kernel-498d7d8b75f16a5b6e4f6499f1e72e9296f2d0cd.tar.gz kernel-498d7d8b75f16a5b6e4f6499f1e72e9296f2d0cd.zip | |
mptcp: pm: remove '_nl' from mptcp_pm_nl_is_init_remote_addr
Currently, in-kernel PM specific helpers are prefixed with
'mptcp_pm_nl_'. But here 'mptcp_pm_nl_is_init_remote_addr' is not
specific to this PM: it is called from pm.c for both the in-kernel and
userspace PMs.
To avoid confusions, the '_nl' bit has been removed from the name.
No behavioural changes intended.
Reviewed-by: Geliang Tang <[email protected]>
Signed-off-by: Matthieu Baerts (NGI0) <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
Diffstat (limited to 'net/mptcp/pm.c')
| -rw-r--r-- | net/mptcp/pm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mptcp/pm.c b/net/mptcp/pm.c index 14c7ff5c606c..ab443b9f9c5f 100644 --- a/net/mptcp/pm.c +++ b/net/mptcp/pm.c @@ -231,7 +231,7 @@ void mptcp_pm_add_addr_received(const struct sock *ssk, __MPTCP_INC_STATS(sock_net((struct sock *)msk), MPTCP_MIB_ADDADDRDROP); } /* id0 should not have a different address */ - } else if ((addr->id == 0 && !mptcp_pm_nl_is_init_remote_addr(msk, addr)) || + } else if ((addr->id == 0 && !mptcp_pm_is_init_remote_addr(msk, addr)) || (addr->id > 0 && !READ_ONCE(pm->accept_addr))) { mptcp_pm_announce_addr(msk, addr, true); mptcp_pm_add_addr_send_ack(msk); |
