cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

nmi.h (354B)


      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 */