diff options
| author | Rusty Russell <rusty@rustcorp.com.au> | 2009-09-24 11:34:37 -0400 |
|---|---|---|
| committer | Rusty Russell <rusty@rustcorp.com.au> | 2009-09-23 20:04:37 -0400 |
| commit | ef79f8e191722dbc1fc33bdfc448f572266c37e9 (patch) | |
| tree | 941d14d7044f41d84e231aa48b1890a07af5d1d6 | |
| parent | 1d1afc1957a441fc75a27517b17437d8af3b3b93 (diff) | |
cpumask: remove unused mask field from struct irqaction.
Up until 1.1.83, the primitive human tribes used struct sigaction for
interrupts. The sa_mask field was overloaded to hold a pointer to the
name.
When someone created the new "struct irqaction" they carried across
the "mask" field as a kind of ancestor worship: the fact that it was
unused makes clear its spiritual significance.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
| -rw-r--r-- | include/linux/interrupt.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 8e9e151f811e..894ed7180bff 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
| @@ -97,7 +97,6 @@ typedef irqreturn_t (*irq_handler_t)(int, void *); | |||
| 97 | struct irqaction { | 97 | struct irqaction { |
| 98 | irq_handler_t handler; | 98 | irq_handler_t handler; |
| 99 | unsigned long flags; | 99 | unsigned long flags; |
| 100 | cpumask_t mask; | ||
| 101 | const char *name; | 100 | const char *name; |
| 102 | void *dev_id; | 101 | void *dev_id; |
| 103 | struct irqaction *next; | 102 | struct irqaction *next; |
