Hi Lars
On Monday, 3 August 2020, 08:52:54 CEST, Lars-Peter Clausen wrote:
On 8/3/20 8:44 AM, Christian Eggers wrote:I can confirm that this works for iio-trig-sysfs on 5.4.54-rt32. Currently I
...The code in normal upstream is correct, there is no need to patch it
is my patch sufficient, or would you prefer a different solution?
since iio_sysfs_trigger_work() always runs with IRQs disabled.
That explains it. Have a look atAre you using a non-upstream kernel? Maybe a RT kernel?I use v5.4.<almost-latest>-rt
0200-irqwork-push-most-work-into-softirq-context.patch.
The right fix for this issue is to add the following snippet to the RT
patchset.
diff --git a/drivers/iio/trigger/iio-trig-sysfs.c
b/drivers/iio/trigger/iio-trig-sysfs.c
--- a/drivers/iio/trigger/iio-trig-sysfs.c
+++ b/drivers/iio/trigger/iio-trig-sysfs.c
@@ -161,6 +161,7 @@ static int iio_sysfs_trigger_probe(int id)
iio_trigger_set_drvdata(t->trig, t);
init_irq_work(&t->work, iio_sysfs_trigger_work);
+ t->work.flags = IRQ_WORK_HARD_IRQ;
ret = iio_trigger_register(t->trig);
if (ret)
do not use iio-trig-hrtimer, but if I remember correctly, the problem was also
present there.
Do you want to apply your patch for mainline? In contrast to v5.4,
IRQ_WORK_HARD_IRQ is already available there (moved to smp_types.h).
Unfortunately I cannot test it on mainline for now, as my BSP stuff is not
ported yet.