Linux Documentation
 help / color / mirror / Atom feed
* [PATCH] Documentation/kernel-parameters: fix brackets
@ 2026-07-03  8:08 Manuel Ebner
  2026-07-08  4:18 ` Randy Dunlap
  2026-07-10 19:32 ` Jonathan Corbet
  0 siblings, 2 replies; 3+ messages in thread
From: Manuel Ebner @ 2026-07-03  8:08 UTC (permalink / raw)
  To: Jonathan Corbet, Shuah Khan
  Cc: Randy Dunlap, Kernel Janitors, Manuel Ebner, linux-doc,
	linux-kernel

Add a few missing ']'s and a ')'.

Signed-off-by: Manuel Ebner <manuelebner@mailbox.org>
---
 Documentation/admin-guide/kernel-parameters.txt | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt
index b5493a7f8f22..60777968a063 100644
--- a/Documentation/admin-guide/kernel-parameters.txt
+++ b/Documentation/admin-guide/kernel-parameters.txt
@@ -6413,9 +6413,9 @@ Kernel parameters
 	reboot=		[KNL]
 			Format (x86 or x86_64):
 				[w[arm] | c[old] | h[ard] | s[oft] | g[pio]] | d[efault] \
-				[[,]s[mp]#### \
+				[[,]s[mp]]#### \
 				[[,]b[ios] | a[cpi] | k[bd] | t[riple] | e[fi] | p[ci]] \
-				[[,]f[orce]
+				[[,]f[orce]]
 			Where reboot_mode is one of warm (soft) or cold (hard) or gpio
 					(prefix with 'panic_' to set mode for panic
 					reboot only),
@@ -6875,7 +6875,7 @@ Kernel parameters
 			xtime_lock contention on larger systems, and/or RCU lock
 			contention on all systems with CONFIG_MAXSMP set.
 			Format: { "0" | "1" }
-			0 -- disable. (may be 1 via CONFIG_CMDLINE="skew_tick=1"
+			0 -- disable. (may be 1 via CONFIG_CMDLINE="skew_tick=1")
 			1 -- enable.
 			Note: increases power consumption, thus should only be
 			enabled if running jitter sensitive (HPC/RT) workloads.
@@ -6916,7 +6916,7 @@ Kernel parameters
 			apic=verbose is specified.
 			Example: apic=debug show_lapic=all
 
-	slab_debug[=options[,slabs][;[options[,slabs]]...]	[MM]
+	slab_debug[=options[,slabs][;[options[,slabs]]...]]	[MM]
 			Enabling slab_debug allows one to determine the
 			culprit if slab objects become corrupted. Enabling
 			slab_debug can create guard zones around objects and
-- 
2.54.0


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

* Re: [PATCH] Documentation/kernel-parameters: fix brackets
  2026-07-03  8:08 [PATCH] Documentation/kernel-parameters: fix brackets Manuel Ebner
@ 2026-07-08  4:18 ` Randy Dunlap
  2026-07-10 19:32 ` Jonathan Corbet
  1 sibling, 0 replies; 3+ messages in thread
From: Randy Dunlap @ 2026-07-08  4:18 UTC (permalink / raw)
  To: Manuel Ebner, Jonathan Corbet, Shuah Khan
  Cc: Kernel Janitors, linux-doc, linux-kernel



On 7/3/26 1:08 AM, Manuel Ebner wrote:
> Add a few missing ']'s and a ')'.
> 
> Signed-off-by: Manuel Ebner <manuelebner@mailbox.org>

Acked-by: Randy Dunlap <rdunlap@infradead.org>
Thanks.

> ---
>  Documentation/admin-guide/kernel-parameters.txt | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt
> index b5493a7f8f22..60777968a063 100644
> --- a/Documentation/admin-guide/kernel-parameters.txt
> +++ b/Documentation/admin-guide/kernel-parameters.txt
> @@ -6413,9 +6413,9 @@ Kernel parameters
>  	reboot=		[KNL]
>  			Format (x86 or x86_64):
>  				[w[arm] | c[old] | h[ard] | s[oft] | g[pio]] | d[efault] \
> -				[[,]s[mp]#### \
> +				[[,]s[mp]]#### \
>  				[[,]b[ios] | a[cpi] | k[bd] | t[riple] | e[fi] | p[ci]] \
> -				[[,]f[orce]
> +				[[,]f[orce]]
>  			Where reboot_mode is one of warm (soft) or cold (hard) or gpio
>  					(prefix with 'panic_' to set mode for panic
>  					reboot only),
> @@ -6875,7 +6875,7 @@ Kernel parameters
>  			xtime_lock contention on larger systems, and/or RCU lock
>  			contention on all systems with CONFIG_MAXSMP set.
>  			Format: { "0" | "1" }
> -			0 -- disable. (may be 1 via CONFIG_CMDLINE="skew_tick=1"
> +			0 -- disable. (may be 1 via CONFIG_CMDLINE="skew_tick=1")
>  			1 -- enable.
>  			Note: increases power consumption, thus should only be
>  			enabled if running jitter sensitive (HPC/RT) workloads.
> @@ -6916,7 +6916,7 @@ Kernel parameters
>  			apic=verbose is specified.
>  			Example: apic=debug show_lapic=all
>  
> -	slab_debug[=options[,slabs][;[options[,slabs]]...]	[MM]
> +	slab_debug[=options[,slabs][;[options[,slabs]]...]]	[MM]
>  			Enabling slab_debug allows one to determine the
>  			culprit if slab objects become corrupted. Enabling
>  			slab_debug can create guard zones around objects and

-- 
~Randy

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

* Re: [PATCH] Documentation/kernel-parameters: fix brackets
  2026-07-03  8:08 [PATCH] Documentation/kernel-parameters: fix brackets Manuel Ebner
  2026-07-08  4:18 ` Randy Dunlap
@ 2026-07-10 19:32 ` Jonathan Corbet
  1 sibling, 0 replies; 3+ messages in thread
From: Jonathan Corbet @ 2026-07-10 19:32 UTC (permalink / raw)
  To: Manuel Ebner, Shuah Khan
  Cc: Randy Dunlap, Kernel Janitors, Manuel Ebner, linux-doc,
	linux-kernel

Manuel Ebner <manuelebner@mailbox.org> writes:

> Add a few missing ']'s and a ')'.
>
> Signed-off-by: Manuel Ebner <manuelebner@mailbox.org>
> ---
>  Documentation/admin-guide/kernel-parameters.txt | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)

Applied, thanks.

jon

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

end of thread, other threads:[~2026-07-10 19:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-03  8:08 [PATCH] Documentation/kernel-parameters: fix brackets Manuel Ebner
2026-07-08  4:18 ` Randy Dunlap
2026-07-10 19:32 ` Jonathan Corbet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox