cregit-Linux how code gets into the kernel

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

#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__);                     \
        __builtin_trap();                               \
} while (0)
#else

#define BUG()		__builtin_trap()
#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 kingrussell king2029.41%112.50%
david howellsdavid howells1522.06%112.50%
pete zaitcevpete zaitcev1522.06%112.50%
matt mackallmatt mackall913.24%225.00%
david s. millerdavid s. miller57.35%112.50%
sam ravnborgsam ravnborg22.94%112.50%
paul mackerraspaul mackerras22.94%112.50%
Total68100.00%8100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.