diff options
author | 2025-06-15 20:32:37 +0800 | |
---|---|---|
committer | 2025-07-09 22:57:52 -0700 | |
commit | ad2c8079e9d5637f6d66cb5ce5cf49768ae87658 (patch) | |
tree | a4f68bf91734d84a200bdbc50f8f74e7a794e545 | |
parent | relayfs: support a counter tracking if data is too big to write (diff) | |
download | wireguard-linux-ad2c8079e9d5637f6d66cb5ce5cf49768ae87658.tar.xz wireguard-linux-ad2c8079e9d5637f6d66cb5ce5cf49768ae87658.zip |
kcov: fix typo in comment of kcov_fault_in_area
change '__santizer_cov_trace_pc()' to '__sanitizer_cov_trace_pc()'
Link: https://lkml.kernel.org/r/20250615123237.110144-1-n9winx@163.com
Signed-off-by: Wei Nanxin <n9winx@163.com>
Cc: Andrey Konovalov <andreyknvl@gmail.com>
Cc: Macro Elver <elver@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-rw-r--r-- | kernel/kcov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/kcov.c b/kernel/kcov.c index 187ba1b80bda..1d85597057e1 100644 --- a/kernel/kcov.c +++ b/kernel/kcov.c @@ -552,7 +552,7 @@ static int kcov_get_mode(unsigned long arg) /* * Fault in a lazily-faulted vmalloc area before it can be used by - * __santizer_cov_trace_pc(), to avoid recursion issues if any code on the + * __sanitizer_cov_trace_pc(), to avoid recursion issues if any code on the * vmalloc fault handling path is instrumented. */ static void kcov_fault_in_area(struct kcov *kcov) |