diff options
author | Matthieu Baerts (NGI0) <matttbe@kernel.org> | 2024-12-21 12:09:14 +0100 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-12-27 20:16:21 +0100 |
commit | 6b830c6a023ff6e8fe05dbe47a9e5cd276df09ee (patch) | |
tree | d26da125d961542a4253711d0e179785cf84a1ad /Documentation | |
parent | Merge branch 'mlx5-misc-fixes-2024-12-20' (diff) | |
download | linux-6b830c6a023ff6e8fe05dbe47a9e5cd276df09ee.tar.xz linux-6b830c6a023ff6e8fe05dbe47a9e5cd276df09ee.zip |
netlink: specs: mptcp: add missing 'server-side' attr
This attribute is added with the 'created' and 'established' events, but
the documentation didn't mention it.
The documentation in the UAPI header has been auto-generated by:
./tools/net/ynl/ynl-regen.sh
Reviewed-by: Geliang Tang <geliang@kernel.org>
Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
Link: https://patch.msgid.link/20241221-net-mptcp-netlink-specs-pm-doc-fixes-v2-1-e54f2db3f844@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/netlink/specs/mptcp_pm.yaml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Documentation/netlink/specs/mptcp_pm.yaml b/Documentation/netlink/specs/mptcp_pm.yaml index dc190bf838fe..fc0603f51665 100644 --- a/Documentation/netlink/specs/mptcp_pm.yaml +++ b/Documentation/netlink/specs/mptcp_pm.yaml @@ -23,7 +23,8 @@ definitions: - name: created doc: - token, family, saddr4 | saddr6, daddr4 | daddr6, sport, dport + token, family, saddr4 | saddr6, daddr4 | daddr6, sport, dport, + server-side A new MPTCP connection has been created. It is the good time to allocate memory and send ADD_ADDR if needed. Depending on the traffic-patterns it can take a long time until the @@ -31,7 +32,8 @@ definitions: - name: established doc: - token, family, saddr4 | saddr6, daddr4 | daddr6, sport, dport + token, family, saddr4 | saddr6, daddr4 | daddr6, sport, dport, + server-side A MPTCP connection is established (can start new subflows). - name: closed |