#ifndef _X86_IRQFLAGS_H_
#define _X86_IRQFLAGS_H_
#include <asm/processor-flags.h>
#ifndef __ASSEMBLY__
#include <asm/nospec-branch.h>
extern inline unsigned long native_save_fl(void);
extern __always_inline unsigned long native_save_fl(void)
{ … }
static __always_inline void native_irq_disable(void)
{ … }
static __always_inline void native_irq_enable(void)
{ … }
static __always_inline void native_safe_halt(void)
{ … }
static __always_inline void native_halt(void)
{ … }
static __always_inline int native_irqs_disabled_flags(unsigned long flags)
{ … }
static __always_inline unsigned long native_local_irq_save(void)
{ … }
static __always_inline void native_local_irq_restore(unsigned long flags)
{ … }
#endif
#ifdef CONFIG_PARAVIRT_XXL
#include <asm/paravirt.h>
#else
#ifndef __ASSEMBLY__
#include <linux/types.h>
static __always_inline unsigned long arch_local_save_flags(void)
{
return native_save_fl();
}
static __always_inline void arch_local_irq_disable(void)
{
native_irq_disable();
}
static __always_inline void arch_local_irq_enable(void)
{
native_irq_enable();
}
static __always_inline void arch_safe_halt(void)
{
native_safe_halt();
}
static __always_inline void halt(void)
{
native_halt();
}
static __always_inline unsigned long arch_local_irq_save(void)
{
unsigned long flags = arch_local_save_flags();
arch_local_irq_disable();
return flags;
}
#else
#ifdef CONFIG_X86_64
#ifdef CONFIG_DEBUG_ENTRY
#define SAVE_FLAGS …
#endif
#endif
#endif
#endif
#ifndef __ASSEMBLY__
static __always_inline int arch_irqs_disabled_flags(unsigned long flags)
{ … }
static __always_inline int arch_irqs_disabled(void)
{ … }
static __always_inline void arch_local_irq_restore(unsigned long flags)
{ … }
#endif
#endif