Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.13-rc4 14 lines 307 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _LINUX_UBSAN_H 3#define _LINUX_UBSAN_H 4 5#ifdef CONFIG_UBSAN_TRAP 6const char *report_ubsan_failure(struct pt_regs *regs, u32 check_type); 7#else 8static inline const char *report_ubsan_failure(struct pt_regs *regs, u32 check_type) 9{ 10 return NULL; 11} 12#endif 13 14#endif