diff options
| author | Matthieu Baerts (NGI0) <[email protected]> | 2025-03-07 11:21:46 +0000 |
|---|---|---|
| committer | Jakub Kicinski <[email protected]> | 2025-03-10 20:35:48 +0000 |
| commit | fac7a6ddc75740ee3d24c7fa054921f9c495d8c2 (patch) | |
| tree | ee02bf72f3d4c2613d6f7f6df83d055a0ac534c2 /net/mptcp/pm.c | |
| parent | mptcp: pm: use addr entry for get_local_id (diff) | |
| download | kernel-fac7a6ddc75740ee3d24c7fa054921f9c495d8c2.tar.gz kernel-fac7a6ddc75740ee3d24c7fa054921f9c495d8c2.zip | |
mptcp: pm: remove '_nl' from mptcp_pm_nl_addr_send_ack
Currently, in-kernel PM specific helpers are prefixed with
'mptcp_pm_nl_'. But here 'mptcp_pm_nl_addr_send_ack()' is not specific
to this PM: it is used by 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 f6030ce04efd..ece706e8ed22 100644 --- a/net/mptcp/pm.c +++ b/net/mptcp/pm.c @@ -57,7 +57,7 @@ int mptcp_pm_remove_addr(struct mptcp_sock *msk, const struct mptcp_rm_list *rm_ msk->pm.rm_list_tx = *rm_list; rm_addr |= BIT(MPTCP_RM_ADDR_SIGNAL); WRITE_ONCE(msk->pm.addr_signal, rm_addr); - mptcp_pm_nl_addr_send_ack(msk); + mptcp_pm_addr_send_ack(msk); return 0; } |
