blob: a565ce3a4fb5760e767114af6fe2d86b780ce5d4 [file] [log] [blame]
Yinghai Lu48a1b102008-12-11 00:15:01 -08001/*
Yinghai Lub9098952008-12-19 13:48:34 -08002 * NUMA irq-desc migration code
Yinghai Lu48a1b102008-12-11 00:15:01 -08003 *
Yinghai Lub9098952008-12-19 13:48:34 -08004 * Migrate IRQ data structures (irq_desc, chip_data, etc.) over to
5 * the new "home node" of the IRQ.
Yinghai Lu48a1b102008-12-11 00:15:01 -08006 */
7
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>
13
14#include "internals.h"
15
16static void init_copy_kstat_irqs(struct irq_desc *old_desc,
17 struct irq_desc *desc,
18 int cpu, int nr)
19{
20 unsigned long bytes;
21
22 init_kstat_irqs(desc, cpu, nr);
23
24 if (desc->kstat_irqs != old_desc->kstat_irqs) {
25 /* Compute how many bytes we need per irq and allocate them */
26 bytes = nr * sizeof(unsigned int);
27
28 memcpy(desc->kstat_irqs, old_desc->kstat_irqs, bytes);
29 }
30}
31
32static void free_kstat_irqs(struct irq_desc *old_desc, struct irq_desc *desc)
33{
34 if (old_desc->kstat_irqs == desc->kstat_irqs)
35 return;
36
37 kfree(old_desc->kstat_irqs);
38 old_desc->kstat_irqs = NULL;
39}
40
41static void init_copy_one_irq_desc(int irq, struct irq_desc *old_desc,
42 struct irq_desc *desc, int cpu)
43{
44 memcpy(desc, old_desc, sizeof(struct irq_desc));
45 desc->cpu = cpu;
46 lockdep_set_class(&desc->lock, &irq_desc_lock_class);
47 init_copy_kstat_irqs(old_desc, desc, cpu, nr_cpu_ids);
48 arch_init_copy_chip_data(old_desc, desc, cpu);
49}
50
51static void free_one_irq_desc(struct irq_desc *old_desc, struct irq_desc *desc)
52{
53 free_kstat_irqs(old_desc, desc);
54 arch_free_chip_data(old_desc, desc);
55}
56
57static struct irq_desc *__real_move_irq_desc(struct irq_desc *old_desc,
58 int cpu)
59{
60 struct irq_desc *desc;
61 unsigned int irq;
62 unsigned long flags;
63 int node;
64
65 irq = old_desc->irq;
66
67 spin_lock_irqsave(&sparse_irq_lock, flags);
68
69 /* We have to check it to avoid races with another CPU */
70 desc = irq_desc_ptrs[irq];
71
72 if (desc && old_desc != desc)
73 goto out_unlock;
74
75 node = cpu_to_node(cpu);
76 desc = kzalloc_node(sizeof(*desc), GFP_ATOMIC, node);
Yinghai Lu48a1b102008-12-11 00:15:01 -080077 if (!desc) {
Ingo Molnar8b07cd42008-12-26 19:10:04 +010078 printk(KERN_ERR "irq %d: can not get new irq_desc for migration.\n", irq);
Yinghai Lu48a1b102008-12-11 00:15:01 -080079 /* still use old one */
80 desc = old_desc;
81 goto out_unlock;
82 }
83 init_copy_one_irq_desc(irq, old_desc, desc, cpu);
84
85 irq_desc_ptrs[irq] = desc;
86
87 /* free the old one */
88 free_one_irq_desc(old_desc, desc);
89 kfree(old_desc);
90
91out_unlock:
92 spin_unlock_irqrestore(&sparse_irq_lock, flags);
93
94 return desc;
95}
96
97struct irq_desc *move_irq_desc(struct irq_desc *desc, int cpu)
98{
99 int old_cpu;
100 int node, old_node;
101
102 /* those all static, do move them */
103 if (desc->irq < NR_IRQS_LEGACY)
104 return desc;
105
106 old_cpu = desc->cpu;
Yinghai Lu48a1b102008-12-11 00:15:01 -0800107 if (old_cpu != cpu) {
108 node = cpu_to_node(cpu);
109 old_node = cpu_to_node(old_cpu);
110 if (old_node != node)
111 desc = __real_move_irq_desc(desc, cpu);
112 else
113 desc->cpu = cpu;
114 }
115
116 return desc;
117}
118