Skip to content

Commit 3a90795

Browse files
committed
genirq: Move bus locking into __setup_irq()
There is no point in having the irq_bus_lock() protection around all callers to __setup_irq(). Move it into __setup_irq(). This is also a preparatory patch for addressing the issues with the irq resource callbacks. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Marc Zyngier <marc.zyngier@arm.com> Cc: Heiko Stuebner <heiko@sntech.de> Cc: Julia Cartwright <julia@ni.com> Cc: Linus Walleij <linus.walleij@linaro.org> Cc: Brian Norris <briannorris@chromium.org> Cc: Doug Anderson <dianders@chromium.org> Cc: linux-rockchip@lists.infradead.org Cc: John Keeping <john@metanate.com> Cc: linux-gpio@vger.kernel.org Link: http://lkml.kernel.org/r/20170629214343.960949031@linutronix.de
1 parent 2372a51 commit 3a90795

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

kernel/irq/manage.c

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1167,6 +1167,8 @@ __setup_irq(unsigned int irq, struct irq_desc *desc, struct irqaction *new)
11671167
if (desc->irq_data.chip->flags & IRQCHIP_ONESHOT_SAFE)
11681168
new->flags &= ~IRQF_ONESHOT;
11691169

1170+
chip_bus_lock(desc);
1171+
11701172
/*
11711173
* The following block of code has to be executed atomically
11721174
*/
@@ -1347,6 +1349,7 @@ __setup_irq(unsigned int irq, struct irq_desc *desc, struct irqaction *new)
13471349
}
13481350

13491351
raw_spin_unlock_irqrestore(&desc->lock, flags);
1352+
chip_bus_sync_unlock(desc);
13501353

13511354
irq_setup_timings(desc, new);
13521355

@@ -1378,6 +1381,8 @@ __setup_irq(unsigned int irq, struct irq_desc *desc, struct irqaction *new)
13781381
out_unlock:
13791382
raw_spin_unlock_irqrestore(&desc->lock, flags);
13801383

1384+
chip_bus_sync_unlock(desc);
1385+
13811386
out_thread:
13821387
if (new->thread) {
13831388
struct task_struct *t = new->thread;
@@ -1417,9 +1422,7 @@ int setup_irq(unsigned int irq, struct irqaction *act)
14171422
if (retval < 0)
14181423
return retval;
14191424

1420-
chip_bus_lock(desc);
14211425
retval = __setup_irq(irq, desc, act);
1422-
chip_bus_sync_unlock(desc);
14231426

14241427
if (retval)
14251428
irq_chip_pm_put(&desc->irq_data);
@@ -1674,9 +1677,7 @@ int request_threaded_irq(unsigned int irq, irq_handler_t handler,
16741677
return retval;
16751678
}
16761679

1677-
chip_bus_lock(desc);
16781680
retval = __setup_irq(irq, desc, action);
1679-
chip_bus_sync_unlock(desc);
16801681

16811682
if (retval) {
16821683
irq_chip_pm_put(&desc->irq_data);
@@ -1924,9 +1925,7 @@ int setup_percpu_irq(unsigned int irq, struct irqaction *act)
19241925
if (retval < 0)
19251926
return retval;
19261927

1927-
chip_bus_lock(desc);
19281928
retval = __setup_irq(irq, desc, act);
1929-
chip_bus_sync_unlock(desc);
19301929

19311930
if (retval)
19321931
irq_chip_pm_put(&desc->irq_data);
@@ -1980,9 +1979,7 @@ int request_percpu_irq(unsigned int irq, irq_handler_t handler,
19801979
return retval;
19811980
}
19821981

1983-
chip_bus_lock(desc);
19841982
retval = __setup_irq(irq, desc, action);
1985-
chip_bus_sync_unlock(desc);
19861983

19871984
if (retval) {
19881985
irq_chip_pm_put(&desc->irq_data);

0 commit comments

Comments
 (0)