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 v5.19 15 lines 354 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __NMI_H 3#define __NMI_H 4 5int __init nmi_init(void); 6void perfctr_irq(int irq, struct pt_regs *regs); 7void nmi_adjust_hz(unsigned int new_hz); 8 9extern atomic_t nmi_active; 10 11void arch_touch_nmi_watchdog(void); 12void start_nmi_watchdog(void *unused); 13void stop_nmi_watchdog(void *unused); 14 15#endif /* __NMI_H */