linux-sctp.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCHv2 net 0/3] Documentation: add description for a couple of sctp sysctl options
@ 2022-06-09 15:17 Xin Long
  2022-06-09 15:17 ` [PATCHv2 net 1/3] Documentation: add description for net.sctp.reconf_enable Xin Long
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Xin Long @ 2022-06-09 15:17 UTC (permalink / raw)
  To: network dev, linux-sctp; +Cc: davem, kuba, Marcelo Ricardo Leitner, Neil Horman

These are a couple of sysctl options I recently added, but missed adding
documents for them. Especially for net.sctp.intl_enable, it's hard for
users to setup stream interleaving, as it also needs to call some socket
options.

This patchset is to add documents for them.

v1->v2:
  - Improved the description on Patch 2/3, as Marcelo suggested.

Xin Long (3):
  Documentation: add description for net.sctp.reconf_enable
  Documentation: add description for net.sctp.intl_enable
  Documentation: add description for net.sctp.ecn_enable

 Documentation/networking/ip-sysctl.rst | 37 ++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

-- 
2.31.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCHv2 net 1/3] Documentation: add description for net.sctp.reconf_enable
  2022-06-09 15:17 [PATCHv2 net 0/3] Documentation: add description for a couple of sctp sysctl options Xin Long
@ 2022-06-09 15:17 ` Xin Long
  2022-06-09 15:17 ` [PATCHv2 net 2/3] Documentation: add description for net.sctp.intl_enable Xin Long
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Xin Long @ 2022-06-09 15:17 UTC (permalink / raw)
  To: network dev, linux-sctp; +Cc: davem, kuba, Marcelo Ricardo Leitner, Neil Horman

Describe it in networking/ip-sysctl.rst like other SCTP options.

Fixes: c0d8bab6ae51 ("sctp: add get and set sockopt for reconf_enable")
Signed-off-by: Xin Long <lucien.xin@gmail.com>
---
 Documentation/networking/ip-sysctl.rst | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/Documentation/networking/ip-sysctl.rst b/Documentation/networking/ip-sysctl.rst
index b882d4238581..3abd494053a9 100644
--- a/Documentation/networking/ip-sysctl.rst
+++ b/Documentation/networking/ip-sysctl.rst
@@ -2930,6 +2930,17 @@ plpmtud_probe_interval - INTEGER
 
 	Default: 0
 
+reconf_enable - BOOLEAN
+        Enable or disable extension of Stream Reconfiguration functionality
+        specified in RFC6525. This extension provides the ability to "reset"
+        a stream, and it includes the Parameters of "Outgoing/Incoming SSN
+        Reset", "SSN/TSN Reset" and "Add Outgoing/Incoming Streams".
+
+	- 1: Enable extension.
+	- 0: Disable extension.
+
+	Default: 0
+
 
 ``/proc/sys/net/core/*``
 ========================
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCHv2 net 2/3] Documentation: add description for net.sctp.intl_enable
  2022-06-09 15:17 [PATCHv2 net 0/3] Documentation: add description for a couple of sctp sysctl options Xin Long
  2022-06-09 15:17 ` [PATCHv2 net 1/3] Documentation: add description for net.sctp.reconf_enable Xin Long
@ 2022-06-09 15:17 ` Xin Long
  2022-06-09 15:17 ` [PATCHv2 net 3/3] Documentation: add description for net.sctp.ecn_enable Xin Long
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Xin Long @ 2022-06-09 15:17 UTC (permalink / raw)
  To: network dev, linux-sctp; +Cc: davem, kuba, Marcelo Ricardo Leitner, Neil Horman

Describe it in networking/ip-sysctl.rst like other SCTP options.
We need to document this especially as when using the feature
of User Message Interleaving, some socket options also needs
to be set.

Fixes: 463118c34a35 ("sctp: support sysctl to allow users to use stream interleave")
Signed-off-by: Xin Long <lucien.xin@gmail.com>
---
 Documentation/networking/ip-sysctl.rst | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/Documentation/networking/ip-sysctl.rst b/Documentation/networking/ip-sysctl.rst
index 3abd494053a9..5d90e219398c 100644
--- a/Documentation/networking/ip-sysctl.rst
+++ b/Documentation/networking/ip-sysctl.rst
@@ -2941,6 +2941,20 @@ reconf_enable - BOOLEAN
 
 	Default: 0
 
