blob: 2e7c6e89d42e9f0e2f9d4f5cf933c6458c951843 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
David Howells7d12e782006-10-05 14:55:46 +01002/* Fallback per-CPU frame pointer holder
3 *
4 * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
David Howells7d12e782006-10-05 14:55:46 +01006 */
7
8#ifndef _ASM_GENERIC_IRQ_REGS_H
9#define _ASM_GENERIC_IRQ_REGS_H
10
11#include <linux/percpu.h>
12
13/*
14 * Per-cpu current frame pointer - the location of the last exception frame on
15 * the stack
16 */
17DECLARE_PER_CPU(struct pt_regs *, __irq_regs);
18
19static inline struct pt_regs *get_irq_regs(void)
20{
Christoph Lameter909ea962010-12-08 16:22:55 +010021 return __this_cpu_read(__irq_regs);
David Howells7d12e782006-10-05 14:55:46 +010022}
23
24static inline struct pt_regs *set_irq_regs(struct pt_regs *new_regs)
25{
Christoph Lameter909ea962010-12-08 16:22:55 +010026 struct pt_regs *old_regs;
David Howells7d12e782006-10-05 14:55:46 +010027
Christoph Lameter909ea962010-12-08 16:22:55 +010028 old_regs = __this_cpu_read(__irq_regs);
29 __this_cpu_write(__irq_regs, new_regs);
David Howells7d12e782006-10-05 14:55:46 +010030 return old_regs;
31}
32
33#endif /* _ASM_GENERIC_IRQ_REGS_H */