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: bug-hunting.rst: Remove wrong 'file:' syntax

Link to another document does not require 'file:', therefore it was
shown in generated html.

Preformatted text requires just ``...``.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Message-ID: <20260111223643.174812-1-pvorel@suse.cz>

authored by

Petr Vorel and committed by
Jonathan Corbet
829656c3 b0ada758

+3 -3
+3 -3
Documentation/admin-guide/bug-hunting.rst
··· 52 52 we'll refer to "Oops" for all kinds of stack traces that need to be analyzed. 53 53 54 54 If the kernel is compiled with ``CONFIG_DEBUG_INFO``, you can enhance the 55 - quality of the stack trace by using file:`scripts/decode_stacktrace.sh`. 55 + quality of the stack trace by using ``scripts/decode_stacktrace.sh``. 56 56 57 57 Modules linked in 58 58 ----------------- 59 59 60 60 Modules that are tainted or are being loaded or unloaded are marked with 61 61 "(...)", where the taint flags are described in 62 - file:`Documentation/admin-guide/tainted-kernels.rst`, "being loaded" is 62 + Documentation/admin-guide/tainted-kernels.rst, "being loaded" is 63 63 annotated with "+", and "being unloaded" is annotated with "-". 64 64 65 65 ··· 235 235 mov 0x8(%ebp), %ebx ! %ebx = skb->sk 236 236 mov 0x13c(%ebx), %eax ! %eax = inet_sk(sk)->opt 237 237 238 - file:`scripts/decodecode` can be used to automate most of this, depending 238 + ``scripts/decodecode`` can be used to automate most of this, depending 239 239 on what CPU architecture is being debugged. 240 240 241 241 Reporting the bug