|
@@ -32,6 +32,29 @@ static int irq_affinity_proc_show(struct seq_file *m, void *v)
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static int irq_affinity_hint_proc_show(struct seq_file *m, void *v)
|
|
|
|
+{
|
|
|
|
+ struct irq_desc *desc = irq_to_desc((long)m->private);
|
|
|
|
+ unsigned long flags;
|
|
|
|
+ cpumask_var_t mask;
|
|
|
|
+
|
|
|
|
+ if (!alloc_cpumask_var(&mask, GFP_KERNEL))
|
|
|
|
+ return -ENOMEM;
|
|
|
|
+
|
|
|
|
+ raw_spin_lock_irqsave(&desc->lock, flags);
|
|
|
|
+ if (desc->affinity_hint)
|
|
|
|
+ cpumask_copy(mask, desc->affinity_hint);
|
|
|
|
+ else
|
|
|
|
+ cpumask_setall(mask);
|
|
|
|
+ raw_spin_unlock_irqrestore(&desc->lock, flags);
|
|
|
|
+
|
|
|
|
+ seq_cpumask(m, mask);
|
|
|
|
+ seq_putc(m, '\n');
|
|
|
|
+ free_cpumask_var(mask);
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
#ifndef is_affinity_mask_valid
|
|
#ifndef is_affinity_mask_valid
|
|
#define is_affinity_mask_valid(val) 1
|
|
#define is_affinity_mask_valid(val) 1
|
|
#endif
|
|
#endif
|
|
@@ -84,6 +107,11 @@ static int irq_affinity_proc_open(struct inode *inode, struct file *file)
|
|
return single_open(file, irq_affinity_proc_show, PDE(inode)->data);
|
|
return single_open(file, irq_affinity_proc_show, PDE(inode)->data);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static int irq_affinity_hint_proc_open(struct inode *inode, struct file *file)
|
|
|
|
+{
|
|
|
|
+ return single_open(file, irq_affinity_hint_proc_show, PDE(inode)->data);
|
|
|
|
+}
|
|
|
|
+
|
|
static const struct file_operations irq_affinity_proc_fops = {
|
|
static const struct file_operations irq_affinity_proc_fops = {
|
|
.open = irq_affinity_proc_open,
|
|
.open = irq_affinity_proc_open,
|
|
.read = seq_read,
|
|
.read = seq_read,
|
|
@@ -92,6 +120,13 @@ static const struct file_operations irq_affinity_proc_fops = {
|
|
.write = irq_affinity_proc_write,
|
|
.write = irq_affinity_proc_write,
|
|
};
|
|
};
|
|
|
|
|
|
|
|
+static const struct file_operations irq_affinity_hint_proc_fops = {
|
|
|
|
+ .open = irq_affinity_hint_proc_open,
|
|
|
|
+ .read = seq_read,
|
|
|
|
+ .llseek = seq_lseek,
|
|
|
|
+ .release = single_release,
|
|
|
|
+};
|
|
|
|
+
|
|
static int default_affinity_show(struct seq_file *m, void *v)
|
|
static int default_affinity_show(struct seq_file *m, void *v)
|
|
{
|
|
{
|
|
seq_cpumask(m, irq_default_affinity);
|
|
seq_cpumask(m, irq_default_affinity);
|
|
@@ -252,6 +287,10 @@ void register_irq_proc(unsigned int irq, struct irq_desc *desc)
|
|
proc_create_data("smp_affinity", 0600, desc->dir,
|
|
proc_create_data("smp_affinity", 0600, desc->dir,
|
|
&irq_affinity_proc_fops, (void *)(long)irq);
|
|
&irq_affinity_proc_fops, (void *)(long)irq);
|
|
|
|
|
|
|
|
+ /* create /proc/irq/<irq>/affinity_hint */
|
|
|
|
+ proc_create_data("affinity_hint", 0400, desc->dir,
|
|
|
|
+ &irq_affinity_hint_proc_fops, (void *)(long)irq);
|
|
|
|
+
|
|
proc_create_data("node", 0444, desc->dir,
|
|
proc_create_data("node", 0444, desc->dir,
|
|
&irq_node_proc_fops, (void *)(long)irq);
|
|
&irq_node_proc_fops, (void *)(long)irq);
|
|
#endif
|
|
#endif
|