blob: 827b73a97f8a7e48418408ff4011571da2c49573 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Sam Ravnborgece93482009-01-02 19:21:06 -08002#ifndef __SPARC_SIGNAL_H
3#define __SPARC_SIGNAL_H
4
Sam Ravnborgece93482009-01-02 19:21:06 -08005#ifndef __ASSEMBLY__
6#include <linux/personality.h>
7#include <linux/types.h>
8#endif
David Howells54579822012-10-09 09:47:43 +01009#include <uapi/asm/signal.h>
Sam Ravnborgece93482009-01-02 19:21:06 -080010
11#ifndef __ASSEMBLY__
Sam Ravnborgece93482009-01-02 19:21:06 -080012/*
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 Ravnborgece93482009-01-02 19:21:06 -080024
Al Viro92a3ce42012-11-25 21:20:05 -050025#define __ARCH_HAS_KA_RESTORER
Al Viro574c4862012-11-25 22:24:19 -050026#define __ARCH_HAS_SA_RESTORER
Sam Ravnborgece93482009-01-02 19:21:06 -080027
Sam Ravnborgece93482009-01-02 19:21:06 -080028#endif /* !(__ASSEMBLY__) */
Sam Ravnborgece93482009-01-02 19:21:06 -080029#endif /* !(__SPARC_SIGNAL_H) */