]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
docs: netconsole: document release feature
authorBreno Leitao <leitao@debian.org>
Fri, 14 Mar 2025 17:58:50 +0000 (10:58 -0700)
committerPaolo Abeni <pabeni@redhat.com>
Fri, 21 Mar 2025 17:59:25 +0000 (18:59 +0100)
Add documentation explaining the kernel release auto-population feature
in netconsole.

This feature appends kernel version information to the userdata
dictionary in every message sent when enabled via the `release_enabled`
file in the configfs hierarchy.

Signed-off-by: Breno Leitao <leitao@debian.org>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20250314-netcons_release-v1-6-07979c4b86af@debian.org
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Documentation/networking/netconsole.rst

index ec740ba127976bf9c978d7b2811fb1735c1a004e..a0076b542e9c7b0572f4d438bfcde5c3fd0d3e43 100644 (file)
@@ -272,6 +272,31 @@ Example::
 In this example, the message was generated while "echo" was the current
 scheduled process.
 
+Kernel release auto population in userdata
+------------------------------------------
+
+Within the netconsole configfs hierarchy, there is a file named `release_enabled`
+located in the `userdata` directory. This file controls the kernel release
+(version) auto-population feature, which appends the kernel release information
+to userdata dictionary in every message sent.
+
+To enable the release auto-population::
+
+  echo 1 > /sys/kernel/config/netconsole/target1/userdata/release_enabled
+
+Example::
+
+  echo "This is a message" > /dev/kmsg
+  12,607,22085407756,-;This is a message
+   release=6.14.0-rc6-01219-g3c027fbd941d
+
+.. note::
+
+   This feature provides the same data as the "release prepend" feature.
+   However, in this case, the release information is appended to the userdata
+   dictionary rather than being included in the message header.
+
+
 CPU number auto population in userdata
 --------------------------------------