[ARM] 5523/2: Updated ep93xx defconfig
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / kernel / irq / numa_migrate.c
blob44bbdcbaf8d2c8193f2d631b54061047546d0065
1 /*
2 * NUMA irq-desc migration code
4 * Migrate IRQ data structures (irq_desc, chip_data, etc.) over to
5 * the new "home node" of the IRQ.
6 */
8 #include <linux/irq.h>
9 #include <linux/module.h>
10 #include <linux/random.h>
11 #include <linux/interrupt.h>
12 #include <linux/kernel_stat.h>
14 #include "internals.h"
16 static void init_copy_kstat_irqs(struct irq_desc *old_desc,
17 struct irq_desc *desc,
18 int cpu, int nr)
20 init_kstat_irqs(desc, cpu, nr);
22 if (desc->kstat_irqs != old_desc->kstat_irqs)
23 memcpy(desc->kstat_irqs, old_desc->kstat_irqs,
24 nr * sizeof(*desc->kstat_irqs));
27 static void free_kstat_irqs(struct irq_desc *old_desc, struct irq_desc *desc)
29 if (old_desc->kstat_irqs == desc->kstat_irqs)
30 return;
32 kfree(old_desc->kstat_irqs);
33 old_desc->kstat_irqs = NULL;
36 static bool init_copy_one_irq_desc(int irq, struct irq_desc *old_desc,
37 struct irq_desc *desc, int cpu)
39 memcpy(desc, old_desc, sizeof(struct irq_desc));
40 if (!init_alloc_desc_masks(desc, cpu, false)) {
41 printk(KERN_ERR "irq %d: can not get new irq_desc cpumask "
42 "for migration.\n", irq);
43 return false;
45 spin_lock_init(&desc->lock);
46 desc->cpu = cpu;
47 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
48 init_copy_kstat_irqs(old_desc, desc, cpu, nr_cpu_ids);
49 init_copy_desc_masks(old_desc, desc);
50 arch_init_copy_chip_data(old_desc, desc, cpu);
51 return true;
54 static void free_one_irq_desc(struct irq_desc *old_desc, struct irq_desc *desc)
56 free_kstat_irqs(old_desc, desc);
57 free_desc_masks(old_desc, desc);
58 arch_free_chip_data(old_desc, desc);
61 static struct irq_desc *__real_move_irq_desc(struct irq_desc *old_desc,
62 int cpu)
64 struct irq_desc *desc;
65 unsigned int irq;
66 unsigned long flags;
67 int node;
69 irq = old_desc->irq;
71 spin_lock_irqsave(&sparse_irq_lock, flags);
73 /* We have to check it to avoid races with another CPU */
74 desc = irq_desc_ptrs[irq];
76 if (desc && old_desc != desc)
77 goto out_unlock;
79 node = cpu_to_node(cpu);
80 desc = kzalloc_node(sizeof(*desc), GFP_ATOMIC, node);
81 if (!desc) {
82 printk(KERN_ERR "irq %d: can not get new irq_desc "
83 "for migration.\n", irq);
84 /* still use old one */
85 desc = old_desc;
86 goto out_unlock;
88 if (!init_copy_one_irq_desc(irq, old_desc, desc, cpu)) {
89 /* still use old one */
90 kfree(desc);
91 desc = old_desc;
92 goto out_unlock;
95 irq_desc_ptrs[irq] = desc;
96 spin_unlock_irqrestore(&sparse_irq_lock, flags);
98 /* free the old one */
99 free_one_irq_desc(old_desc, desc);
100 spin_unlock(&old_desc->lock);
101 kfree(old_desc);
102 spin_lock(&desc->lock);
104 return desc;
106 out_unlock:
107 spin_unlock_irqrestore(&sparse_irq_lock, flags);
109 return desc;
112 struct irq_desc *move_irq_desc(struct irq_desc *desc, int cpu)
114 int old_cpu;
115 int node, old_node;
117 /* those all static, do move them */
118 if (desc->irq < NR_IRQS_LEGACY)
119 return desc;
121 old_cpu = desc->cpu;
122 if (old_cpu != cpu) {
123 node = cpu_to_node(cpu);
124 old_node = cpu_to_node(old_cpu);
125 if (old_node != node)
126 desc = __real_move_irq_desc(desc, cpu);
127 else
128 desc->cpu = cpu;
131 return desc;