Documentation/trace: Fixed typos in the ftrace FLAGS section
authorMatthew Cassell <mcassell411@gmail.com>
Sat, 23 Dec 2023 18:58:45 +0000 (18:58 +0000)
committerJonathan Corbet <corbet@lwn.net>
Wed, 3 Jan 2024 21:15:53 +0000 (14:15 -0700)
Fixed typos in the FTRACE_OPS_FL_RECURSION flag description.

Signed-off-by: Matthew Cassell <mcassell411@gmail.com>
Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Link: https://lore.kernel.org/r/20231223185845.2326-1-mcassell411@gmail.com
Documentation/trace/ftrace-uses.rst

index f7d98ae5b8853e732d74c8be953eeb446d79059d..e198854ace793241c902f7484057fee9e29679c4 100644 (file)
@@ -182,7 +182,7 @@ FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED
 
 FTRACE_OPS_FL_RECURSION
        By default, it is expected that the callback can handle recursion.
-       But if the callback is not that worried about overehead, then
+       But if the callback is not that worried about overhead, then
        setting this bit will add the recursion protection around the
        callback by calling a helper function that will do the recursion
        protection and only call the callback if it did not recurse.
@@ -190,7 +190,7 @@ FTRACE_OPS_FL_RECURSION
        Note, if this flag is not set, and recursion does occur, it could
        cause the system to crash, and possibly reboot via a triple fault.
 
-       Not, if this flag is set, then the callback will always be called
+       Note, if this flag is set, then the callback will always be called
        with preemption disabled. If it is not set, then it is possible
        (but not guaranteed) that the callback will be called in
        preemptable context.