aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/trace/ftrace.rst
diff options
context:
space:
mode:
authorJonathan Corbet <corbet@lwn.net>2018-03-07 10:44:08 -0700
committerJonathan Corbet <corbet@lwn.net>2018-03-07 10:44:08 -0700
commit6234c7bd8c14508fb76c0a4d6f01eb81c8ce9cbf (patch)
tree36bc90f6570d6367443cce3c1de0bd63f63f5354 /Documentation/trace/ftrace.rst
parenttrace doc: convert trace/stm.txt to rst format (diff)
downloadlinux-dev-6234c7bd8c14508fb76c0a4d6f01eb81c8ce9cbf.tar.xz
linux-dev-6234c7bd8c14508fb76c0a4d6f01eb81c8ce9cbf.zip
docs: ftrace: fix a few formatting issues
Make sure that literal * characters are not interpreted as emphasis markers. Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/trace/ftrace.rst')
-rw-r--r--Documentation/trace/ftrace.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/trace/ftrace.rst b/Documentation/trace/ftrace.rst
index 636aa9bf5674..0bc33ad4a3f9 100644
--- a/Documentation/trace/ftrace.rst
+++ b/Documentation/trace/ftrace.rst
@@ -2615,13 +2615,13 @@ To see which functions are being traced, you can cat the file:
Perhaps this is not enough. The filters also allow glob(7) matching.
- <match>*
+ ``<match>*``
will match functions that begin with <match>
- *<match>
+ ``*<match>``
will match functions that end with <match>
- *<match>*
+ ``*<match>*``
will match functions that have <match> in it
- <match1>*<match2>
+ ``<match1>*<match2>``
will match functions that begin with <match1> and end with <match2>
.. note::