Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[PATCH] irq-flags: XTENSA: Use the new IRQF_ constants

Use the new IRQF_ constants and remove the SA_INTERRUPT define

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Chris Zankel <chris@zankel.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Thomas Gleixner and committed by
Linus Torvalds
85ac3ab2 b1e05aa2

+1 -16
+1 -1
arch/xtensa/kernel/time.c
··· 52 52 static irqreturn_t timer_interrupt(int irq, void *dev_id, struct pt_regs *regs); 53 53 static struct irqaction timer_irqaction = { 54 54 .handler = timer_interrupt, 55 - .flags = SA_INTERRUPT, 55 + .flags = IRQF_DISABLED, 56 56 .name = "timer", 57 57 }; 58 58
-15
include/asm-xtensa/signal.h
··· 75 75 * SA_FLAGS values: 76 76 * 77 77 * SA_ONSTACK indicates that a registered stack_t will be used. 78 - * SA_INTERRUPT is a no-op, but left due to historical reasons. Use the 79 78 * SA_RESTART flag to get restarting signals (which were the default long ago) 80 79 * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop. 81 80 * SA_RESETHAND clears the handler when the signal is delivered. ··· 94 95 95 96 #define SA_NOMASK SA_NODEFER 96 97 #define SA_ONESHOT SA_RESETHAND 97 - #define SA_INTERRUPT 0x20000000 /* dummy -- ignored */ 98 98 99 99 #define SA_RESTORER 0x04000000 100 100 ··· 107 109 #define SIGSTKSZ 8192 108 110 109 111 #ifndef __ASSEMBLY__ 110 - #ifdef __KERNEL__ 111 - 112 - /* 113 - * These values of sa_flags are used only by the kernel as part of the 114 - * irq handling routines. 115 - * 116 - * SA_INTERRUPT is also used by the irq handling routines. 117 - * SA_SHIRQ is for shared interrupt support on PCI and EISA. 118 - */ 119 - #define SA_SAMPLE_RANDOM SA_RESTART 120 - #define SA_SHIRQ 0x04000000 121 - #define SA_PROBEIRQ 0x08000000 122 - #endif 123 112 124 113 #define SIG_BLOCK 0 /* for blocking signals */ 125 114 #define SIG_UNBLOCK 1 /* for unblocking signals */