diff options
69 files changed, 48 insertions, 129 deletions
diff --git a/arch/cris/arch-v10/kernel/time.c b/arch/cris/arch-v10/kernel/time.c index c685ba4c3387..2b73c7a5b649 100644 --- a/arch/cris/arch-v10/kernel/time.c +++ b/arch/cris/arch-v10/kernel/time.c | |||
| @@ -261,7 +261,6 @@ timer_interrupt(int irq, void *dev_id) | |||
| 261 | static struct irqaction irq2 = { | 261 | static struct irqaction irq2 = { |
| 262 | .handler = timer_interrupt, | 262 | .handler = timer_interrupt, |
| 263 | .flags = IRQF_SHARED | IRQF_DISABLED, | 263 | .flags = IRQF_SHARED | IRQF_DISABLED, |
| 264 | .mask = CPU_MASK_NONE, | ||
| 265 | .name = "timer", | 264 | .name = "timer", |
| 266 | }; | 265 | }; |
| 267 | 266 | ||
diff --git a/arch/cris/arch-v32/kernel/smp.c b/arch/cris/arch-v32/kernel/smp.c index 9dac17334640..f59a973c97ee 100644 --- a/arch/cris/arch-v32/kernel/smp.c +++ b/arch/cris/arch-v32/kernel/smp.c | |||
| @@ -65,7 +65,6 @@ static int send_ipi(int vector, int wait, cpumask_t cpu_mask); | |||
| 65 | static struct irqaction irq_ipi = { | 65 | static struct irqaction irq_ipi = { |
| 66 | .handler = crisv32_ipi_interrupt, | 66 | .handler = crisv32_ipi_interrupt, |
| 67 | .flags = IRQF_DISABLED, | 67 | .flags = IRQF_DISABLED, |
| 68 | .mask = CPU_MASK_NONE, | ||
| 69 | .name = "ipi", | 68 | .name = "ipi", |
| 70 | }; | 69 | }; |
| 71 | 70 | ||
diff --git a/arch/cris/arch-v32/kernel/time.c b/arch/cris/arch-v32/kernel/time.c index 3a13dd6e0a9a..65633d0dab86 100644 --- a/arch/cris/arch-v32/kernel/time.c +++ b/arch/cris/arch-v32/kernel/time.c | |||
| @@ -267,7 +267,6 @@ timer_interrupt(int irq, void *dev_id) | |||
| 267 | static struct irqaction irq_timer = { | 267 | static struct irqaction irq_timer = { |
| 268 | .handler = timer_interrupt, | 268 | .handler = timer_interrupt, |
| 269 | .flags = IRQF_SHARED | IRQF_DISABLED, | 269 | .flags = IRQF_SHARED | IRQF_DISABLED, |
| 270 | .mask = CPU_MASK_NONE, | ||
| 271 | .name = "timer" | 270 | .name = "timer" |
| 272 | }; | 271 | }; |
| 273 | 272 | ||
diff --git a/arch/frv/kernel/irq-mb93091.c b/arch/frv/kernel/irq-mb93091.c index 9e38f99bbab8..4dd9adaf115a 100644 --- a/arch/frv/kernel/irq-mb93091.c +++ b/arch/frv/kernel/irq-mb93091.c | |||
| @@ -109,28 +109,24 @@ static struct irqaction fpga_irq[4] = { | |||
| 109 | [0] = { | 109 | [0] = { |
| 110 | .handler = fpga_interrupt, | 110 | .handler = fpga_interrupt, |
| 111 | .flags = IRQF_DISABLED | IRQF_SHARED, | 111 | .flags = IRQF_DISABLED | IRQF_SHARED, |
| 112 | .mask = CPU_MASK_NONE, | ||
| 113 | .name = "fpga.0", | 112 | .name = "fpga.0", |
| 114 | .dev_id = (void *) 0x0028UL, | 113 | .dev_id = (void *) 0x0028UL, |
| 115 | }, | 114 | }, |
| 116 | [1] = { | 115 | [1] = { |
| 117 | .handler = fpga_interrupt, | 116 | .handler = fpga_interrupt, |
| 118 | .flags = IRQF_DISABLED | IRQF_SHARED, | 117 | .flags = IRQF_DISABLED | IRQF_SHARED, |
| 119 | .mask = CPU_MASK_NONE, | ||
| 120 | .name = "fpga.1", | 118 | .name = "fpga.1", |
| 121 | .dev_id = (void *) 0x0050UL, | 119 | .dev_id = (void *) 0x0050UL, |
| 122 | }, | 120 | }, |
| 123 | [2] = { | 121 | [2] = { |
| 124 | .handler = fpga_interrupt, | 122 | .handler = fpga_interrupt, |
| 125 | .flags = IRQF_DISABLED | IRQF_SHARED, | 123 | .flags = IRQF_DISABLED | IRQF_SHARED, |
| 126 | .mask = CPU_MASK_NONE, | ||
| 127 | .name = "fpga.2", | 124 | .name = "fpga.2", |
| 128 | .dev_id = (void *) 0x1c00UL, | 125 | .dev_id = (void *) 0x1c00UL, |
| 129 | }, | 126 | }, |
| 130 | [3] = { | 127 | [3] = { |
| 131 | .handler = fpga_interrupt, | 128 | .handler = fpga_interrupt, |
| 132 | .flags = IRQF_DISABLED | IRQF_SHARED, | 129 | .flags = IRQF_DISABLED | IRQF_SHARED, |
| 133 | .mask = CPU_MASK_NONE, | ||
| 134 | .name = "fpga.3", | 130 | .name = "fpga.3", |
| 135 | .dev_id = (void *) 0x6386UL, | 131 | .dev_id = (void *) 0x6386UL, |
| 136 | } | 132 | } |
diff --git a/arch/frv/kernel/irq-mb93093.c b/arch/frv/kernel/irq-mb93093.c index 3c2752ca9775..e45209031873 100644 --- a/arch/frv/kernel/irq-mb93093.c +++ b/arch/frv/kernel/irq-mb93093.c | |||
| @@ -108,7 +108,6 @@ static struct irqaction fpga_irq[1] = { | |||
| 108 | [0] = { | 108 | [0] = { |
| 109 | .handler = fpga_interrupt, | 109 | .handler = fpga_interrupt, |
| 110 | .flags = IRQF_DISABLED, | 110 | .flags = IRQF_DISABLED, |
| 111 | .mask = CPU_MASK_NONE, | ||
| 112 | .name = "fpga.0", | 111 | .name = "fpga.0", |
| 113 | .dev_id = (void *) 0x0700UL, | 112 | .dev_id = (void *) 0x0700UL, |
| 114 | } | 113 | } |
diff --git a/arch/frv/kernel/irq-mb93493.c b/arch/frv/kernel/irq-mb93493.c index 7754c7338e4b..ba55ecdfb245 100644 --- a/arch/frv/kernel/irq-mb93493.c +++ b/arch/frv/kernel/irq-mb93493.c | |||
| @@ -120,14 +120,12 @@ static struct irqaction mb93493_irq[2] = { | |||
| 120 | [0] = { | 120 | [0] = { |
| 121 | .handler = mb93493_interrupt, | 121 | .handler = mb93493_interrupt, |
| 122 | .flags = IRQF_DISABLED | IRQF_SHARED, | 122 | .flags = IRQF_DISABLED | IRQF_SHARED, |
| 123 | .mask = CPU_MASK_NONE, | ||
| 124 | .name = "mb93493.0", | 123 | .name = "mb93493.0", |
| 125 | .dev_id = (void *) __addr_MB93493_IQSR(0), | 124 | .dev_id = (void *) __addr_MB93493_IQSR(0), |
| 126 | }, | 125 | }, |
| 127 | [1] = { | 126 | [1] = { |
| 128 | .handler = mb93493_interrupt, | 127 | .handler = mb93493_interrupt, |
| 129 | .flags = IRQF_DISABLED | IRQF_SHARED, | 128 | .flags = IRQF_DISABLED | IRQF_SHARED, |
| 130 | .mask = CPU_MASK_NONE, | ||
| 131 | .name = "mb93493.1", | 129 | .name = "mb93493.1", |
| 132 | .dev_id = (void *) __addr_MB93493_IQSR(1), | 130 | .dev_id = (void *) __addr_MB93493_IQSR(1), |
| 133 | } | 131 | } |
diff --git a/arch/frv/kernel/time.c b/arch/frv/kernel/time.c index 69f6a4ef5d61..fb0ce7577225 100644 --- a/arch/frv/kernel/time.c +++ b/arch/frv/kernel/time.c | |||
| @@ -45,7 +45,6 @@ static irqreturn_t timer_interrupt(int irq, void *dummy); | |||
| 45 | static struct irqaction timer_irq = { | 45 | static struct irqaction timer_irq = { |
| 46 | .handler = timer_interrupt, | 46 | .handler = timer_interrupt, |
| 47 | .flags = IRQF_DISABLED, | 47 | .flags = IRQF_DISABLED, |
| 48 | .mask = CPU_MASK_NONE, | ||
| 49 | .name = "timer", | 48 | .name = "timer", |
| 50 | }; | 49 | }; |
| 51 | 50 | ||
diff --git a/arch/h8300/kernel/timer/itu.c b/arch/h8300/kernel/timer/itu.c index d1c926596b08..4883ba7103a8 100644 --- a/arch/h8300/kernel/timer/itu.c +++ b/arch/h8300/kernel/timer/itu.c | |||
| @@ -60,7 +60,6 @@ static struct irqaction itu_irq = { | |||
| 60 | .name = "itu", | 60 | .name = "itu", |
| 61 | .handler = timer_interrupt, | 61 | .handler = timer_interrupt, |
| 62 | .flags = IRQF_DISABLED | IRQF_TIMER, | 62 | .flags = IRQF_DISABLED | IRQF_TIMER, |
| 63 | .mask = CPU_MASK_NONE, | ||
| 64 | }; | 63 | }; |
| 65 | 64 | ||
| 66 | static const int __initdata divide_rate[] = {1, 2, 4, 8}; | 65 | static const int __initdata divide_rate[] = {1, 2, 4, 8}; |
diff --git a/arch/h8300/kernel/timer/timer16.c b/arch/h8300/kernel/timer/timer16.c index e14271b72119..042dbb53f3fb 100644 --- a/arch/h8300/kernel/timer/timer16.c +++ b/arch/h8300/kernel/timer/timer16.c | |||
| @@ -55,7 +55,6 @@ static struct irqaction timer16_irq = { | |||
| 55 | .name = "timer-16", | 55 | .name = "timer-16", |
| 56 | .handler = timer_interrupt, | 56 | .handler = timer_interrupt, |
| 57 | .flags = IRQF_DISABLED | IRQF_TIMER, | 57 | .flags = IRQF_DISABLED | IRQF_TIMER, |
| 58 | .mask = CPU_MASK_NONE, | ||
| 59 | }; | 58 | }; |
| 60 | 59 | ||
| 61 | static const int __initdata divide_rate[] = {1, 2, 4, 8}; | 60 | static const int __initdata divide_rate[] = {1, 2, 4, 8}; |
diff --git a/arch/h8300/kernel/timer/timer8.c b/arch/h8300/kernel/timer/timer8.c index 0556d7c7bea6..38be0cabef0d 100644 --- a/arch/h8300/kernel/timer/timer8.c +++ b/arch/h8300/kernel/timer/timer8.c | |||
| @@ -75,7 +75,6 @@ static struct irqaction timer8_irq = { | |||
| 75 | .name = "timer-8", | 75 | .name = "timer-8", |
| 76 | .handler = timer_interrupt, | 76 | .handler = timer_interrupt, |
| 77 | .flags = IRQF_DISABLED | IRQF_TIMER, | 77 | .flags = IRQF_DISABLED | IRQF_TIMER, |
| 78 | .mask = CPU_MASK_NONE, | ||
| 79 | }; | 78 | }; |
| 80 | 79 | ||
| 81 | static const int __initdata divide_rate[] = {8, 64, 8192}; | 80 | static const int __initdata divide_rate[] = {8, 64, 8192}; |
diff --git a/arch/h8300/kernel/timer/tpu.c b/arch/h8300/kernel/timer/tpu.c index df7f453a9673..ad383caae196 100644 --- a/arch/h8300/kernel/timer/tpu.c +++ b/arch/h8300/kernel/timer/tpu.c | |||
| @@ -65,7 +65,6 @@ static struct irqaction tpu_irq = { | |||
| 65 | .name = "tpu", | 65 | .name = "tpu", |
| 66 | .handler = timer_interrupt, | 66 | .handler = timer_interrupt, |
| 67 | .flags = IRQF_DISABLED | IRQF_TIMER, | 67 | .flags = IRQF_DISABLED | IRQF_TIMER, |
| 68 | .mask = CPU_MASK_NONE, | ||
| 69 | }; | 68 | }; |
| 70 | 69 | ||
| 71 | const static int __initdata divide_rate[] = { | 70 | const static int __initdata divide_rate[] = { |
diff --git a/arch/ia64/include/asm/topology.h b/arch/ia64/include/asm/topology.h index 3193f4417e16..f260dcf21515 100644 --- a/arch/ia64/include/asm/topology.h +++ b/arch/ia64/include/asm/topology.h | |||
| @@ -44,11 +44,6 @@ | |||
| 44 | #define parent_node(nid) (nid) | 44 | #define parent_node(nid) (nid) |
| 45 | 45 | ||
| 46 | /* | 46 | /* |
| 47 | * Returns the number of the first CPU on Node 'node'. | ||
| 48 | */ | ||
| 49 | #define node_to_first_cpu(node) (cpumask_first(cpumask_of_node(node))) | ||
| 50 | |||
| 51 | /* | ||
| 52 | * Determines the node for a given pci bus | 47 | * Determines the node for a given pci bus |
| 53 | */ | 48 | */ |
| 54 | #define pcibus_to_node(bus) PCI_CONTROLLER(bus)->node | 49 | #define pcibus_to_node(bus) PCI_CONTROLLER(bus)->node |
diff --git a/arch/m32r/kernel/time.c b/arch/m32r/kernel/time.c index 6ea017727cce..cada3ba4b990 100644 --- a/arch/m32r/kernel/time.c +++ b/arch/m32r/kernel/time.c | |||
| @@ -230,7 +230,6 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id) | |||
| 230 | static struct irqaction irq0 = { | 230 | static struct irqaction irq0 = { |
| 231 | .handler = timer_interrupt, | 231 | .handler = timer_interrupt, |
| 232 | .flags = IRQF_DISABLED, | 232 | .flags = IRQF_DISABLED, |
| 233 | .mask = CPU_MASK_NONE, | ||
| 234 | .name = "MFT2", | 233 | .name = "MFT2", |
| 235 | }; | 234 | }; |
| 236 | 235 | ||
diff --git a/arch/mips/cobalt/irq.c b/arch/mips/cobalt/irq.c index ac4fb912649d..cb9bf820fe53 100644 --- a/arch/mips/cobalt/irq.c +++ b/arch/mips/cobalt/irq.c | |||
| @@ -47,7 +47,6 @@ asmlinkage void plat_irq_dispatch(void) | |||
| 47 | 47 | ||
| 48 | static struct irqaction cascade = { | 48 | static struct irqaction cascade = { |
| 49 | .handler = no_action, | 49 | .handler = no_action, |
| 50 | .mask = CPU_MASK_NONE, | ||
| 51 | .name = "cascade", | 50 | .name = "cascade", |
| 52 | }; | 51 | }; |
| 53 | 52 | ||
diff --git a/arch/mips/emma/markeins/irq.c b/arch/mips/emma/markeins/irq.c index 2bbc41a1623c..43828ae796ec 100644 --- a/arch/mips/emma/markeins/irq.c +++ b/arch/mips/emma/markeins/irq.c | |||
| @@ -186,7 +186,6 @@ void emma2rh_gpio_irq_init(void) | |||
| 186 | static struct irqaction irq_cascade = { | 186 | static struct irqaction irq_cascade = { |
| 187 | .handler = no_action, | 187 | .handler = no_action, |
| 188 | .flags = 0, | 188 | .flags = 0, |
| 189 | .mask = CPU_MASK_NONE, | ||
| 190 | .name = "cascade", | 189 | .name = "cascade", |
| 191 | .dev_id = NULL, | 190 | .dev_id = NULL, |
| 192 | .next = NULL, | 191 | .next = NULL, |
diff --git a/arch/mips/include/asm/mach-ip27/topology.h b/arch/mips/include/asm/mach-ip27/topology.h index 55d481569a1f..07547231e078 100644 --- a/arch/mips/include/asm/mach-ip27/topology.h +++ b/arch/mips/include/asm/mach-ip27/topology.h | |||
| @@ -26,7 +26,6 @@ extern struct cpuinfo_ip27 sn_cpu_info[NR_CPUS]; | |||
| 26 | #define parent_node(node) (node) | 26 | #define parent_node(node) (node) |
| 27 | #define node_to_cpumask(node) (hub_data(node)->h_cpus) | 27 | #define node_to_cpumask(node) (hub_data(node)->h_cpus) |
| 28 | #define cpumask_of_node(node) (&hub_data(node)->h_cpus) | 28 | #define cpumask_of_node(node) (&hub_data(node)->h_cpus) |
| 29 | #define node_to_first_cpu(node) (cpumask_first(cpumask_of_node(node))) | ||
| 30 | struct pci_bus; | 29 | struct pci_bus; |
| 31 | extern int pcibus_to_node(struct pci_bus *); | 30 | extern int pcibus_to_node(struct pci_bus *); |
| 32 | 31 | ||
diff --git a/arch/mips/jazz/irq.c b/arch/mips/jazz/irq.c index 03965cb1b252..d9b6a5b5399d 100644 --- a/arch/mips/jazz/irq.c +++ b/arch/mips/jazz/irq.c | |||
| @@ -134,7 +134,6 @@ static irqreturn_t r4030_timer_interrupt(int irq, void *dev_id) | |||
| 134 | static struct irqaction r4030_timer_irqaction = { | 134 | static struct irqaction r4030_timer_irqaction = { |
| 135 | .handler = r4030_timer_interrupt, | 135 | .handler = r4030_timer_interrupt, |
| 136 | .flags = IRQF_DISABLED, | 136 | .flags = IRQF_DISABLED, |
| 137 | .mask = CPU_MASK_CPU0, | ||
| 138 | .name = "R4030 timer", | 137 | .name = "R4030 timer", |
| 139 | }; | 138 | }; |
| 140 | 139 | ||
diff --git a/arch/mips/kernel/cevt-bcm1480.c b/arch/mips/kernel/cevt-bcm1480.c index b820661678b0..a5182a207696 100644 --- a/arch/mips/kernel/cevt-bcm1480.c +++ b/arch/mips/kernel/cevt-bcm1480.c | |||
| @@ -144,7 +144,6 @@ void __cpuinit sb1480_clockevent_init(void) | |||
| 144 | 144 | ||
| 145 | action->handler = sibyte_counter_handler; | 145 | action->handler = sibyte_counter_handler; |
| 146 | action->flags = IRQF_DISABLED | IRQF_PERCPU; | 146 | action->flags = IRQF_DISABLED | IRQF_PERCPU; |
| 147 | action->mask = cpumask_of_cpu(cpu); | ||
| 148 | action->name = name; | 147 | action->name = name; |
| 149 | action->dev_id = cd; | 148 | action->dev_id = cd; |
| 150 | 149 | ||
diff --git a/arch/mips/kernel/cevt-sb1250.c b/arch/mips/kernel/cevt-sb1250.c index a2eebaafda52..340f53e5c6b1 100644 --- a/arch/mips/kernel/cevt-sb1250.c +++ b/arch/mips/kernel/cevt-sb1250.c | |||
| @@ -143,7 +143,6 @@ void __cpuinit sb1250_clockevent_init(void) | |||
| 143 | 143 | ||
| 144 | action->handler = sibyte_counter_handler; | 144 | action->handler = sibyte_counter_handler; |
| 145 | action->flags = IRQF_DISABLED | IRQF_PERCPU; | 145 | action->flags = IRQF_DISABLED | IRQF_PERCPU; |
| 146 | action->mask = cpumask_of_cpu(cpu); | ||
| 147 | action->name = name; | 146 | action->name = name; |
| 148 | action->dev_id = cd; | 147 | action->dev_id = cd; |
| 149 | 148 | ||
diff --git a/arch/mips/kernel/i8253.c b/arch/mips/kernel/i8253.c index f4d187825f96..689719e34f08 100644 --- a/arch/mips/kernel/i8253.c +++ b/arch/mips/kernel/i8253.c | |||
| @@ -98,7 +98,6 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id) | |||
| 98 | static struct irqaction irq0 = { | 98 | static struct irqaction irq0 = { |
| 99 | .handler = timer_interrupt, | 99 | .handler = timer_interrupt, |
| 100 | .flags = IRQF_DISABLED | IRQF_NOBALANCING, | 100 | .flags = IRQF_DISABLED | IRQF_NOBALANCING, |
| 101 | .mask = CPU_MASK_NONE, | ||
| 102 | .name = "timer" | 101 | .name = "timer" |
| 103 | }; | 102 | }; |
| 104 | 103 | ||
| @@ -121,7 +120,6 @@ void __init setup_pit_timer(void) | |||
| 121 | cd->min_delta_ns = clockevent_delta2ns(0xF, cd); | 120 | cd->min_delta_ns = clockevent_delta2ns(0xF, cd); |
| 122 | clockevents_register_device(cd); | 121 | clockevents_register_device(cd); |
| 123 | 122 | ||
| 124 | irq0.mask = cpumask_of_cpu(cpu); | ||
| 125 | setup_irq(0, &irq0); | 123 | setup_irq(0, &irq0); |
| 126 | } | 124 | } |
| 127 | 125 | ||
diff --git a/arch/mips/kernel/i8259.c b/arch/mips/kernel/i8259.c index 413bd1d37f54..01c0885a8061 100644 --- a/arch/mips/kernel/i8259.c +++ b/arch/mips/kernel/i8259.c | |||
| @@ -306,7 +306,6 @@ static void init_8259A(int auto_eoi) | |||
| 306 | */ | 306 | */ |
| 307 | static struct irqaction irq2 = { | 307 | static struct irqaction irq2 = { |
| 308 | .handler = no_action, | 308 | .handler = no_action, |
| 309 | .mask = CPU_MASK_NONE, | ||
| 310 | .name = "cascade", | 309 | .name = "cascade", |
| 311 | }; | 310 | }; |
| 312 | 311 | ||
diff --git a/arch/mips/lasat/interrupt.c b/arch/mips/lasat/interrupt.c index d1ac7a25c856..1353fb135ed3 100644 --- a/arch/mips/lasat/interrupt.c +++ b/arch/mips/lasat/interrupt.c | |||
| @@ -104,7 +104,6 @@ asmlinkage void plat_irq_dispatch(void) | |||
| 104 | 104 | ||
| 105 | static struct irqaction cascade = { | 105 | static struct irqaction cascade = { |
| 106 | .handler = no_action, | 106 | .handler = no_action, |
| 107 | .mask = CPU_MASK_NONE, | ||
| 108 | .name = "cascade", | 107 | .name = "cascade", |
| 109 | }; | 108 | }; |
| 110 | 109 | ||
diff --git a/arch/mips/lemote/lm2e/irq.c b/arch/mips/lemote/lm2e/irq.c index 3e0b7beb1009..1d0a09f3b832 100644 --- a/arch/mips/lemote/lm2e/irq.c +++ b/arch/mips/lemote/lm2e/irq.c | |||
| @@ -92,7 +92,6 @@ asmlinkage void plat_irq_dispatch(void) | |||
| 92 | 92 | ||
| 93 | static struct irqaction cascade_irqaction = { | 93 | static struct irqaction cascade_irqaction = { |
| 94 | .handler = no_action, | 94 | .handler = no_action, |
| 95 | .mask = CPU_MASK_NONE, | ||
| 96 | .name = "cascade", | 95 | .name = "cascade", |
| 97 | }; | 96 | }; |
| 98 | 97 | ||
diff --git a/arch/mips/sgi-ip27/ip27-nmi.c b/arch/mips/sgi-ip27/ip27-nmi.c index a1f21d9421e8..6c5a630566f9 100644 --- a/arch/mips/sgi-ip27/ip27-nmi.c +++ b/arch/mips/sgi-ip27/ip27-nmi.c | |||
| @@ -219,7 +219,7 @@ cont_nmi_dump(void) | |||
| 219 | if (i == 1000) { | 219 | if (i == 1000) { |
| 220 | for_each_online_node(node) | 220 | for_each_online_node(node) |
| 221 | if (NODEPDA(node)->dump_count == 0) { | 221 | if (NODEPDA(node)->dump_count == 0) { |
| 222 | cpu = node_to_first_cpu(node); | 222 | cpu = cpumask_first(cpumask_of_node(node)); |
| 223 | for (n=0; n < CNODE_NUM_CPUS(node); cpu++, n++) { | 223 | for (n=0; n < CNODE_NUM_CPUS(node); cpu++, n++) { |
| 224 | CPUMASK_SETB(nmied_cpus, cpu); | 224 | CPUMASK_SETB(nmied_cpus, cpu); |
| 225 | /* | 225 | /* |
diff --git a/arch/mips/sgi-ip32/ip32-irq.c b/arch/mips/sgi-ip32/ip32-irq.c index 0aefc5319a03..83a0b3c359da 100644 --- a/arch/mips/sgi-ip32/ip32-irq.c +++ b/arch/mips/sgi-ip32/ip32-irq.c | |||
| @@ -115,14 +115,12 @@ extern irqreturn_t crime_cpuerr_intr(int irq, void *dev_id); | |||
| 115 | struct irqaction memerr_irq = { | 115 | struct irqaction memerr_irq = { |
| 116 | .handler = crime_memerr_intr, | 116 | .handler = crime_memerr_intr, |
| 117 | .flags = IRQF_DISABLED, | 117 | .flags = IRQF_DISABLED, |
| 118 | .mask = CPU_MASK_NONE, | ||
| 119 | .name = "CRIME memory error", | 118 | .name = "CRIME memory error", |
| 120 | }; | 119 | }; |
| 121 | 120 | ||
| 122 | struct irqaction cpuerr_irq = { | 121 | struct irqaction cpuerr_irq = { |
| 123 | .handler = crime_cpuerr_intr, | 122 | .handler = crime_cpuerr_intr, |
| 124 | .flags = IRQF_DISABLED, | 123 | .flags = IRQF_DISABLED, |
| 125 | .mask = CPU_MASK_NONE, | ||
| 126 | .name = "CRIME CPU error", | 124 | .name = "CRIME CPU error", |
| 127 | }; | 125 | }; |
| 128 | 126 | ||
diff --git a/arch/mips/sni/rm200.c b/arch/mips/sni/rm200.c index b4352a0c8151..5e687819cbc2 100644 --- a/arch/mips/sni/rm200.c +++ b/arch/mips/sni/rm200.c | |||
| @@ -359,7 +359,8 @@ void sni_rm200_init_8259A(void) | |||
| 359 | * IRQ2 is cascade interrupt to second interrupt controller | 359 | * IRQ2 is cascade interrupt to second interrupt controller |
| 360 | */ | 360 | */ |
| 361 | static struct irqaction sni_rm200_irq2 = { | 361 | static struct irqaction sni_rm200_irq2 = { |
| 362 | no_action, 0, CPU_MASK_NONE, "cascade", NULL, NULL | 362 | .handler = no_action, |
| 363 | .name = "cascade", | ||
| 363 | }; | 364 | }; |
| 364 | 365 | ||
| 365 | static struct resource sni_rm200_pic1_resource = { | 366 | static struct resource sni_rm200_pic1_resource = { |
diff --git a/arch/mips/vr41xx/common/irq.c b/arch/mips/vr41xx/common/irq.c index 92dd1a0ca352..9cc389109b19 100644 --- a/arch/mips/vr41xx/common/irq.c +++ b/arch/mips/vr41xx/common/irq.c | |||
| @@ -32,7 +32,6 @@ static irq_cascade_t irq_cascade[NR_IRQS] __cacheline_aligned; | |||
| 32 | 32 | ||
| 33 | static struct irqaction cascade_irqaction = { | 33 | static struct irqaction cascade_irqaction = { |
| 34 | .handler = no_action, | 34 | .handler = no_action, |
| 35 | .mask = CPU_MASK_NONE, | ||
| 36 | .name = "cascade", | 35 | .name = "cascade", |
| 37 | }; | 36 | }; |
| 38 | 37 | ||
diff --git a/arch/mn10300/kernel/time.c b/arch/mn10300/kernel/time.c index e4606586f94c..395caf01b909 100644 --- a/arch/mn10300/kernel/time.c +++ b/arch/mn10300/kernel/time.c | |||
| @@ -37,7 +37,6 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id); | |||
| 37 | static struct irqaction timer_irq = { | 37 | static struct irqaction timer_irq = { |
| 38 | .handler = timer_interrupt, | 38 | .handler = timer_interrupt, |
| 39 | .flags = IRQF_DISABLED | IRQF_SHARED | IRQF_TIMER, | 39 | .flags = IRQF_DISABLED | IRQF_SHARED | IRQF_TIMER, |
| 40 | .mask = CPU_MASK_NONE, | ||
| 41 | .name = "timer", | 40 | .name = "timer", |
| 42 | }; | 41 | }; |
| 43 | 42 | ||
diff --git a/arch/powerpc/include/asm/topology.h b/arch/powerpc/include/asm/topology.h index 375258559ae6..054a16d68082 100644 --- a/arch/powerpc/include/asm/topology.h +++ b/arch/powerpc/include/asm/topology.h | |||
| @@ -24,11 +24,6 @@ static inline cpumask_t node_to_cpumask(int node) | |||
| 24 | 24 | ||
| 25 | #define cpumask_of_node(node) (&numa_cpumask_lookup_table[node]) | 25 | #define cpumask_of_node(node) (&numa_cpumask_lookup_table[node]) |
| 26 | 26 | ||
| 27 | static inline int node_to_first_cpu(int node) | ||
| 28 | { | ||
| 29 | return cpumask_first(cpumask_of_node(node)); | ||
| 30 | } | ||
| 31 | |||
| 32 | int of_node_to_nid(struct device_node *device); | 27 | int of_node_to_nid(struct device_node *device); |
| 33 | 28 | ||
| 34 | struct pci_bus; | 29 | struct pci_bus; |
diff --git a/arch/powerpc/platforms/85xx/mpc85xx_cds.c b/arch/powerpc/platforms/85xx/mpc85xx_cds.c index 0a9e49104bdc..458d91fba91d 100644 --- a/arch/powerpc/platforms/85xx/mpc85xx_cds.c +++ b/arch/powerpc/platforms/85xx/mpc85xx_cds.c | |||
| @@ -179,7 +179,6 @@ static irqreturn_t mpc85xx_8259_cascade_action(int irq, void *dev_id) | |||
| 179 | static struct irqaction mpc85xxcds_8259_irqaction = { | 179 | static struct irqaction mpc85xxcds_8259_irqaction = { |
| 180 | .handler = mpc85xx_8259_cascade_action, | 180 | .handler = mpc85xx_8259_cascade_action, |
| 181 | .flags = IRQF_SHARED, | 181 | .flags = IRQF_SHARED, |
| 182 | .mask = CPU_MASK_NONE, | ||
| 183 | .name = "8259 cascade", | 182 | .name = "8259 cascade", |
| 184 | }; | 183 | }; |
| 185 | #endif /* PPC_I8259 */ | 184 | #endif /* PPC_I8259 */ |
diff --git a/arch/powerpc/platforms/8xx/m8xx_setup.c b/arch/powerpc/platforms/8xx/m8xx_setup.c index 0d9f75c74f8c..385acfc48397 100644 --- a/arch/powerpc/platforms/8xx/m8xx_setup.c +++ b/arch/powerpc/platforms/8xx/m8xx_setup.c | |||
| @@ -44,7 +44,6 @@ static irqreturn_t timebase_interrupt(int irq, void *dev) | |||
| 44 | 44 | ||
| 45 | static struct irqaction tbint_irqaction = { | 45 | static struct irqaction tbint_irqaction = { |
| 46 | .handler = timebase_interrupt, | 46 | .handler = timebase_interrupt, |
| 47 | .mask = CPU_MASK_NONE, | ||
| 48 | .name = "tbint", | 47 | .name = "tbint", |
| 49 | }; | 48 | }; |
| 50 | 49 | ||
diff --git a/arch/powerpc/platforms/chrp/setup.c b/arch/powerpc/platforms/chrp/setup.c index 272d79a8d289..cd4ad9aea760 100644 --- a/arch/powerpc/platforms/chrp/setup.c +++ b/arch/powerpc/platforms/chrp/setup.c | |||
| @@ -472,7 +472,6 @@ static void __init chrp_find_openpic(void) | |||
| 472 | #if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(CONFIG_XMON) | 472 | #if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(CONFIG_XMON) |
| 473 | static struct irqaction xmon_irqaction = { | 473 | static struct irqaction xmon_irqaction = { |
| 474 | .handler = xmon_irq, | 474 | .handler = xmon_irq, |
| 475 | .mask = CPU_MASK_NONE, | ||
| 476 | .name = "XMON break", | 475 | .name = "XMON break", |
| 477 | }; | 476 | }; |
| 478 | #endif | 477 | #endif |
diff --git a/arch/powerpc/platforms/powermac/pic.c b/arch/powerpc/platforms/powermac/pic.c index 6d149ae8ffa7..7039d8f1d3ba 100644 --- a/arch/powerpc/platforms/powermac/pic.c +++ b/arch/powerpc/platforms/powermac/pic.c | |||
| @@ -266,7 +266,6 @@ static unsigned int pmac_pic_get_irq(void) | |||
| 266 | static struct irqaction xmon_action = { | 266 | static struct irqaction xmon_action = { |
| 267 | .handler = xmon_irq, | 267 | .handler = xmon_irq, |
| 268 | .flags = 0, | 268 | .flags = 0, |
| 269 | .mask = CPU_MASK_NONE, | ||
| 270 | .name = "NMI - XMON" | 269 | .name = "NMI - XMON" |
| 271 | }; | 270 | }; |
| 272 | #endif | 271 | #endif |
| @@ -274,7 +273,6 @@ static struct irqaction xmon_action = { | |||
| 274 | static struct irqaction gatwick_cascade_action = { | 273 | static struct irqaction gatwick_cascade_action = { |
| 275 | .handler = gatwick_action, | 274 | .handler = gatwick_action, |
| 276 | .flags = IRQF_DISABLED, | 275 | .flags = IRQF_DISABLED, |
| 277 | .mask = CPU_MASK_NONE, | ||
| 278 | .name = "cascade", | 276 | .name = "cascade", |
| 279 | }; | 277 | }; |
| 280 | 278 | ||
diff --git a/arch/powerpc/platforms/powermac/smp.c b/arch/powerpc/platforms/powermac/smp.c index bd8817b00fa4..cf1dbe758890 100644 --- a/arch/powerpc/platforms/powermac/smp.c +++ b/arch/powerpc/platforms/powermac/smp.c | |||
| @@ -385,7 +385,6 @@ static void __init psurge_dual_sync_tb(int cpu_nr) | |||
| 385 | static struct irqaction psurge_irqaction = { | 385 | static struct irqaction psurge_irqaction = { |
| 386 | .handler = psurge_primary_intr, | 386 | .handler = psurge_primary_intr, |
| 387 | .flags = IRQF_DISABLED, | 387 | .flags = IRQF_DISABLED, |
| 388 | .mask = CPU_MASK_NONE, | ||
| 389 | .name = "primary IPI", | 388 | .name = "primary IPI", |
| 390 | }; | 389 | }; |
| 391 | 390 | ||
diff --git a/arch/powerpc/sysdev/cpm1.c b/arch/powerpc/sysdev/cpm1.c index 490473ce8103..82424cd7e128 100644 --- a/arch/powerpc/sysdev/cpm1.c +++ b/arch/powerpc/sysdev/cpm1.c | |||
| @@ -119,7 +119,6 @@ static irqreturn_t cpm_error_interrupt(int irq, void *dev) | |||
| 119 | 119 | ||
| 120 | static struct irqaction cpm_error_irqaction = { | 120 | static struct irqaction cpm_error_irqaction = { |
| 121 | .handler = cpm_error_interrupt, | 121 | .handler = cpm_error_interrupt, |
| 122 | .mask = CPU_MASK_NONE, | ||
| 123 | .name = "error", | 122 | .name = "error", |
| 124 | }; | 123 | }; |
| 125 | 124 | ||
diff --git a/arch/sh/include/asm/topology.h b/arch/sh/include/asm/topology.h index 066f0fba590e..a3f239545897 100644 --- a/arch/sh/include/asm/topology.h +++ b/arch/sh/include/asm/topology.h | |||
| @@ -33,7 +33,6 @@ | |||
| 33 | 33 | ||
| 34 | #define node_to_cpumask(node) ((void)node, cpu_online_map) | 34 | #define node_to_cpumask(node) ((void)node, cpu_online_map) |
| 35 | #define cpumask_of_node(node) ((void)node, cpu_online_mask) | 35 | #define cpumask_of_node(node) ((void)node, cpu_online_mask) |
| 36 | #define node_to_first_cpu(node) ((void)(node),0) | ||
| 37 | 36 | ||
| 38 | #define pcibus_to_node(bus) ((void)(bus), -1) | 37 | #define pcibus_to_node(bus) ((void)(bus), -1) |
| 39 | #define pcibus_to_cpumask(bus) (pcibus_to_node(bus) == -1 ? \ | 38 | #define pcibus_to_cpumask(bus) (pcibus_to_node(bus) == -1 ? \ |
diff --git a/arch/sh/kernel/time_64.c b/arch/sh/kernel/time_64.c index 59d2a03e8b3c..988c77c37231 100644 --- a/arch/sh/kernel/time_64.c +++ b/arch/sh/kernel/time_64.c | |||
| @@ -284,7 +284,6 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id) | |||
| 284 | static struct irqaction irq0 = { | 284 | static struct irqaction irq0 = { |
| 285 | .handler = timer_interrupt, | 285 | .handler = timer_interrupt, |
| 286 | .flags = IRQF_DISABLED, | 286 | .flags = IRQF_DISABLED, |
| 287 | .mask = CPU_MASK_NONE, | ||
| 288 | .name = "timer", | 287 | .name = "timer", |
| 289 | }; | 288 | }; |
| 290 | 289 | ||
diff --git a/arch/sh/kernel/timers/timer-cmt.c b/arch/sh/kernel/timers/timer-cmt.c index c127293271e1..9aa348658ae3 100644 --- a/arch/sh/kernel/timers/timer-cmt.c +++ b/arch/sh/kernel/timers/timer-cmt.c | |||
| @@ -109,7 +109,6 @@ static struct irqaction cmt_irq = { | |||
| 109 | .name = "timer", | 109 | .name = "timer", |
| 110 | .handler = cmt_timer_interrupt, | 110 | .handler = cmt_timer_interrupt, |
| 111 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, | 111 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, |
| 112 | .mask = CPU_MASK_NONE, | ||
| 113 | }; | 112 | }; |
| 114 | 113 | ||
| 115 | static void cmt_clk_init(struct clk *clk) | 114 | static void cmt_clk_init(struct clk *clk) |
diff --git a/arch/sh/kernel/timers/timer-mtu2.c b/arch/sh/kernel/timers/timer-mtu2.c index 9a77ae86b403..9b0ef0126479 100644 --- a/arch/sh/kernel/timers/timer-mtu2.c +++ b/arch/sh/kernel/timers/timer-mtu2.c | |||
| @@ -115,7 +115,6 @@ static struct irqaction mtu2_irq = { | |||
| 115 | .name = "timer", | 115 | .name = "timer", |
| 116 | .handler = mtu2_timer_interrupt, | 116 | .handler = mtu2_timer_interrupt, |
| 117 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, | 117 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, |
| 118 | .mask = CPU_MASK_NONE, | ||
| 119 | }; | 118 | }; |
| 120 | 119 | ||
| 121 | static unsigned int divisors[] = { 1, 4, 16, 64, 1, 1, 256 }; | 120 | static unsigned int divisors[] = { 1, 4, 16, 64, 1, 1, 256 }; |
diff --git a/arch/sh/kernel/timers/timer-tmu.c b/arch/sh/kernel/timers/timer-tmu.c index 10b5a6f17cc0..c5d3396f5960 100644 --- a/arch/sh/kernel/timers/timer-tmu.c +++ b/arch/sh/kernel/timers/timer-tmu.c | |||
| @@ -162,7 +162,6 @@ static struct irqaction tmu0_irq = { | |||
| 162 | .name = "periodic/oneshot timer", | 162 | .name = "periodic/oneshot timer", |
| 163 | .handler = tmu_timer_interrupt, | 163 | .handler = tmu_timer_interrupt, |
| 164 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, | 164 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, |
| 165 | .mask = CPU_MASK_NONE, | ||
| 166 | }; | 165 | }; |
| 167 | 166 | ||
| 168 | static void __init tmu_clk_init(struct clk *clk) | 167 | static void __init tmu_clk_init(struct clk *clk) |
diff --git a/arch/sparc/include/asm/topology_64.h b/arch/sparc/include/asm/topology_64.h index 5bc0b8fd6374..2770f64fdc3b 100644 --- a/arch/sparc/include/asm/topology_64.h +++ b/arch/sparc/include/asm/topology_64.h | |||
| @@ -28,11 +28,6 @@ static inline cpumask_t node_to_cpumask(int node) | |||
| 28 | #define node_to_cpumask_ptr_next(v, node) \ | 28 | #define node_to_cpumask_ptr_next(v, node) \ |
| 29 | v = &(numa_cpumask_lookup_table[node]) | 29 | v = &(numa_cpumask_lookup_table[node]) |
| 30 | 30 | ||
| 31 | static inline int node_to_first_cpu(int node) | ||
| 32 | { | ||
| 33 | return cpumask_first(cpumask_of_node(node)); | ||
| 34 | } | ||
| 35 | |||
| 36 | struct pci_bus; | 31 | struct pci_bus; |
| 37 | #ifdef CONFIG_PCI | 32 | #ifdef CONFIG_PCI |
| 38 | extern int pcibus_to_node(struct pci_bus *pbus); | 33 | extern int pcibus_to_node(struct pci_bus *pbus); |
diff --git a/arch/sparc/kernel/irq_32.c b/arch/sparc/kernel/irq_32.c index 44dd5ee64339..ad800b80c718 100644 --- a/arch/sparc/kernel/irq_32.c +++ b/arch/sparc/kernel/irq_32.c | |||
| @@ -439,7 +439,6 @@ static int request_fast_irq(unsigned int irq, | |||
| 439 | flush_cache_all(); | 439 | flush_cache_all(); |
| 440 | 440 | ||
| 441 | action->flags = irqflags; | 441 | action->flags = irqflags; |
| 442 | cpus_clear(action->mask); | ||
| 443 | action->name = devname; | 442 | action->name = devname; |
| 444 | action->dev_id = NULL; | 443 | action->dev_id = NULL; |
| 445 | action->next = NULL; | 444 | action->next = NULL; |
| @@ -574,7 +573,6 @@ int request_irq(unsigned int irq, | |||
| 574 | 573 | ||
| 575 | action->handler = handler; | 574 | action->handler = handler; |
| 576 | action->flags = irqflags; | 575 | action->flags = irqflags; |
| 577 | cpus_clear(action->mask); | ||
| 578 | action->name = devname; | 576 | action->name = devname; |
| 579 | action->next = NULL; | 577 | action->next = NULL; |
| 580 | action->dev_id = dev_id; | 578 | action->dev_id = dev_id; |
diff --git a/arch/sparc/kernel/sun4d_irq.c b/arch/sparc/kernel/sun4d_irq.c index 3369fef5b4b3..ab036a72de5a 100644 --- a/arch/sparc/kernel/sun4d_irq.c +++ b/arch/sparc/kernel/sun4d_irq.c | |||
| @@ -326,7 +326,6 @@ int sun4d_request_irq(unsigned int irq, | |||
| 326 | 326 | ||
| 327 | action->handler = handler; | 327 | action->handler = handler; |
| 328 | action->flags = irqflags; | 328 | action->flags = irqflags; |
| 329 | cpus_clear(action->mask); | ||
| 330 | action->name = devname; | 329 | action->name = devname; |
| 331 | action->next = NULL; | 330 | action->next = NULL; |
| 332 | action->dev_id = dev_id; | 331 | action->dev_id = dev_id; |
diff --git a/arch/x86/include/asm/topology.h b/arch/x86/include/asm/topology.h index 77cfb2cfb386..744299c0b774 100644 --- a/arch/x86/include/asm/topology.h +++ b/arch/x86/include/asm/topology.h | |||
| @@ -217,10 +217,6 @@ static inline cpumask_t node_to_cpumask(int node) | |||
| 217 | { | 217 | { |
| 218 | return cpu_online_map; | 218 | return cpu_online_map; |
| 219 | } | 219 | } |
| 220 | static inline int node_to_first_cpu(int node) | ||
| 221 | { | ||
| 222 | return first_cpu(cpu_online_map); | ||
| 223 | } | ||
| 224 | 220 | ||
| 225 | static inline void setup_node_to_cpumask_map(void) { } | 221 | static inline void setup_node_to_cpumask_map(void) { } |
| 226 | 222 | ||
| @@ -237,14 +233,6 @@ static inline void setup_node_to_cpumask_map(void) { } | |||
| 237 | 233 | ||
| 238 | #include <asm-generic/topology.h> | 234 | #include <asm-generic/topology.h> |
| 239 | 235 | ||
| 240 | #ifdef CONFIG_NUMA | ||
| 241 | /* Returns the number of the first CPU on Node 'node'. */ | ||
| 242 | static inline int node_to_first_cpu(int node) | ||
| 243 | { | ||
| 244 | return cpumask_first(cpumask_of_node(node)); | ||
| 245 | } | ||
| 246 | #endif | ||
| 247 | |||
| 248 | extern cpumask_t cpu_coregroup_map(int cpu); | 236 | extern cpumask_t cpu_coregroup_map(int cpu); |
| 249 | extern const struct cpumask *cpu_coregroup_mask(int cpu); | 237 | extern const struct cpumask *cpu_coregroup_mask(int cpu); |
| 250 | 238 | ||
diff --git a/arch/x86/kernel/irqinit_32.c b/arch/x86/kernel/irqinit_32.c index bc1326105448..368b0a8836f9 100644 --- a/arch/x86/kernel/irqinit_32.c +++ b/arch/x86/kernel/irqinit_32.c | |||
| @@ -50,7 +50,6 @@ static irqreturn_t math_error_irq(int cpl, void *dev_id) | |||
| 50 | */ | 50 | */ |
| 51 | static struct irqaction fpu_irq = { | 51 | static struct irqaction fpu_irq = { |
| 52 | .handler = math_error_irq, | 52 | .handler = math_error_irq, |
| 53 | .mask = CPU_MASK_NONE, | ||
| 54 | .name = "fpu", | 53 | .name = "fpu", |
| 55 | }; | 54 | }; |
| 56 | 55 | ||
| @@ -83,7 +82,6 @@ void __init init_ISA_irqs(void) | |||
| 83 | */ | 82 | */ |
| 84 | static struct irqaction irq2 = { | 83 | static struct irqaction irq2 = { |
| 85 | .handler = no_action, | 84 | .handler = no_action, |
| 86 | .mask = CPU_MASK_NONE, | ||
| 87 | .name = "cascade", | 85 | .name = "cascade", |
| 88 | }; | 86 | }; |
| 89 | 87 | ||
diff --git a/arch/x86/kernel/irqinit_64.c b/arch/x86/kernel/irqinit_64.c index c7a49e0ffbfb..8cd10537fd46 100644 --- a/arch/x86/kernel/irqinit_64.c +++ b/arch/x86/kernel/irqinit_64.c | |||
| @@ -45,7 +45,6 @@ | |||
| 45 | 45 | ||
| 46 | static struct irqaction irq2 = { | 46 | static struct irqaction irq2 = { |
| 47 | .handler = no_action, | 47 | .handler = no_action, |
| 48 | .mask = CPU_MASK_NONE, | ||
| 49 | .name = "cascade", | 48 | .name = "cascade", |
| 50 | }; | 49 | }; |
| 51 | DEFINE_PER_CPU(vector_irq_t, vector_irq) = { | 50 | DEFINE_PER_CPU(vector_irq_t, vector_irq) = { |
diff --git a/arch/x86/kernel/mfgpt_32.c b/arch/x86/kernel/mfgpt_32.c index 8815f3c7fec7..846510b78a09 100644 --- a/arch/x86/kernel/mfgpt_32.c +++ b/arch/x86/kernel/mfgpt_32.c | |||
| @@ -348,7 +348,6 @@ static irqreturn_t mfgpt_tick(int irq, void *dev_id) | |||
| 348 | static struct irqaction mfgptirq = { | 348 | static struct irqaction mfgptirq = { |
| 349 | .handler = mfgpt_tick, | 349 | .handler = mfgpt_tick, |
| 350 | .flags = IRQF_DISABLED | IRQF_NOBALANCING, | 350 | .flags = IRQF_DISABLED | IRQF_NOBALANCING, |
| 351 | .mask = CPU_MASK_NONE, | ||
| 352 | .name = "mfgpt-timer" | 351 | .name = "mfgpt-timer" |
| 353 | }; | 352 | }; |
| 354 | 353 | ||
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c index a0d26237d7cf..b4158439bf63 100644 --- a/arch/x86/kernel/setup.c +++ b/arch/x86/kernel/setup.c | |||
| @@ -1049,7 +1049,6 @@ void __init x86_quirk_trap_init(void) | |||
| 1049 | static struct irqaction irq0 = { | 1049 | static struct irqaction irq0 = { |
| 1050 | .handler = timer_interrupt, | 1050 | .handler = timer_interrupt, |
| 1051 | .flags = IRQF_DISABLED | IRQF_NOBALANCING | IRQF_IRQPOLL | IRQF_TIMER, | 1051 | .flags = IRQF_DISABLED | IRQF_NOBALANCING | IRQF_IRQPOLL | IRQF_TIMER, |
| 1052 | .mask = CPU_MASK_NONE, | ||
| 1053 | .name = "timer" | 1052 | .name = "timer" |
| 1054 | }; | 1053 | }; |
| 1055 | 1054 | ||
diff --git a/arch/x86/kernel/time_64.c b/arch/x86/kernel/time_64.c index 241ec3923f61..5ba343e61844 100644 --- a/arch/x86/kernel/time_64.c +++ b/arch/x86/kernel/time_64.c | |||
| @@ -116,7 +116,6 @@ unsigned long __init calibrate_cpu(void) | |||
| 116 | static struct irqaction irq0 = { | 116 | static struct irqaction irq0 = { |
| 117 | .handler = timer_interrupt, | 117 | .handler = timer_interrupt, |
| 118 | .flags = IRQF_DISABLED | IRQF_IRQPOLL | IRQF_NOBALANCING | IRQF_TIMER, | 118 | .flags = IRQF_DISABLED | IRQF_IRQPOLL | IRQF_NOBALANCING | IRQF_TIMER, |
| 119 | .mask = CPU_MASK_NONE, | ||
| 120 | .name = "timer" | 119 | .name = "timer" |
| 121 | }; | 120 | }; |
| 122 | 121 | ||
| @@ -125,7 +124,6 @@ void __init hpet_time_init(void) | |||
| 125 | if (!hpet_enable()) | 124 | if (!hpet_enable()) |
| 126 | setup_pit_timer(); | 125 | setup_pit_timer(); |
| 127 | 126 | ||
| 128 | irq0.mask = cpumask_of_cpu(0); | ||
| 129 | setup_irq(0, &irq0); | 127 | setup_irq(0, &irq0); |
| 130 | } | 128 | } |
| 131 | 129 | ||
diff --git a/arch/x86/kernel/vmiclock_32.c b/arch/x86/kernel/vmiclock_32.c index 33a788d5879c..d303369a7bad 100644 --- a/arch/x86/kernel/vmiclock_32.c +++ b/arch/x86/kernel/vmiclock_32.c | |||
| @@ -202,7 +202,6 @@ static struct irqaction vmi_clock_action = { | |||
| 202 | .name = "vmi-timer", | 202 | .name = "vmi-timer", |
| 203 | .handler = vmi_timer_interrupt, | 203 | .handler = vmi_timer_interrupt, |
| 204 | .flags = IRQF_DISABLED | IRQF_NOBALANCING | IRQF_TIMER, | 204 | .flags = IRQF_DISABLED | IRQF_NOBALANCING | IRQF_TIMER, |
| 205 | .mask = CPU_MASK_ALL, | ||
| 206 | }; | 205 | }; |
| 207 | 206 | ||
| 208 | static void __devinit vmi_time_init_clockevent(void) | 207 | static void __devinit vmi_time_init_clockevent(void) |
diff --git a/drivers/base/cpu.c b/drivers/base/cpu.c index 5b257a57bc57..e62a4ccea54d 100644 --- a/drivers/base/cpu.c +++ b/drivers/base/cpu.c | |||
| @@ -119,7 +119,7 @@ static ssize_t print_cpus_map(char *buf, const struct cpumask *map) | |||
| 119 | #define print_cpus_func(type) \ | 119 | #define print_cpus_func(type) \ |
| 120 | static ssize_t print_cpus_##type(struct sysdev_class *class, char *buf) \ | 120 | static ssize_t print_cpus_##type(struct sysdev_class *class, char *buf) \ |
| 121 | { \ | 121 | { \ |
| 122 | return print_cpus_map(buf, &cpu_##type##_map); \ | 122 | return print_cpus_map(buf, cpu_##type##_mask); \ |
| 123 | } \ | 123 | } \ |
| 124 | static struct sysdev_class_attribute attr_##type##_map = \ | 124 | static struct sysdev_class_attribute attr_##type##_map = \ |
| 125 | _SYSDEV_CLASS_ATTR(type, 0444, print_cpus_##type, NULL) | 125 | _SYSDEV_CLASS_ATTR(type, 0444, print_cpus_##type, NULL) |
diff --git a/drivers/oprofile/buffer_sync.c b/drivers/oprofile/buffer_sync.c index c3ea5fa7d05a..2c9aa49e43cd 100644 --- a/drivers/oprofile/buffer_sync.c +++ b/drivers/oprofile/buffer_sync.c | |||
| @@ -574,7 +574,7 @@ int __init buffer_sync_init(void) | |||
| 574 | return 0; | 574 | return 0; |
| 575 | } | 575 | } |
| 576 | 576 | ||
| 577 | void __exit buffer_sync_cleanup(void) | 577 | void buffer_sync_cleanup(void) |
| 578 | { | 578 | { |
| 579 | free_cpumask_var(marked_cpus); | 579 | free_cpumask_var(marked_cpus); |
| 580 | } | 580 | } |
diff --git a/fs/seq_file.c b/fs/seq_file.c index a1a4cfe19210..7f40f30c55c5 100644 --- a/fs/seq_file.c +++ b/fs/seq_file.c | |||
| @@ -513,7 +513,7 @@ int seq_bitmap(struct seq_file *m, const unsigned long *bits, | |||
| 513 | } | 513 | } |
| 514 | EXPORT_SYMBOL(seq_bitmap); | 514 | EXPORT_SYMBOL(seq_bitmap); |
| 515 | 515 | ||
| 516 | int seq_bitmap_list(struct seq_file *m, unsigned long *bits, | 516 | int seq_bitmap_list(struct seq_file *m, const unsigned long *bits, |
| 517 | unsigned int nr_bits) | 517 | unsigned int nr_bits) |
| 518 | { | 518 | { |
| 519 | if (m->count < m->size) { | 519 | if (m->count < m->size) { |
diff --git a/include/asm-generic/topology.h b/include/asm-generic/topology.h index 0e9e2bc0ee96..88bada2ebc4b 100644 --- a/include/asm-generic/topology.h +++ b/include/asm-generic/topology.h | |||
| @@ -43,20 +43,10 @@ | |||
| 43 | #ifndef cpumask_of_node | 43 | #ifndef cpumask_of_node |
| 44 | #define cpumask_of_node(node) ((void)node, cpu_online_mask) | 44 | #define cpumask_of_node(node) ((void)node, cpu_online_mask) |
| 45 | #endif | 45 | #endif |
| 46 | #ifndef node_to_first_cpu | ||
| 47 | #define node_to_first_cpu(node) ((void)(node),0) | ||
| 48 | #endif | ||
| 49 | #ifndef pcibus_to_node | 46 | #ifndef pcibus_to_node |
| 50 | #define pcibus_to_node(bus) ((void)(bus), -1) | 47 | #define pcibus_to_node(bus) ((void)(bus), -1) |
| 51 | #endif | 48 | #endif |
| 52 | 49 | ||
| 53 | #ifndef pcibus_to_cpumask | ||
| 54 | #define pcibus_to_cpumask(bus) (pcibus_to_node(bus) == -1 ? \ | ||
| 55 | CPU_MASK_ALL : \ | ||
| 56 | node_to_cpumask(pcibus_to_node(bus)) \ | ||
| 57 | ) | ||
| 58 | #endif | ||
| 59 | |||
| 60 | #ifndef cpumask_of_pcibus | 50 | #ifndef cpumask_of_pcibus |
| 61 | #define cpumask_of_pcibus(bus) (pcibus_to_node(bus) == -1 ? \ | 51 | #define cpumask_of_pcibus(bus) (pcibus_to_node(bus) == -1 ? \ |
| 62 | cpu_all_mask : \ | 52 | cpu_all_mask : \ |
diff --git a/include/linux/cpuset.h b/include/linux/cpuset.h index 90c6074a36ca..2e0d79678deb 100644 --- a/include/linux/cpuset.h +++ b/include/linux/cpuset.h | |||
| @@ -90,12 +90,12 @@ static inline void cpuset_init_smp(void) {} | |||
| 90 | static inline void cpuset_cpus_allowed(struct task_struct *p, | 90 | static inline void cpuset_cpus_allowed(struct task_struct *p, |
| 91 | struct cpumask *mask) | 91 | struct cpumask *mask) |
| 92 | { | 92 | { |
| 93 | *mask = cpu_possible_map; | 93 | cpumask_copy(mask, cpu_possible_mask); |
| 94 | } | 94 | } |
| 95 | static inline void cpuset_cpus_allowed_locked(struct task_struct *p, | 95 | static inline void cpuset_cpus_allowed_locked(struct task_struct *p, |
| 96 | struct cpumask *mask) | 96 | struct cpumask *mask) |
| 97 | { | 97 | { |
| 98 | *mask = cpu_possible_map; | 98 | cpumask_copy(mask, cpu_possible_mask); |
| 99 | } | 99 | } |
| 100 | 100 | ||
| 101 | static inline nodemask_t cpuset_mems_allowed(struct task_struct *p) | 101 | static inline nodemask_t cpuset_mems_allowed(struct task_struct *p) |
diff --git a/include/linux/seq_file.h b/include/linux/seq_file.h index f616f31576d7..004f3b3342c5 100644 --- a/include/linux/seq_file.h +++ b/include/linux/seq_file.h | |||
| @@ -55,7 +55,7 @@ int seq_bitmap(struct seq_file *m, const unsigned long *bits, | |||
| 55 | unsigned int nr_bits); | 55 | unsigned int nr_bits); |
| 56 | static inline int seq_cpumask(struct seq_file *m, const struct cpumask *mask) | 56 | static inline int seq_cpumask(struct seq_file *m, const struct cpumask *mask) |
| 57 | { | 57 | { |
| 58 | return seq_bitmap(m, mask->bits, nr_cpu_ids); | 58 | return seq_bitmap(m, cpumask_bits(mask), nr_cpu_ids); |
| 59 | } | 59 | } |
| 60 | 60 | ||
| 61 | static inline int seq_nodemask(struct seq_file *m, nodemask_t *mask) | 61 | static inline int seq_nodemask(struct seq_file *m, nodemask_t *mask) |
| @@ -63,12 +63,13 @@ static inline int seq_nodemask(struct seq_file *m, nodemask_t *mask) | |||
| 63 | return seq_bitmap(m, mask->bits, MAX_NUMNODES); | 63 | return seq_bitmap(m, mask->bits, MAX_NUMNODES); |
| 64 | } | 64 | } |
| 65 | 65 | ||
| 66 | int seq_bitmap_list(struct seq_file *m, unsigned long *bits, | 66 | int seq_bitmap_list(struct seq_file *m, const unsigned long *bits, |
| 67 | unsigned int nr_bits); | 67 | unsigned int nr_bits); |
| 68 | 68 | ||
| 69 | static inline int seq_cpumask_list(struct seq_file *m, cpumask_t *mask) | 69 | static inline int seq_cpumask_list(struct seq_file *m, |
| 70 | const struct cpumask *mask) | ||
| 70 | { | 71 | { |
| 71 | return seq_bitmap_list(m, mask->bits, NR_CPUS); | 72 | return seq_bitmap_list(m, cpumask_bits(mask), nr_cpu_ids); |
| 72 | } | 73 | } |
| 73 | 74 | ||
| 74 | static inline int seq_nodemask_list(struct seq_file *m, nodemask_t *mask) | 75 | static inline int seq_nodemask_list(struct seq_file *m, nodemask_t *mask) |
diff --git a/init/main.c b/init/main.c index 6bf83afd654d..d6b388fbffa6 100644 --- a/init/main.c +++ b/init/main.c | |||
| @@ -407,8 +407,7 @@ static void __init smp_init(void) | |||
| 407 | * Set up the current CPU as possible to migrate to. | 407 | * Set up the current CPU as possible to migrate to. |
| 408 | * The other ones will be done by cpu_up/cpu_down() | 408 | * The other ones will be done by cpu_up/cpu_down() |
| 409 | */ | 409 | */ |
| 410 | cpu = smp_processor_id(); | 410 | set_cpu_active(smp_processor_id(), true); |
| 411 | cpu_set(cpu, cpu_active_map); | ||
| 412 | 411 | ||
| 413 | /* FIXME: This should be done in userspace --RR */ | 412 | /* FIXME: This should be done in userspace --RR */ |
| 414 | for_each_present_cpu(cpu) { | 413 | for_each_present_cpu(cpu) { |
| @@ -842,7 +841,7 @@ static int __init kernel_init(void * unused) | |||
| 842 | /* | 841 | /* |
| 843 | * init can run on any cpu. | 842 | * init can run on any cpu. |
| 844 | */ | 843 | */ |
| 845 | set_cpus_allowed_ptr(current, CPU_MASK_ALL_PTR); | 844 | set_cpus_allowed_ptr(current, cpu_all_mask); |
| 846 | /* | 845 | /* |
| 847 | * Tell the world that we're going to be the grim | 846 | * Tell the world that we're going to be the grim |
| 848 | * reaper of innocent orphaned children. | 847 | * reaper of innocent orphaned children. |
diff --git a/kernel/cpu.c b/kernel/cpu.c index 79e40f00dcb8..395b6974dc8d 100644 --- a/kernel/cpu.c +++ b/kernel/cpu.c | |||
| @@ -281,7 +281,7 @@ int __ref cpu_down(unsigned int cpu) | |||
| 281 | goto out; | 281 | goto out; |
| 282 | } | 282 | } |
| 283 | 283 | ||
| 284 | cpu_clear(cpu, cpu_active_map); | 284 | set_cpu_active(cpu, false); |
| 285 | 285 | ||
| 286 | /* | 286 | /* |
| 287 | * Make sure the all cpus did the reschedule and are not | 287 | * Make sure the all cpus did the reschedule and are not |
| @@ -296,7 +296,7 @@ int __ref cpu_down(unsigned int cpu) | |||
| 296 | err = _cpu_down(cpu, 0); | 296 | err = _cpu_down(cpu, 0); |
| 297 | 297 | ||
| 298 | if (cpu_online(cpu)) | 298 | if (cpu_online(cpu)) |
| 299 | cpu_set(cpu, cpu_active_map); | 299 | set_cpu_active(cpu, true); |
| 300 | 300 | ||
| 301 | out: | 301 | out: |
| 302 | cpu_maps_update_done(); | 302 | cpu_maps_update_done(); |
| @@ -333,7 +333,7 @@ static int __cpuinit _cpu_up(unsigned int cpu, int tasks_frozen) | |||
| 333 | goto out_notify; | 333 | goto out_notify; |
| 334 | BUG_ON(!cpu_online(cpu)); | 334 | BUG_ON(!cpu_online(cpu)); |
| 335 | 335 | ||
| 336 | cpu_set(cpu, cpu_active_map); | 336 | set_cpu_active(cpu, true); |
| 337 | 337 | ||
| 338 | /* Now call notifier in preparation. */ | 338 | /* Now call notifier in preparation. */ |
| 339 | raw_notifier_call_chain(&cpu_chain, CPU_ONLINE | mod, hcpu); | 339 | raw_notifier_call_chain(&cpu_chain, CPU_ONLINE | mod, hcpu); |
diff --git a/kernel/fork.c b/kernel/fork.c index 6715ebc3761d..47c15840a381 100644 --- a/kernel/fork.c +++ b/kernel/fork.c | |||
| @@ -284,7 +284,7 @@ static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm) | |||
| 284 | mm->free_area_cache = oldmm->mmap_base; | 284 | mm->free_area_cache = oldmm->mmap_base; |
| 285 | mm->cached_hole_size = ~0UL; | 285 | mm->cached_hole_size = ~0UL; |
| 286 | mm->map_count = 0; | 286 | mm->map_count = 0; |
| 287 | cpus_clear(mm->cpu_vm_mask); | 287 | cpumask_clear(mm_cpumask(mm)); |
| 288 | mm->mm_rb = RB_ROOT; | 288 | mm->mm_rb = RB_ROOT; |
| 289 | rb_link = &mm->mm_rb.rb_node; | 289 | rb_link = &mm->mm_rb.rb_node; |
| 290 | rb_parent = NULL; | 290 | rb_parent = NULL; |
diff --git a/kernel/kmod.c b/kernel/kmod.c index a27a5f64443d..f0c8f545180d 100644 --- a/kernel/kmod.c +++ b/kernel/kmod.c | |||
| @@ -167,7 +167,7 @@ static int ____call_usermodehelper(void *data) | |||
| 167 | } | 167 | } |
| 168 | 168 | ||
| 169 | /* We can run anywhere, unlike our parent keventd(). */ | 169 | /* We can run anywhere, unlike our parent keventd(). */ |
| 170 | set_cpus_allowed_ptr(current, CPU_MASK_ALL_PTR); | 170 | set_cpus_allowed_ptr(current, cpu_all_mask); |
| 171 | 171 | ||
| 172 | /* | 172 | /* |
| 173 | * Our parent is keventd, which runs with elevated scheduling priority. | 173 | * Our parent is keventd, which runs with elevated scheduling priority. |
diff --git a/kernel/kthread.c b/kernel/kthread.c index 4fbc456f393d..84bbadd4d021 100644 --- a/kernel/kthread.c +++ b/kernel/kthread.c | |||
| @@ -110,7 +110,7 @@ static void create_kthread(struct kthread_create_info *create) | |||
| 110 | */ | 110 | */ |
| 111 | sched_setscheduler(create->result, SCHED_NORMAL, ¶m); | 111 | sched_setscheduler(create->result, SCHED_NORMAL, ¶m); |
| 112 | set_user_nice(create->result, KTHREAD_NICE_LEVEL); | 112 | set_user_nice(create->result, KTHREAD_NICE_LEVEL); |
| 113 | set_cpus_allowed_ptr(create->result, CPU_MASK_ALL_PTR); | 113 | set_cpus_allowed_ptr(create->result, cpu_all_mask); |
| 114 | } | 114 | } |
| 115 | complete(&create->done); | 115 | complete(&create->done); |
| 116 | } | 116 | } |
| @@ -240,7 +240,7 @@ int kthreadd(void *unused) | |||
| 240 | set_task_comm(tsk, "kthreadd"); | 240 | set_task_comm(tsk, "kthreadd"); |
| 241 | ignore_signals(tsk); | 241 | ignore_signals(tsk); |
| 242 | set_user_nice(tsk, KTHREAD_NICE_LEVEL); | 242 | set_user_nice(tsk, KTHREAD_NICE_LEVEL); |
| 243 | set_cpus_allowed_ptr(tsk, CPU_MASK_ALL_PTR); | 243 | set_cpus_allowed_ptr(tsk, cpu_all_mask); |
| 244 | 244 | ||
| 245 | current->flags |= PF_NOFREEZE | PF_FREEZER_NOSIG; | 245 | current->flags |= PF_NOFREEZE | PF_FREEZER_NOSIG; |
| 246 | 246 | ||
diff --git a/kernel/rcutorture.c b/kernel/rcutorture.c index 7c4142a79f0a..9b4a975a4b4a 100644 --- a/kernel/rcutorture.c +++ b/kernel/rcutorture.c | |||
| @@ -126,6 +126,7 @@ static atomic_t n_rcu_torture_mberror; | |||
| 126 | static atomic_t n_rcu_torture_error; | 126 | static atomic_t n_rcu_torture_error; |
| 127 | static long n_rcu_torture_timers = 0; | 127 | static long n_rcu_torture_timers = 0; |
| 128 | static struct list_head rcu_torture_removed; | 128 | static struct list_head rcu_torture_removed; |
| 129 | static cpumask_var_t shuffle_tmp_mask; | ||
| 129 | 130 | ||
| 130 | static int stutter_pause_test = 0; | 131 | static int stutter_pause_test = 0; |
| 131 | 132 | ||
| @@ -889,10 +890,9 @@ static int rcu_idle_cpu; /* Force all torture tasks off this CPU */ | |||
| 889 | */ | 890 | */ |
| 890 | static void rcu_torture_shuffle_tasks(void) | 891 | static void rcu_torture_shuffle_tasks(void) |
| 891 | { | 892 | { |
| 892 | cpumask_t tmp_mask; | ||
| 893 | int i; | 893 | int i; |
| 894 | 894 | ||
| 895 | cpus_setall(tmp_mask); | 895 | cpumask_setall(shuffle_tmp_mask); |
| 896 | get_online_cpus(); | 896 | get_online_cpus(); |
| 897 | 897 | ||
| 898 | /* No point in shuffling if there is only one online CPU (ex: UP) */ | 898 | /* No point in shuffling if there is only one online CPU (ex: UP) */ |
| @@ -902,29 +902,29 @@ static void rcu_torture_shuffle_tasks(void) | |||
| 902 | } | 902 | } |
| 903 | 903 | ||
| 904 | if (rcu_idle_cpu != -1) | 904 | if (rcu_idle_cpu != -1) |
| 905 | cpu_clear(rcu_idle_cpu, tmp_mask); | 905 | cpumask_clear_cpu(rcu_idle_cpu, shuffle_tmp_mask); |
| 906 | 906 | ||
| 907 | set_cpus_allowed_ptr(current, &tmp_mask); | 907 | set_cpus_allowed_ptr(current, shuffle_tmp_mask); |
| 908 | 908 | ||
| 909 | if (reader_tasks) { | 909 | if (reader_tasks) { |
| 910 | for (i = 0; i < nrealreaders; i++) | 910 | for (i = 0; i < nrealreaders; i++) |
| 911 | if (reader_tasks[i]) | 911 | if (reader_tasks[i]) |
| 912 | set_cpus_allowed_ptr(reader_tasks[i], | 912 | set_cpus_allowed_ptr(reader_tasks[i], |
| 913 | &tmp_mask); | 913 | shuffle_tmp_mask); |
| 914 | } | 914 | } |
| 915 | 915 | ||
| 916 | if (fakewriter_tasks) { | 916 | if (fakewriter_tasks) { |
| 917 | for (i = 0; i < nfakewriters; i++) | 917 | for (i = 0; i < nfakewriters; i++) |
| 918 | if (fakewriter_tasks[i]) | 918 | if (fakewriter_tasks[i]) |
| 919 | set_cpus_allowed_ptr(fakewriter_tasks[i], | 919 | set_cpus_allowed_ptr(fakewriter_tasks[i], |
| 920 | &tmp_mask); | 920 | shuffle_tmp_mask); |
| 921 | } | 921 | } |
| 922 | 922 | ||
| 923 | if (writer_task) | 923 | if (writer_task) |
| 924 | set_cpus_allowed_ptr(writer_task, &tmp_mask); | 924 | set_cpus_allowed_ptr(writer_task, shuffle_tmp_mask); |
| 925 | 925 | ||
| 926 | if (stats_task) | 926 | if (stats_task) |
| 927 | set_cpus_allowed_ptr(stats_task, &tmp_mask); | 927 | set_cpus_allowed_ptr(stats_task, shuffle_tmp_mask); |
| 928 | 928 | ||
| 929 | if (rcu_idle_cpu == -1) | 929 | if (rcu_idle_cpu == -1) |
| 930 | rcu_idle_cpu = num_online_cpus() - 1; | 930 | rcu_idle_cpu = num_online_cpus() - 1; |
| @@ -1012,6 +1012,7 @@ rcu_torture_cleanup(void) | |||
| 1012 | if (shuffler_task) { | 1012 | if (shuffler_task) { |
| 1013 | VERBOSE_PRINTK_STRING("Stopping rcu_torture_shuffle task"); | 1013 | VERBOSE_PRINTK_STRING("Stopping rcu_torture_shuffle task"); |
| 1014 | kthread_stop(shuffler_task); | 1014 | kthread_stop(shuffler_task); |
| 1015 | free_cpumask_var(shuffle_tmp_mask); | ||
| 1015 | } | 1016 | } |
| 1016 | shuffler_task = NULL; | 1017 | shuffler_task = NULL; |
| 1017 | 1018 | ||
| @@ -1190,10 +1191,18 @@ rcu_torture_init(void) | |||
| 1190 | } | 1191 | } |
| 1191 | if (test_no_idle_hz) { | 1192 | if (test_no_idle_hz) { |
| 1192 | rcu_idle_cpu = num_online_cpus() - 1; | 1193 | rcu_idle_cpu = num_online_cpus() - 1; |
| 1194 | |||
| 1195 | if (!alloc_cpumask_var(&shuffle_tmp_mask, GFP_KERNEL)) { | ||
| 1196 | firsterr = -ENOMEM; | ||
| 1197 | VERBOSE_PRINTK_ERRSTRING("Failed to alloc mask"); | ||
| 1198 | goto unwind; | ||
| 1199 | } | ||
| 1200 | |||
| 1193 | /* Create the shuffler thread */ | 1201 | /* Create the shuffler thread */ |
| 1194 | shuffler_task = kthread_run(rcu_torture_shuffle, NULL, | 1202 | shuffler_task = kthread_run(rcu_torture_shuffle, NULL, |
| 1195 | "rcu_torture_shuffle"); | 1203 | "rcu_torture_shuffle"); |
| 1196 | if (IS_ERR(shuffler_task)) { | 1204 | if (IS_ERR(shuffler_task)) { |
| 1205 | free_cpumask_var(shuffle_tmp_mask); | ||
| 1197 | firsterr = PTR_ERR(shuffler_task); | 1206 | firsterr = PTR_ERR(shuffler_task); |
| 1198 | VERBOSE_PRINTK_ERRSTRING("Failed to create shuffler"); | 1207 | VERBOSE_PRINTK_ERRSTRING("Failed to create shuffler"); |
| 1199 | shuffler_task = NULL; | 1208 | shuffler_task = NULL; |
diff --git a/kernel/sched_cpupri.h b/kernel/sched_cpupri.h index 642a94ef8a0a..9a7e859b8fbf 100644 --- a/kernel/sched_cpupri.h +++ b/kernel/sched_cpupri.h | |||
| @@ -25,7 +25,7 @@ struct cpupri { | |||
| 25 | 25 | ||
| 26 | #ifdef CONFIG_SMP | 26 | #ifdef CONFIG_SMP |
| 27 | int cpupri_find(struct cpupri *cp, | 27 | int cpupri_find(struct cpupri *cp, |
| 28 | struct task_struct *p, cpumask_t *lowest_mask); | 28 | struct task_struct *p, struct cpumask *lowest_mask); |
| 29 | void cpupri_set(struct cpupri *cp, int cpu, int pri); | 29 | void cpupri_set(struct cpupri *cp, int cpu, int pri); |
| 30 | int cpupri_init(struct cpupri *cp, bool bootmem); | 30 | int cpupri_init(struct cpupri *cp, bool bootmem); |
| 31 | void cpupri_cleanup(struct cpupri *cp); | 31 | void cpupri_cleanup(struct cpupri *cp); |
diff --git a/kernel/stop_machine.c b/kernel/stop_machine.c index 74541ca49536..912823e2a11b 100644 --- a/kernel/stop_machine.c +++ b/kernel/stop_machine.c | |||
| @@ -44,7 +44,7 @@ static DEFINE_MUTEX(setup_lock); | |||
| 44 | static int refcount; | 44 | static int refcount; |
| 45 | static struct workqueue_struct *stop_machine_wq; | 45 | static struct workqueue_struct *stop_machine_wq; |
| 46 | static struct stop_machine_data active, idle; | 46 | static struct stop_machine_data active, idle; |
| 47 | static const cpumask_t *active_cpus; | 47 | static const struct cpumask *active_cpus; |
| 48 | static void *stop_machine_work; | 48 | static void *stop_machine_work; |
| 49 | 49 | ||
| 50 | static void set_state(enum stopmachine_state newstate) | 50 | static void set_state(enum stopmachine_state newstate) |
diff --git a/kernel/workqueue.c b/kernel/workqueue.c index 1f0c509b40d3..9aedd9fd825b 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c | |||
| @@ -416,7 +416,7 @@ void flush_workqueue(struct workqueue_struct *wq) | |||
| 416 | might_sleep(); | 416 | might_sleep(); |
| 417 | lock_map_acquire(&wq->lockdep_map); | 417 | lock_map_acquire(&wq->lockdep_map); |
| 418 | lock_map_release(&wq->lockdep_map); | 418 | lock_map_release(&wq->lockdep_map); |
| 419 | for_each_cpu_mask_nr(cpu, *cpu_map) | 419 | for_each_cpu(cpu, cpu_map) |
| 420 | flush_cpu_workqueue(per_cpu_ptr(wq->cpu_wq, cpu)); | 420 | flush_cpu_workqueue(per_cpu_ptr(wq->cpu_wq, cpu)); |
| 421 | } | 421 | } |
| 422 | EXPORT_SYMBOL_GPL(flush_workqueue); | 422 | EXPORT_SYMBOL_GPL(flush_workqueue); |
| @@ -547,7 +547,7 @@ static void wait_on_work(struct work_struct *work) | |||
| 547 | wq = cwq->wq; | 547 | wq = cwq->wq; |
| 548 | cpu_map = wq_cpu_map(wq); | 548 | cpu_map = wq_cpu_map(wq); |
| 549 | 549 | ||
| 550 | for_each_cpu_mask_nr(cpu, *cpu_map) | 550 | for_each_cpu(cpu, cpu_map) |
| 551 | wait_on_cpu_work(per_cpu_ptr(wq->cpu_wq, cpu), work); | 551 | wait_on_cpu_work(per_cpu_ptr(wq->cpu_wq, cpu), work); |
| 552 | } | 552 | } |
| 553 | 553 | ||
| @@ -911,7 +911,7 @@ void destroy_workqueue(struct workqueue_struct *wq) | |||
| 911 | list_del(&wq->list); | 911 | list_del(&wq->list); |
| 912 | spin_unlock(&workqueue_lock); | 912 | spin_unlock(&workqueue_lock); |
| 913 | 913 | ||
| 914 | for_each_cpu_mask_nr(cpu, *cpu_map) | 914 | for_each_cpu(cpu, cpu_map) |
| 915 | cleanup_workqueue_thread(per_cpu_ptr(wq->cpu_wq, cpu)); | 915 | cleanup_workqueue_thread(per_cpu_ptr(wq->cpu_wq, cpu)); |
| 916 | cpu_maps_update_done(); | 916 | cpu_maps_update_done(); |
| 917 | 917 | ||
diff --git a/mm/allocpercpu.c b/mm/allocpercpu.c index 1882923bc706..139d5b7b6621 100644 --- a/mm/allocpercpu.c +++ b/mm/allocpercpu.c | |||
| @@ -143,7 +143,7 @@ void free_percpu(void *__pdata) | |||
| 143 | { | 143 | { |
| 144 | if (unlikely(!__pdata)) | 144 | if (unlikely(!__pdata)) |
| 145 | return; | 145 | return; |
| 146 | __percpu_depopulate_mask(__pdata, &cpu_possible_map); | 146 | __percpu_depopulate_mask(__pdata, cpu_possible_mask); |
| 147 | kfree(__percpu_disguise(__pdata)); | 147 | kfree(__percpu_disguise(__pdata)); |
| 148 | } | 148 | } |
| 149 | EXPORT_SYMBOL_GPL(free_percpu); | 149 | EXPORT_SYMBOL_GPL(free_percpu); |
diff --git a/mm/pdflush.c b/mm/pdflush.c index 15de509b68fd..118905e3d788 100644 --- a/mm/pdflush.c +++ b/mm/pdflush.c | |||
| @@ -191,7 +191,7 @@ static int pdflush(void *dummy) | |||
| 191 | 191 | ||
| 192 | /* | 192 | /* |
| 193 | * Some configs put our parent kthread in a limited cpuset, | 193 | * Some configs put our parent kthread in a limited cpuset, |
| 194 | * which kthread() overrides, forcing cpus_allowed == CPU_MASK_ALL. | 194 | * which kthread() overrides, forcing cpus_allowed == cpu_all_mask. |
| 195 | * Our needs are more modest - cut back to our cpusets cpus_allowed. | 195 | * Our needs are more modest - cut back to our cpusets cpus_allowed. |
| 196 | * This is needed as pdflush's are dynamically created and destroyed. | 196 | * This is needed as pdflush's are dynamically created and destroyed. |
| 197 | * The boottime pdflush's are easily placed w/o these 2 lines. | 197 | * The boottime pdflush's are easily placed w/o these 2 lines. |
diff --git a/mm/vmstat.c b/mm/vmstat.c index 91149746bb8d..8cd81ea1ddc1 100644 --- a/mm/vmstat.c +++ b/mm/vmstat.c | |||
| @@ -27,7 +27,7 @@ static void sum_vm_events(unsigned long *ret, const struct cpumask *cpumask) | |||
| 27 | 27 | ||
| 28 | memset(ret, 0, NR_VM_EVENT_ITEMS * sizeof(unsigned long)); | 28 | memset(ret, 0, NR_VM_EVENT_ITEMS * sizeof(unsigned long)); |
| 29 | 29 | ||
| 30 | for_each_cpu_mask_nr(cpu, *cpumask) { | 30 | for_each_cpu(cpu, cpumask) { |
| 31 | struct vm_event_state *this = &per_cpu(vm_event_states, cpu); | 31 | struct vm_event_state *this = &per_cpu(vm_event_states, cpu); |
| 32 | 32 | ||
| 33 | for (i = 0; i < NR_VM_EVENT_ITEMS; i++) | 33 | for (i = 0; i < NR_VM_EVENT_ITEMS; i++) |
diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c index c51fed4d1af1..bb507e2bb94d 100644 --- a/net/sunrpc/svc.c +++ b/net/sunrpc/svc.c | |||
| @@ -312,7 +312,7 @@ svc_pool_map_set_cpumask(struct task_struct *task, unsigned int pidx) | |||
| 312 | switch (m->mode) { | 312 | switch (m->mode) { |
| 313 | case SVC_POOL_PERCPU: | 313 | case SVC_POOL_PERCPU: |
| 314 | { | 314 | { |
| 315 | set_cpus_allowed_ptr(task, &cpumask_of_cpu(node)); | 315 | set_cpus_allowed_ptr(task, cpumask_of(node)); |
| 316 | break; | 316 | break; |
| 317 | } | 317 | } |
| 318 | case SVC_POOL_PERNODE: | 318 | case SVC_POOL_PERNODE: |
