Re: [PATCH] Documentation/kernel-parameters: fix brackets
Randy Dunlap <[email protected]> Tue, 7 Jul 2026 21:18:59 -0700
| Newsgroups | gmane.linux.documentation,gmane.linux.kernel.janitors,gmane.linux.kernel |
|---|---|
| Message-ID | <[email protected]> |
On 7/3/26 1:08 AM, Manuel Ebner wrote: > Add a few missing ']'s and a ')'. > > Signed-off-by: Manuel Ebner <[email protected]> Acked-by: Randy Dunlap <[email protected]> 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