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

Merge branch 'kvm-arm64/nvhe-panic-info' into kvmarm-master/next

Signed-off-by: Marc Zyngier <maz@kernel.org>

+7
+7
include/linux/bug.h
··· 61 61 return BUG_TRAP_TYPE_BUG; 62 62 } 63 63 64 + struct bug_entry; 65 + static inline void bug_get_file_line(struct bug_entry *bug, const char **file, 66 + unsigned int *line) 67 + { 68 + *file = NULL; 69 + *line = 0; 70 + } 64 71 65 72 static inline void generic_bug_clear_once(void) {} 66 73