diff options
| author | Peter Zijlstra <[email protected]> | 2020-08-22 18:04:15 +0200 |
|---|---|---|
| committer | Peter Zijlstra <[email protected]> | 2020-08-26 12:41:55 +0200 |
| commit | 99dc56feb7932020502d40107a712fa302b32082 (patch) | |
| tree | 9b5b047fd83b6767feec76d8217a8bd0719e014c | |
| parent | 021c109330ebc1f54b546c63a078ea3c31356ecb (diff) | |
mips: Implement arch_irqs_disabled()
Cc: Thomas Bogendoerfer <[email protected]>
Cc: Paul Burton <[email protected]>
Reported-by: kernel test robot <[email protected]>
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
| -rw-r--r-- | arch/mips/include/asm/irqflags.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/mips/include/asm/irqflags.h b/arch/mips/include/asm/irqflags.h index 47a8ffc0b413..f5b8300f4573 100644 --- a/arch/mips/include/asm/irqflags.h +++ b/arch/mips/include/asm/irqflags.h @@ -137,6 +137,11 @@ static inline int arch_irqs_disabled_flags(unsigned long flags) return !(flags & 1); } +static inline int arch_irqs_disabled(void) +{ + return arch_irqs_disabled_flags(arch_local_save_flags()); +} + #endif /* #ifndef __ASSEMBLY__ */ /* |