Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1380460
| From | Christoph Hellwig <hch@lst.de> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 4/8] genirq: add a helper to program the pre-set affinity mask into the controller |
| Date | 2016-04-16 03:40 +0200 |
| Message-ID | <ronnj-3Vn-1@gated-at.bofh.it> (permalink) |
| References | <ronnj-3Vn-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Signed-off-by: Christoph Hellwig <hch@lst.de>
---
include/linux/interrupt.h | 2 ++
kernel/irq/manage.c | 14 ++++++++++++++
2 files changed, 16 insertions(+)
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
index 67bc1e1f..ae345da 100644
--- a/include/linux/interrupt.h
+++ b/include/linux/interrupt.h
@@ -713,4 +713,6 @@ extern char __softirqentry_text_end[];
#define __softirq_entry
#endif
+void irq_program_affinity(unsigned int irq);
+
#endif
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c
index cc1cc64..02552a4 100644
--- a/kernel/irq/manage.c
+++ b/kernel/irq/manage.c
@@ -240,6 +240,20 @@ int __irq_set_affinity(unsigned int irq, const struct cpumask *mask, bool force)
return ret;
}
+void irq_program_affinity(unsigned int irq)
+{
+ struct irq_desc *desc = irq_to_desc(irq);
+ struct irq_data *data = irq_desc_get_irq_data(desc);
+ unsigned long flags;
+
+ if (WARN_ON_ONCE(!desc))
+ return;
+
+ raw_spin_lock_irqsave(&desc->lock, flags);
+ irq_set_affinity_locked(data, desc->irq_common_data.affinity, false);
+ raw_spin_unlock_irqrestore(&desc->lock, flags);
+}
+
int irq_set_affinity_hint(unsigned int irq, const struct cpumask *m)
{
unsigned long flags;
--
2.1.4
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 4/8] genirq: add a helper to program the pre-set affinity mask into the controller Christoph Hellwig <hch@lst.de> - 2016-04-16 03:40 +0200
csiph-web