Commit 82b05660 authored by Bagas Sanjaya's avatar Bagas Sanjaya Committed by Paolo Abeni
Browse files

net: ip-sysctl: Format SCTP-related memory parameters description as bullet list



The description for vector elements of SCTP-related memory usage
parameters (sctp{r,w,}mem) is formatted as normal paragraphs rather than
bullet list. Convert the description to the latter.

Signed-off-by: default avatarBagas Sanjaya <bagasdotme@gmail.com>
Reviewed-by: default avatarSimon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20250701031300.19088-5-bagasdotme@gmail.com


Signed-off-by: default avatarPaolo Abeni <pabeni@redhat.com>
parent 98bc1d41
Loading
Loading
Loading
Loading
+11 −13
Original line number Diff line number Diff line
@@ -3542,13 +3542,11 @@ sndbuf_policy - INTEGER
sctp_mem - vector of 3 INTEGERs: min, pressure, max
	Number of pages allowed for queueing by all SCTP sockets.

	min: Below this number of pages SCTP is not bothered about its
	memory appetite. When amount of memory allocated by SCTP exceeds
	* min: Below this number of pages SCTP is not bothered about its
	  memory usage. When amount of memory allocated by SCTP exceeds
	  this number, SCTP starts to moderate memory usage.

	pressure: This value was introduced to follow format of tcp_mem.

	max: Number of pages allowed for queueing by all SCTP sockets.
	* pressure: This value was introduced to follow format of tcp_mem.
	* max: Maximum number of allowed pages.

	Default is calculated at boot time from amount of available memory.

@@ -3556,7 +3554,7 @@ sctp_rmem - vector of 3 INTEGERs: min, default, max
	Only the first value ("min") is used, "default" and "max" are
	ignored.

	min: Minimal size of receive buffer used by SCTP socket.
	* min: Minimal size of receive buffer used by SCTP socket.
	  It is guaranteed to each SCTP socket (but not association) even
	  under moderate memory pressure.

@@ -3566,7 +3564,7 @@ sctp_wmem - vector of 3 INTEGERs: min, default, max
	Only the first value ("min") is used, "default" and "max" are
	ignored.

	min: Minimum size of send buffer that can be used by SCTP sockets.
	* min: Minimum size of send buffer that can be used by SCTP sockets.
	  It is guaranteed to each SCTP socket (but not association) even
	  under moderate memory pressure.