]> Git Repo - J-linux.git/commitdiff
genirq/irq_sim: Make the irq_work always run in hard irq context
authorSebastian Andrzej Siewior <[email protected]>
Wed, 11 May 2022 11:07:50 +0000 (13:07 +0200)
committerThomas Gleixner <[email protected]>
Sat, 14 May 2022 15:48:27 +0000 (17:48 +0200)
The IRQ simulator uses irq_work to trigger an interrupt. Without the
IRQ_WORK_HARD_IRQ flag the irq_work will be performed in thread context
on PREEMPT_RT. This causes locking errors later in handle_simple_irq()
which expects to be invoked with disabled interrupts.

Triggering individual interrupts in hardirq context should not lead to
unexpected high latencies since this is also what the hardware
controller does. Also it is used as a simulator so...

Use IRQ_WORK_INIT_HARD() to carry out the irq_work in hardirq context on
PREEMPT_RT.

Signed-off-by: Sebastian Andrzej Siewior <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
kernel/irq/irq_sim.c

index 0cd02efa3a742ed77fbcafb49869bf45e82520fa..dd76323ea3fd7410d56dc648441595e3474e6426 100644 (file)
@@ -181,7 +181,7 @@ struct irq_domain *irq_domain_create_sim(struct fwnode_handle *fwnode,
                goto err_free_bitmap;
 
        work_ctx->irq_count = num_irqs;
-       init_irq_work(&work_ctx->work, irq_sim_handle_irq);
+       work_ctx->work = IRQ_WORK_INIT_HARD(irq_sim_handle_irq);
 
        return work_ctx->domain;
 
This page took 0.056448 seconds and 4 git commands to generate.