Revert "tty: hvc: Fix data abort due to race in hvc_open"
[linux/fpc-iii.git] / arch / x86 / include / asm / irq_regs.h
blob187ce59aea28e44d53901e0658c6d36127a00c95
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * Per-cpu current frame pointer - the location of the last exception frame on
4 * the stack, stored in the per-cpu area.
6 * Jeremy Fitzhardinge <jeremy@goop.org>
7 */
8 #ifndef _ASM_X86_IRQ_REGS_H
9 #define _ASM_X86_IRQ_REGS_H
11 #include <asm/percpu.h>
13 #define ARCH_HAS_OWN_IRQ_REGS
15 DECLARE_PER_CPU(struct pt_regs *, irq_regs);
17 static inline struct pt_regs *get_irq_regs(void)
19 return __this_cpu_read(irq_regs);
22 static inline struct pt_regs *set_irq_regs(struct pt_regs *new_regs)
24 struct pt_regs *old_regs;
26 old_regs = get_irq_regs();
27 __this_cpu_write(irq_regs, new_regs);
29 return old_regs;
32 #endif /* _ASM_X86_IRQ_REGS_32_H */