summaryrefslogtreecommitdiff
path: root/include/linux/ubsan.h
diff options
context:
space:
mode:
authorMostafa Saleh <smostafa@google.com>2025-04-30 16:27:09 +0000
committerMarc Zyngier <maz@kernel.org>2025-05-07 11:21:35 +0100
commitd683a8561889c1813fe2ad6082769c91e3cb71b3 (patch)
treeeb2a13127abce27a342d1ebca31cd886e058805b /include/linux/ubsan.h
parentdc1fd37a7f501731e488c1c6f86b2f591632a4ad (diff)
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 'include/linux/ubsan.h')
-rw-r--r--include/linux/ubsan.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/ubsan.h b/include/linux/ubsan.h
index d8219cbe09ff..c843816f5f68 100644
--- a/include/linux/ubsan.h
+++ b/include/linux/ubsan.h
@@ -3,9 +3,9 @@
#define _LINUX_UBSAN_H
#ifdef CONFIG_UBSAN_TRAP
-const char *report_ubsan_failure(struct pt_regs *regs, u32 check_type);
+const char *report_ubsan_failure(u32 check_type);
#else
-static inline const char *report_ubsan_failure(struct pt_regs *regs, u32 check_type)
+static inline const char *report_ubsan_failure(u32 check_type)
{
return NULL;
}