cregit-Linux how code gets into the kernel

Release 4.18 arch/sparc/include/asm/bug.h

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _SPARC_BUG_H

#define _SPARC_BUG_H

#ifdef CONFIG_BUG
#include <linux/compiler.h>

#ifdef CONFIG_DEBUG_BUGVERBOSE
void do_BUG(const char *file, int line);

#define BUG() do {                                    \
        do_BUG(__FILE__, __LINE__);                     \
        barrier_before_unreachable();                   \
        __builtin_trap();                               \
} while (0)
#else

#define BUG() do {                                    \
        barrier_before_unreachable();                   \
        __builtin_trap();                               \
} while (0)
#endif


#define HAVE_ARCH_BUG
#endif

#include <asm-generic/bug.h>

struct pt_regs;
void __noreturn die_if_kernel(char *str, struct pt_regs *regs);

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Russell King2028.99%110.00%
David Howells1521.74%110.00%
Pete Zaitcev1521.74%110.00%
Matt Mackall913.04%220.00%
David S. Miller34.35%110.00%
Paul Mackerras22.90%110.00%
Sam Ravnborg22.90%110.00%
Arnd Bergmann22.90%110.00%
Greg Kroah-Hartman11.45%110.00%
Total69100.00%10100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.