* [PATCH net-next] genirq: Eliminate explicit dependency between IRQ affinity notifiers and CONFIG_SMP
@ 2014-05-20 14:57 Amir Vadai
2014-05-22 19:28 ` David Miller
0 siblings, 1 reply; 3+ messages in thread
From: Amir Vadai @ 2014-05-20 14:57 UTC (permalink / raw)
To: David S. Miller, Thomas Gleixner
Cc: linux-kernel, netdev, Ben Hutchings, Amir Vadai, Yevgeny Petrilin,
Or Gerlitz, Eyal Perry
From: Eyal Perry <eyalpe@mellanox.com>
Instead of requiring each consumer of the IRQ affinity notifier to have
themselves be explicitly dependent on CONFIG_SMP, make the definition of
struct irq_affinity_notify to exist independently of that config option
and introduce a stub for irq_set_affinity_notifier() under non SMP
configuration.
Fixes: 2eacc23 ("net/mlx4_core: Enforce irq affinity changes
immediatly")
Signed-off-by: Eyal Perry <eyalpe@mellanox.com>
Signed-off-by: Amir Vadai <amirv@mellanox.com>
---
include/linux/interrupt.h | 46 ++++++++++++++++++++++++++--------------------
1 file changed, 26 insertions(+), 20 deletions(-)
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
index 97ac926..3f74c059 100644
--- a/include/linux/interrupt.h
+++ b/include/linux/interrupt.h
@@ -199,6 +199,26 @@ extern int check_wakeup_irqs(void);
static inline int check_wakeup_irqs(void) { return 0; }
#endif
+/**
+ * struct irq_affinity_notify - context for notification of IRQ affinity changes
+ * @irq: Interrupt to which notification applies
+ * @kref: Reference count, for internal use
+ * @work: Work item, for internal use
+ * @notify: Function to be called on change. This will be
+ * called in process context.
+ * @release: Function to be called on release. This will be
+ * called in process context. Once registered, the
+ * structure must only be freed when this function is
+ * called or later.
+ */
+struct irq_affinity_notify {
+ unsigned int irq;
+ struct kref kref;
+ struct work_struct work;
+ void (*notify)(struct irq_affinity_notify *, const cpumask_t *mask);
+ void (*release)(struct kref *ref);
+};
+
#if defined(CONFIG_SMP)
extern cpumask_var_t irq_default_affinity;
@@ -242,26 +262,6 @@ extern int irq_select_affinity(unsigned int irq);
extern int irq_set_affinity_hint(unsigned int irq, const struct cpumask *m);
-/**
- * struct irq_affinity_notify - context for notification of IRQ affinity changes
- * @irq: Interrupt to which notification applies
- * @kref: Reference count, for internal use
- * @work: Work item, for internal use
- * @notify: Function to be called on change. This will be
- * called in process context.
- * @release: Function to be called on release. This will be
- * called in process context. Once registered, the
- * structure must only be freed when this function is
- * called or later.
- */
-struct irq_affinity_notify {
- unsigned int irq;
- struct kref kref;
- struct work_struct work;
- void (*notify)(struct irq_affinity_notify *, const cpumask_t *mask);
- void (*release)(struct kref *ref);
-};
-
extern int
irq_set_affinity_notifier(unsigned int irq, struct irq_affinity_notify *notify);
@@ -284,6 +284,12 @@ static inline int irq_set_affinity_hint(unsigned int irq,
{
return -EINVAL;
}
+
+static inline int
+irq_set_affinity_notifier(unsigned int irq, struct irq_affinity_notify *notify)
+{
+ return 0;
+}
#endif /* CONFIG_SMP */
/*
--
1.8.3.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH net-next] genirq: Eliminate explicit dependency between IRQ affinity notifiers and CONFIG_SMP
2014-05-20 14:57 [PATCH net-next] genirq: Eliminate explicit dependency between IRQ affinity notifiers and CONFIG_SMP Amir Vadai
@ 2014-05-22 19:28 ` David Miller
2014-05-22 22:21 ` Thomas Gleixner
0 siblings, 1 reply; 3+ messages in thread
From: David Miller @ 2014-05-22 19:28 UTC (permalink / raw)
To: amirv; +Cc: tglx, linux-kernel, netdev, bhutchings, yevgenyp, ogerlitz,
eyalpe
From: Amir Vadai <amirv@mellanox.com>
Date: Tue, 20 May 2014 17:57:00 +0300
> From: Eyal Perry <eyalpe@mellanox.com>
>
> Instead of requiring each consumer of the IRQ affinity notifier to have
> themselves be explicitly dependent on CONFIG_SMP, make the definition of
> struct irq_affinity_notify to exist independently of that config option
> and introduce a stub for irq_set_affinity_notifier() under non SMP
> configuration.
>
> Fixes: 2eacc23 ("net/mlx4_core: Enforce irq affinity changes
> immediatly")
>
> Signed-off-by: Eyal Perry <eyalpe@mellanox.com>
> Signed-off-by: Amir Vadai <amirv@mellanox.com>
IRQ layer folks please review and push upstream if there aren't any
problems.
Thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net-next] genirq: Eliminate explicit dependency between IRQ affinity notifiers and CONFIG_SMP
2014-05-22 19:28 ` David Miller
@ 2014-05-22 22:21 ` Thomas Gleixner
0 siblings, 0 replies; 3+ messages in thread
From: Thomas Gleixner @ 2014-05-22 22:21 UTC (permalink / raw)
To: David Miller
Cc: amirv, linux-kernel, netdev, bhutchings, yevgenyp, ogerlitz,
eyalpe
On Thu, 22 May 2014, David Miller wrote:
> From: Amir Vadai <amirv@mellanox.com>
> Date: Tue, 20 May 2014 17:57:00 +0300
>
> > From: Eyal Perry <eyalpe@mellanox.com>
> >
> > Instead of requiring each consumer of the IRQ affinity notifier to have
> > themselves be explicitly dependent on CONFIG_SMP, make the definition of
> > struct irq_affinity_notify to exist independently of that config option
> > and introduce a stub for irq_set_affinity_notifier() under non SMP
> > configuration.
> >
> > Fixes: 2eacc23 ("net/mlx4_core: Enforce irq affinity changes
> > immediatly")
> >
> > Signed-off-by: Eyal Perry <eyalpe@mellanox.com>
> > Signed-off-by: Amir Vadai <amirv@mellanox.com>
>
> IRQ layer folks please review and push upstream if there aren't any
> problems.
It's queued for 3.16 in irq/core and also available for you as a
single commit to merge into your next tree at:
git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/for-net
if you want to carry it along for testing.
Thanks,
tglx
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-05-22 22:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-20 14:57 [PATCH net-next] genirq: Eliminate explicit dependency between IRQ affinity notifiers and CONFIG_SMP Amir Vadai
2014-05-22 19:28 ` David Miller
2014-05-22 22:21 ` Thomas Gleixner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).