diff options
author | Mostafa Saleh <smostafa@google.com> | 2025-04-30 19:27:09 +0300 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2025-05-07 13:21:35 +0300 |
commit | d683a8561889c1813fe2ad6082769c91e3cb71b3 (patch) | |
tree | eb2a13127abce27a342d1ebca31cd886e058805b /lib | |
parent | dc1fd37a7f501731e488c1c6f86b2f591632a4ad (diff) | |
download | linux-d683a8561889c1813fe2ad6082769c91e3cb71b3.tar.xz |
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')
-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 |