Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Documentation/rtla: Document --stack-format option

Add documentation for --stack-format option of rtla-timerlat into its
common options.

Reviewed-by: Wander Lairson Costa <wander@redhat.com>
Link: https://lore.kernel.org/r/20260119115222.744150-2-tglozar@redhat.com
Signed-off-by: Tomas Glozar <tglozar@redhat.com>

+12
+12
Documentation/tools/rtla/common_timerlat_options.txt
··· 83 83 84 84 **Note**: BPF actions require BPF support to be available. If BPF is not available 85 85 or disabled, the tool falls back to tracefs mode and BPF actions are not supported. 86 + 87 + **--stack-format** *format* 88 + 89 + Adjust the format of the stack trace printed during auto-analysis. 90 + 91 + The supported values for *format* are: 92 + 93 + * **truncate** Print the stack trace up to the first unknown address (default). 94 + * **skip** Skip unknown addresses. 95 + * **full** Print the entire stack trace, including unknown addresses. 96 + 97 + For unknown addresses, the raw pointer is printed.