GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / asm-generic / irq_regs.h
blob5ae1d07d4a1275a8ac91996b23753270e5033cb3
1 /* Fallback per-CPU frame pointer holder
3 * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #ifndef _ASM_GENERIC_IRQ_REGS_H
13 #define _ASM_GENERIC_IRQ_REGS_H
15 #include <linux/percpu.h>
18 * Per-cpu current frame pointer - the location of the last exception frame on
19 * the stack
21 DECLARE_PER_CPU(struct pt_regs *, __irq_regs);
23 static inline struct pt_regs *get_irq_regs(void)
25 return __get_cpu_var(__irq_regs);
28 static inline struct pt_regs *set_irq_regs(struct pt_regs *new_regs)
30 struct pt_regs *old_regs, **pp_regs = &__get_cpu_var(__irq_regs);
32 old_regs = *pp_regs;
33 *pp_regs = new_regs;
34 return old_regs;
37 #endif /* _ASM_GENERIC_IRQ_REGS_H */