Contributors: 39
Author Tokens Token Proportion Commits Commit Proportion
Andy Shevchenko 132 36.77% 1 1.89%
Petr Mladek 27 7.52% 1 1.89%
Andi Kleen 24 6.69% 4 7.55%
Linus Torvalds (pre-git) 17 4.74% 7 13.21%
Andrew Morton 14 3.90% 1 1.89%
Hidehiro Kawai 13 3.62% 1 1.89%
Martin Schwidefsky 12 3.34% 2 3.77%
Rafael Aquini 10 2.79% 1 1.89%
Rusty Russell 9 2.51% 1 1.89%
Kees Cook 9 2.51% 1 1.89%
Jani Nikula 7 1.95% 1 1.89%
Frédéric Weisbecker 6 1.67% 2 3.77%
Feng Tang 5 1.39% 1 1.89%
Arnd Bergmann 5 1.39% 1 1.89%
Steven Rostedt 5 1.39% 3 5.66%
Jason Gunthorpe 5 1.39% 1 1.89%
Prarit Bhargava 4 1.11% 1 1.89%
Lee Jones 4 1.11% 1 1.89%
chao 4 1.11% 1 1.89%
David Gow 4 1.11% 1 1.89%
Ryo Takakura 4 1.11% 1 1.89%
Daniel Bristot de Oliveira 4 1.11% 1 1.89%
Linus Torvalds 4 1.11% 1 1.89%
Mitsuo Hayasaka 4 1.11% 1 1.89%
Ian Abbott 3 0.84% 1 1.89%
Masami Hiramatsu 3 0.84% 1 1.89%
Dan Rosenberg 2 0.56% 1 1.89%
Tejun Heo 2 0.56% 1 1.89%
Matt Mackall 2 0.56% 1 1.89%
Joe Perches 2 0.56% 2 3.77%
Tamuki Shoichi 2 0.56% 1 1.89%
Larry Finger 2 0.56% 1 1.89%
Glauber de Oliveira Costa 2 0.56% 1 1.89%
Thomas Gleixner 2 0.56% 1 1.89%
Greg Kroah-Hartman 1 0.28% 1 1.89%
Ingo Molnar 1 0.28% 1 1.89%
Tiezhu Yang 1 0.28% 1 1.89%
Daisuke Hatayama 1 0.28% 1 1.89%
Eduard - Gabriel Munteanu 1 0.28% 1 1.89%
Total 359 53


/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_PANIC_H
#define _LINUX_PANIC_H

#include <linux/compiler_attributes.h>
#include <linux/types.h>

struct pt_regs;

extern long (*panic_blink)(int state);
__printf(1, 2)
void panic(const char *fmt, ...) __noreturn __cold;
void nmi_panic(struct pt_regs *regs, const char *msg);
void check_panic_on_warn(const char *origin);
extern void oops_enter(void);
extern void oops_exit(void);
extern bool oops_may_print(void);

extern bool panic_triggering_all_cpu_backtrace;
extern int panic_timeout;
extern unsigned long panic_print;
extern int panic_on_oops;
extern int panic_on_warn;

extern unsigned long panic_on_taint;
extern bool panic_on_taint_nousertaint;

extern int sysctl_panic_on_rcu_stall;
extern int sysctl_max_rcu_stall_to_panic;
extern int sysctl_panic_on_stackoverflow;

extern bool crash_kexec_post_notifiers;

extern void __stack_chk_fail(void);
void abort(void);

/*
 * panic_cpu is used for synchronizing panic() and crash_kexec() execution. It
 * holds a CPU number which is executing panic() currently. A value of
 * PANIC_CPU_INVALID means no CPU has entered panic() or crash_kexec().
 */
extern atomic_t panic_cpu;
#define PANIC_CPU_INVALID	-1

/*
 * Only to be used by arch init code. If the user over-wrote the default
 * CONFIG_PANIC_TIMEOUT, honor it.
 */
static inline void set_arch_panic_timeout(int timeout, int arch_default_timeout)
{
	if (panic_timeout == arch_default_timeout)
		panic_timeout = timeout;
}

/* This cannot be an enum because some may be used in assembly source. */
#define TAINT_PROPRIETARY_MODULE	0
#define TAINT_FORCED_MODULE		1
#define TAINT_CPU_OUT_OF_SPEC		2
#define TAINT_FORCED_RMMOD		3
#define TAINT_MACHINE_CHECK		4
#define TAINT_BAD_PAGE			5
#define TAINT_USER			6
#define TAINT_DIE			7
#define TAINT_OVERRIDDEN_ACPI_TABLE	8
#define TAINT_WARN			9
#define TAINT_CRAP			10
#define TAINT_FIRMWARE_WORKAROUND	11
#define TAINT_OOT_MODULE		12
#define TAINT_UNSIGNED_MODULE		13
#define TAINT_SOFTLOCKUP		14
#define TAINT_LIVEPATCH			15
#define TAINT_AUX			16
#define TAINT_RANDSTRUCT		17
#define TAINT_TEST			18
#define TAINT_FWCTL			19
#define TAINT_FLAGS_COUNT		20
#define TAINT_FLAGS_MAX			((1UL << TAINT_FLAGS_COUNT) - 1)

struct taint_flag {
	char c_true;		/* character printed when tainted */
	char c_false;		/* character printed when not tainted */
	bool module;		/* also show as a per-module taint flag */
	const char *desc;	/* verbose description of the set taint flag */
};

extern const struct taint_flag taint_flags[TAINT_FLAGS_COUNT];

enum lockdep_ok {
	LOCKDEP_STILL_OK,
	LOCKDEP_NOW_UNRELIABLE,
};

extern const char *print_tainted(void);
extern const char *print_tainted_verbose(void);
extern void add_taint(unsigned flag, enum lockdep_ok);
extern int test_taint(unsigned flag);
extern unsigned long get_taint(void);

#endif	/* _LINUX_PANIC_H */