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

Documentation: tracing: Fix spelling mistakes

Fix spelling mistakes in the documentation.

Signed-off-by: Saurav Shah <sauravshah.31@gmail.com>
Link: https://lore.kernel.org/r/20240501233659.25441-1-sauravshah.31@gmail.com
Signed-off-by: Jonathan Corbet <corbet@lwn.net>

authored by

Saurav Shah and committed by
Jonathan Corbet
dd29dfe7 55b8d0a3

+4 -4
+2 -2
Documentation/trace/fprobetrace.rst
··· 74 74 -------------------------- 75 75 Function arguments can be accessed at exit probe using $arg<N> fetcharg. This 76 76 is useful to record the function parameter and return value at once, and 77 - trace the difference of structure fields (for debuging a function whether it 77 + trace the difference of structure fields (for debugging a function whether it 78 78 correctly updates the given data structure or not) 79 79 See the :ref:`sample<fprobetrace_exit_args_sample>` below for how it works. 80 80 ··· 248 248 cat-143 [007] ...1. 1945.720616: vfs_open__entry: (vfs_open+0x4/0x40) mode=0x1 inode=0x0 249 249 cat-143 [007] ...1. 1945.728263: vfs_open__exit: (do_open+0x274/0x3d0 <- vfs_open) mode=0xa800d inode=0xffff888004ada8d8 250 250 251 - You can see the `file::f_mode` and `file::f_inode` are upated in `vfs_open()`. 251 + You can see the `file::f_mode` and `file::f_inode` are updated in `vfs_open()`.
+1 -1
Documentation/trace/ftrace.rst
··· 1968 1968 One common case that people are interested in tracing is the 1969 1969 time it takes for a task that is woken to actually wake up. 1970 1970 Now for non Real-Time tasks, this can be arbitrary. But tracing 1971 - it none the less can be interesting. 1971 + it nonetheless can be interesting. 1972 1972 1973 1973 Without function tracing:: 1974 1974
+1 -1
Documentation/trace/kprobetrace.rst
··· 74 74 ------------------------------- 75 75 Function arguments can be accessed at kretprobe using $arg<N> fetcharg. This 76 76 is useful to record the function parameter and return value at once, and 77 - trace the difference of structure fields (for debuging a function whether it 77 + trace the difference of structure fields (for debugging a function whether it 78 78 correctly updates the given data structure or not). 79 79 See the :ref:`sample<fprobetrace_exit_args_sample>` in fprobe event for how 80 80 it works.