[PATCH 1/3] docs: panic: correct some sys_ifo names in sysctl doc

Feng Tang posted 3 patches 1 month, 1 week ago
There is a newer version of this series
[PATCH 1/3] docs: panic: correct some sys_ifo names in sysctl doc
Posted by Feng Tang 1 month, 1 week ago
Some sys_info names wered forgotten to change in patch iterations, while
the right names are defined in kernel/sys_info.c.

Fixes: d747755917bf ("panic: add 'panic_sys_info' sysctl to take human readable string parameter")
Signed-off-by: Feng Tang <feng.tang@linux.alibaba.com>
---
 Documentation/admin-guide/sysctl/kernel.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/admin-guide/sysctl/kernel.rst b/Documentation/admin-guide/sysctl/kernel.rst
index 0065a55bc09e..a397eeccaea7 100644
--- a/Documentation/admin-guide/sysctl/kernel.rst
+++ b/Documentation/admin-guide/sysctl/kernel.rst
@@ -911,8 +911,8 @@ to 'panic_print'. Possible values are:
 =============   ===================================================
 tasks           print all tasks info
 mem             print system memory info
-timer           print timers info
-lock            print locks info if CONFIG_LOCKDEP is on
+timers          print timers info
+locks           print locks info if CONFIG_LOCKDEP is on
 ftrace          print ftrace buffer
 all_bt          print all CPUs backtrace (if available in the arch)
 blocked_tasks   print only tasks in uninterruptible (blocked) state
-- 
2.43.5
Re: [PATCH 1/3] docs: panic: correct some sys_ifo names in sysctl doc
Posted by Petr Mladek 1 month, 1 week ago
On Thu 2025-11-06 10:30:30, Feng Tang wrote:
> Some sys_info names wered forgotten to change in patch iterations, while
> the right names are defined in kernel/sys_info.c.
> 
> Fixes: d747755917bf ("panic: add 'panic_sys_info' sysctl to take human readable string parameter")
> Signed-off-by: Feng Tang <feng.tang@linux.alibaba.com>

LGTM, feel free to use:

Reviewed-by: Petr Mladek <pmladek@suse.com>

Best Regards,
Petr
Re: [PATCH 1/3] docs: panic: correct some sys_ifo names in sysctl doc
Posted by Feng Tang 1 month, 1 week ago
On Mon, Nov 10, 2025 at 05:52:35PM +0100, Petr Mladek wrote:
> On Thu 2025-11-06 10:30:30, Feng Tang wrote:
> > Some sys_info names wered forgotten to change in patch iterations, while
> > the right names are defined in kernel/sys_info.c.
> > 
> > Fixes: d747755917bf ("panic: add 'panic_sys_info' sysctl to take human readable string parameter")
> > Signed-off-by: Feng Tang <feng.tang@linux.alibaba.com>
> 
> LGTM, feel free to use:
> 
> Reviewed-by: Petr Mladek <pmladek@suse.com>

Thanks you!

- Feng