diff options
| author | 2025-04-30 16:27:09 +0000 | |
|---|---|---|
| committer | 2025-05-07 11:21:35 +0100 | |
| commit | d683a8561889c1813fe2ad6082769c91e3cb71b3 (patch) | |
| tree | eb2a13127abce27a342d1ebca31cd886e058805b /lib/ubsan.c | |
| parent | arm64: Introduce esr_is_ubsan_brk() (diff) | |
| download | wireguard-linux-d683a8561889c1813fe2ad6082769c91e3cb71b3.tar.xz wireguard-linux-d683a8561889c1813fe2ad6082769c91e3cb71b3.zip | |
ubsan: Remove regs from report_ubsan_failure()
report_ubsan_failure() doesn't use argument regs, and soon it will
be called from the hypervisor context were regs are not available.
So, remove the unused argument.
Signed-off-by: Mostafa Saleh <smostafa@google.com>
Acked-by: Kees Cook <kees@kernel.org>
Link: https://lore.kernel.org/r/20250430162713.1997569-3-smostafa@google.com
Signed-off-by: Marc Zyngier <maz@kernel.org>
Diffstat (limited to 'lib/ubsan.c')
| -rw-r--r-- | lib/ubsan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ubsan.c b/lib/ubsan.c index cdc1d31c3821..17993727fc96 100644 --- a/lib/ubsan.c +++ b/lib/ubsan.c @@ -25,7 +25,7 @@ * The mappings of struct SanitizerKind (the -fsanitize=xxx args) to * enum SanitizerHandler (the traps) in Clang is in clang/lib/CodeGen/. */ -const char *report_ubsan_failure(struct pt_regs *regs, u32 check_type) +const char *report_ubsan_failure(u32 check_type) { switch (check_type) { #ifdef CONFIG_UBSAN_BOUNDS |
