diff options
author | Peter Zijlstra <[email protected]> | 2020-08-20 09:27:52 +0200 |
---|---|---|
committer | Peter Zijlstra <[email protected]> | 2020-08-26 12:41:55 +0200 |
commit | 36206b588bc815e5f64e8da72d7ab79e00b76281 (patch) | |
tree | c9eb744d476b507981c126aab6d0fcf2c8d0651a | |
parent | 00b0ed2d4997af6d0a93edef820386951fd66d94 (diff) |
nds32: Implement arch_irqs_disabled()
Cc: Nick Hu <[email protected]>
Cc: Greentime Hu <[email protected]>
Cc: Vincent Chen <[email protected]>
Reported-by: kernel test robot <[email protected]>
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Reviewed-by: Steven Rostedt (VMware) <[email protected]>
Reviewed-by: Thomas Gleixner <[email protected]>
Acked-by: Rafael J. Wysocki <[email protected]>
Tested-by: Marco Elver <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
-rw-r--r-- | arch/nds32/include/asm/irqflags.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/nds32/include/asm/irqflags.h b/arch/nds32/include/asm/irqflags.h index fb45ec46bb1b..51ef800bb301 100644 --- a/arch/nds32/include/asm/irqflags.h +++ b/arch/nds32/include/asm/irqflags.h @@ -34,3 +34,8 @@ static inline int arch_irqs_disabled_flags(unsigned long flags) { return !flags; } + +static inline int arch_irqs_disabled(void) +{ + return arch_irqs_disabled_flags(arch_local_save_flags()); +} |