Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Sam Ravnborg | ece9348 | 2009-01-02 19:21:06 -0800 | [diff] [blame] | 2 | #ifndef __SPARC_SIGNAL_H |
| 3 | #define __SPARC_SIGNAL_H |
| 4 | |
Sam Ravnborg | ece9348 | 2009-01-02 19:21:06 -0800 | [diff] [blame] | 5 | #ifndef __ASSEMBLY__ |
| 6 | #include <linux/personality.h> |
| 7 | #include <linux/types.h> |
| 8 | #endif |
David Howells | 5457982 | 2012-10-09 09:47:43 +0100 | [diff] [blame] | 9 | #include <uapi/asm/signal.h> |
Sam Ravnborg | ece9348 | 2009-01-02 19:21:06 -0800 | [diff] [blame] | 10 | |
| 11 | #ifndef __ASSEMBLY__ |
Sam Ravnborg | ece9348 | 2009-01-02 19:21:06 -0800 | [diff] [blame] | 12 | /* |
| 13 | * DJHR |
| 14 | * SA_STATIC_ALLOC is used for the sparc32 system to indicate that this |
| 15 | * interrupt handler's irq structure should be statically allocated |
| 16 | * by the request_irq routine. |
| 17 | * The alternative is that arch/sparc/kernel/irq.c has carnal knowledge |
| 18 | * of interrupt usage and that sucks. Also without a flag like this |
| 19 | * it may be possible for the free_irq routine to attempt to free |
| 20 | * statically allocated data.. which is NOT GOOD. |
| 21 | * |
| 22 | */ |
| 23 | #define SA_STATIC_ALLOC 0x8000 |
Sam Ravnborg | ece9348 | 2009-01-02 19:21:06 -0800 | [diff] [blame] | 24 | |
Al Viro | 92a3ce4 | 2012-11-25 21:20:05 -0500 | [diff] [blame] | 25 | #define __ARCH_HAS_KA_RESTORER |
Al Viro | 574c486 | 2012-11-25 22:24:19 -0500 | [diff] [blame] | 26 | #define __ARCH_HAS_SA_RESTORER |
Sam Ravnborg | ece9348 | 2009-01-02 19:21:06 -0800 | [diff] [blame] | 27 | |
Sam Ravnborg | ece9348 | 2009-01-02 19:21:06 -0800 | [diff] [blame] | 28 | #endif /* !(__ASSEMBLY__) */ |
Sam Ravnborg | ece9348 | 2009-01-02 19:21:06 -0800 | [diff] [blame] | 29 | #endif /* !(__SPARC_SIGNAL_H) */ |