+intl_enable - BOOLEAN
+        Enable or disable extension of User Message Interleaving functionality
+        specified in RFC8260. This extension allows the interleaving of user
+        messages sent on different streams. With this feature enabled, I-DATA
+        chunk will replace DATA chunk to carry user messages if also supported
+        by the peer. Note that to use this feature, one needs to set this option
+        to 1 and also needs to set socket options SCTP_FRAGMENT_INTERLEAVE to 2
+        and SCTP_INTERLEAVING_SUPPORTED to 1.
+
+	- 1: Enable extension.
+	- 0: Disable extension.
+
+	Default: 0
+
 
 ``/proc/sys/net/core/*``
 ========================
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCHv2 net 3/3] Documentation: add description for net.sctp.ecn_enable
  2022-06-09 15:17 [PATCHv2 net 0/3] Documentation: add description for a couple of sctp sysctl options Xin Long
  2022-06-09 15:17 ` [PATCHv2 net 1/3] Documentation: add description for net.sctp.reconf_enable Xin Long
  2022-06-09 15:17 ` [PATCHv2 net 2/3] Documentation: add description for net.sctp.intl_enable Xin Long
@ 2022-06-09 15:17 ` Xin Long
  2022-06-10 14:43 ` [PATCHv2 net 0/3] Documentation: add description for a couple of sctp sysctl options Marcelo Ricardo Leitner
  2022-06-11  5:20 ` patchwork-bot+netdevbpf
  4 siblings, 0 replies; 6+ messages in thread
From: Xin Long @ 2022-06-09 15:17 UTC (permalink / raw)
  To: network dev, linux-sctp; +Cc: davem, kuba, Marcelo Ricardo Leitner, Neil Horman

Describe it in networking/ip-sysctl.rst like other SCTP options.

Fixes: 2f5268a9249b ("sctp: allow users to set netns ecn flag with sysctl")
Signed-off-by: Xin Long <lucien.xin@gmail.com>
---
 Documentation/networking/ip-sysctl.rst | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/Documentation/networking/ip-sysctl.rst b/Documentation/networking/ip-sysctl.rst
index 5d90e219398c..f709e368808d 100644
--- a/Documentation/networking/ip-sysctl.rst
+++ b/Documentation/networking/ip-sysctl.rst
@@ -2955,6 +2955,18 @@ intl_enable - BOOLEAN
 
 	Default: 0
 
+ecn_enable - BOOLEAN
+        Control use of Explicit Congestion Notification (ECN) by SCTP.
+        Like in TCP, ECN is used only when both ends of the SCTP connection
+        indicate support for it. This feature is useful in avoiding losses
+        due to congestion by allowing supporting routers to signal congestion
+        before having to drop packets.
+
+        1: Enable ecn.
+        0: Disable ecn.
+
+        Default: 1
+
 
 ``/proc/sys/net/core/*``
 ========================
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCHv2 net 0/3] Documentation: add description for a couple of sctp sysctl options
  2022-06-09 15:17 [PATCHv2 net 0/3] Documentation: add description for a couple of sctp sysctl options Xin Long
                   ` (2 preceding siblings ...)
  2022-06-09 15:17 ` [PATCHv2 net 3/3] Documentation: add description for net.sctp.ecn_enable Xin Long
@ 2022-06-10 14:43 ` Marcelo Ricardo Leitner
  2022-06-11  5:20 ` patchwork-bot+netdevbpf
  4 siblings, 0 replies; 6+ messages in thread
From: Marcelo Ricardo Leitner @ 2022-06-10 14:43 UTC (permalink / raw)
  To: Xin Long; +Cc: network dev, linux-sctp, davem, kuba, Neil Horman

On Thu, Jun 09, 2022 at 11:17:12AM -0400, Xin Long wrote:
> These are a couple of sysctl options I recently added, but missed adding
> documents for them. Especially for net.sctp.intl_enable, it's hard for
> users to setup stream interleaving, as it also needs to call some socket
> options.
> 
> This patchset is to add documents for them.
> 
> v1->v2:
>   - Improved the description on Patch 2/3, as Marcelo suggested.
> 
> Xin Long (3):
>   Documentation: add description for net.sctp.reconf_enable
>   Documentation: add description for net.sctp.intl_enable
>   Documentation: add description for net.sctp.ecn_enable

Acked-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCHv2 net 0/3] Documentation: add description for a couple of sctp sysctl options
  2022-06-09 15:17 [PATCHv2 net 0/3] Documentation: add description for a couple of sctp sysctl options Xin Long
                   ` (3 preceding siblings ...)
  2022-06-10 14:43 ` [PATCHv2 net 0/3] Documentation: add description for a couple of sctp sysctl options Marcelo Ricardo Leitner
@ 2022-06-11  5:20 ` patchwork-bot+netdevbpf
  4 siblings, 0 replies; 6+ messages in thread
From: patchwork-bot+netdevbpf @ 2022-06-11  5:20 UTC (permalink / raw)
  To: Xin Long; +Cc: netdev, linux-sctp, davem, kuba, marcelo.leitner, nhorman

Hello:

This series was applied to netdev/net.git (master)
by Jakub Kicinski <kuba@kernel.org>:

On Thu,  9 Jun 2022 11:17:12 -0400 you wrote:
> These are a couple of sysctl options I recently added, but missed adding
> documents for them. Especially for net.sctp.intl_enable, it's hard for
> users to setup stream interleaving, as it also needs to call some socket
> options.
> 
> This patchset is to add documents for them.
> 
> [...]

Here is the summary with links:
  - [PATCHv2,net,1/3] Documentation: add description for net.sctp.reconf_enable
    https://git.kernel.org/netdev/net/c/c349ae5f831c
  - [PATCHv2,net,2/3] Documentation: add description for net.sctp.intl_enable
    https://git.kernel.org/netdev/net/c/e65775fdd389
  - [PATCHv2,net,3/3] Documentation: add description for net.sctp.ecn_enable
    https://git.kernel.org/netdev/net/c/249eddaf651f

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-06-11  5:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-09 15:17 [PATCHv2 net 0/3] Documentation: add description for a couple of sctp sysctl options Xin Long
2022-06-09 15:17 ` [PATCHv2 net 1/3] Documentation: add description for net.sctp.reconf_enable Xin Long
2022-06-09 15:17 ` [PATCHv2 net 2/3] Documentation: add description for net.sctp.intl_enable Xin Long
2022-06-09 15:17 ` [PATCHv2 net 3/3] Documentation: add description for net.sctp.ecn_enable Xin Long
2022-06-10 14:43 ` [PATCHv2 net 0/3] Documentation: add description for a couple of sctp sysctl options Marcelo Ricardo Leitner
2022-06-11  5:20 ` patchwork-bot+netdevbpf

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).