diff options
Diffstat (limited to 'kernel/irq/proc.c')
| -rw-r--r-- | kernel/irq/proc.c | 34 |
1 files changed, 22 insertions, 12 deletions
diff --git a/kernel/irq/proc.c b/kernel/irq/proc.c index d2c0e5ee53c5..aae3f742bcec 100644 --- a/kernel/irq/proc.c +++ b/kernel/irq/proc.c | |||
| @@ -20,7 +20,7 @@ static struct proc_dir_entry *root_irq_dir; | |||
| 20 | static int irq_affinity_proc_show(struct seq_file *m, void *v) | 20 | static int irq_affinity_proc_show(struct seq_file *m, void *v) |
| 21 | { | 21 | { |
| 22 | struct irq_desc *desc = irq_to_desc((long)m->private); | 22 | struct irq_desc *desc = irq_to_desc((long)m->private); |
| 23 | cpumask_t *mask = &desc->affinity; | 23 | const struct cpumask *mask = &desc->affinity; |
| 24 | 24 | ||
| 25 | #ifdef CONFIG_GENERIC_PENDING_IRQ | 25 | #ifdef CONFIG_GENERIC_PENDING_IRQ |
| 26 | if (desc->status & IRQ_MOVE_PENDING) | 26 | if (desc->status & IRQ_MOVE_PENDING) |
| @@ -54,7 +54,7 @@ static ssize_t irq_affinity_proc_write(struct file *file, | |||
| 54 | if (err) | 54 | if (err) |
| 55 | goto free_cpumask; | 55 | goto free_cpumask; |
| 56 | 56 | ||
| 57 | if (!is_affinity_mask_valid(*new_value)) { | 57 | if (!is_affinity_mask_valid(new_value)) { |
| 58 | err = -EINVAL; | 58 | err = -EINVAL; |
| 59 | goto free_cpumask; | 59 | goto free_cpumask; |
| 60 | } | 60 | } |
| @@ -93,7 +93,7 @@ static const struct file_operations irq_affinity_proc_fops = { | |||
| 93 | 93 | ||
| 94 | static int default_affinity_show(struct seq_file *m, void *v) | 94 | static int default_affinity_show(struct seq_file *m, void *v) |
| 95 | { | 95 | { |
| 96 | seq_cpumask(m, &irq_default_affinity); | 96 | seq_cpumask(m, irq_default_affinity); |
| 97 | seq_putc(m, '\n'); | 97 | seq_putc(m, '\n'); |
| 98 | return 0; | 98 | return 0; |
| 99 | } | 99 | } |
| @@ -101,27 +101,37 @@ static int default_affinity_show(struct seq_file *m, void *v) | |||
| 101 | static ssize_t default_affinity_write(struct file *file, | 101 | static ssize_t default_affinity_write(struct file *file, |
| 102 | const char __user *buffer, size_t count, loff_t *ppos) | 102 | const char __user *buffer, size_t count, loff_t *ppos) |
| 103 | { | 103 | { |
| 104 | cpumask_t new_value; | 104 | cpumask_var_t new_value; |
| 105 | int err; | 105 | int err; |
| 106 | 106 | ||
| 107 | err = cpumask_parse_user(buffer, count, &new_value); | 107 | if (!alloc_cpumask_var(&new_value, GFP_KERNEL)) |
| 108 | return -ENOMEM; | ||
| 109 | |||
| 110 | err = cpumask_parse_user(buffer, count, new_value); | ||
| 108 | if (err) | 111 | if (err) |
| 109 | return err; | 112 | goto out; |
| 110 | 113 | ||
| 111 | if (!is_affinity_mask_valid(new_value)) | 114 | if (!is_affinity_mask_valid(new_value)) { |
| 112 | return -EINVAL; | 115 | err = -EINVAL; |
| 116 | goto out; | ||
| 117 | } | ||
| 113 | 118 | ||
| 114 | /* | 119 | /* |
| 115 | * Do not allow disabling IRQs completely - it's a too easy | 120 | * Do not allow disabling IRQs completely - it's a too easy |
| 116 | * way to make the system unusable accidentally :-) At least | 121 | * way to make the system unusable accidentally :-) At least |
| 117 | * one online CPU still has to be targeted. | 122 | * one online CPU still has to be targeted. |
| 118 | */ | 123 | */ |
| 119 | if (!cpus_intersects(new_value, cpu_online_map)) | 124 | if (!cpumask_intersects(new_value, cpu_online_mask)) { |
| 120 | return -EINVAL; | 125 | err = -EINVAL; |
| 126 | goto out; | ||
| 127 | } | ||
| 121 | 128 | ||
| 122 | irq_default_affinity = new_value; | 129 | cpumask_copy(irq_default_affinity, new_value); |
| 130 | err = count; | ||
| 123 | 131 | ||
| 124 | return count; | 132 | out: |
| 133 | free_cpumask_var(new_value); | ||
| 134 | return err; | ||
| 125 | } | 135 | } |
| 126 | 136 | ||
| 127 | static int default_affinity_open(struct inode *inode, struct file *file) | 137 | static int default_affinity_open(struct inode *inode, struct file *file) |
