hardirq.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_X86_HARDIRQ_H
  3. #define _ASM_X86_HARDIRQ_H
  4. #include <linux/threads.h>
  5. #include <linux/irq.h>
  6. typedef struct {
  7. unsigned int __softirq_pending;
  8. unsigned int __nmi_count; /* arch dependent */
  9. #ifdef CONFIG_X86_LOCAL_APIC
  10. unsigned int apic_timer_irqs; /* arch dependent */
  11. unsigned int irq_spurious_count;
  12. unsigned int icr_read_retry_count;
  13. #endif
  14. #ifdef CONFIG_HAVE_KVM
  15. unsigned int kvm_posted_intr_ipis;
  16. unsigned int kvm_posted_intr_wakeup_ipis;
  17. unsigned int kvm_posted_intr_nested_ipis;
  18. #endif
  19. unsigned int x86_platform_ipis; /* arch dependent */
  20. unsigned int apic_perf_irqs;
  21. unsigned int apic_irq_work_irqs;
  22. #ifdef CONFIG_SMP
  23. unsigned int irq_resched_count;
  24. unsigned int irq_call_count;
  25. #endif
  26. unsigned int irq_tlb_count;
  27. #ifdef CONFIG_X86_THERMAL_VECTOR
  28. unsigned int irq_thermal_count;
  29. #endif
  30. #ifdef CONFIG_X86_MCE_THRESHOLD
  31. unsigned int irq_threshold_count;
  32. #endif
  33. #ifdef CONFIG_X86_MCE_AMD
  34. unsigned int irq_deferred_error_count;
  35. #endif
  36. #if IS_ENABLED(CONFIG_HYPERV) || defined(CONFIG_XEN)
  37. unsigned int irq_hv_callback_count;
  38. #endif
  39. #if IS_ENABLED(CONFIG_HYPERV)
  40. unsigned int irq_hv_reenlightenment_count;
  41. unsigned int hyperv_stimer0_count;
  42. #endif
  43. } ____cacheline_aligned irq_cpustat_t;
  44. DECLARE_PER_CPU_SHARED_ALIGNED(irq_cpustat_t, irq_stat);
  45. #define __ARCH_IRQ_STAT
  46. #define inc_irq_stat(member) this_cpu_inc(irq_stat.member)
  47. extern void ack_bad_irq(unsigned int irq);
  48. extern u64 arch_irq_stat_cpu(unsigned int cpu);
  49. #define arch_irq_stat_cpu arch_irq_stat_cpu
  50. extern u64 arch_irq_stat(void);
  51. #define arch_irq_stat arch_irq_stat
  52. #endif /* _ASM_X86_HARDIRQ_H */