On 23/08/14 08:00, Lars-Peter Clausen wrote: > On 08/22/2014 10:48 PM, Srinivas Pandruvada wrote: >> This can result in wrong reference count for trigger device, call >> iio_trigger_get to increment reference. >> Refer to http://www.spinics.net/lists/linux-iio/msg13669.html for discussion >> with Jonathan. >> >> Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@xxxxxxxxxxxxxxx> > > > Acked-by: Lars-Peter Clausen <lars@xxxxxxxxxx> Applied to the fixes-togreg branch of iio.git Whole series marked for stable. I debated whether this mades sense, but concluded that it did given the nasty effect of the double free this prevents. Thanks, J > > Thanks. > >> --- >> drivers/staging/iio/meter/ade7758_trigger.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/drivers/staging/iio/meter/ade7758_trigger.c b/drivers/staging/iio/meter/ade7758_trigger.c >> index ea01b8f..6f45ce0 100644 >> --- a/drivers/staging/iio/meter/ade7758_trigger.c >> +++ b/drivers/staging/iio/meter/ade7758_trigger.c >> @@ -85,7 +85,7 @@ int ade7758_probe_trigger(struct iio_dev *indio_dev) >> ret = iio_trigger_register(st->trig); >> >> /* select default trigger */ >> - indio_dev->trig = st->trig; >> + indio_dev->trig = iio_trigger_get(st->trig); >> if (ret) >> goto error_free_irq; >> >> > > -- > To unsubscribe from this list: send the line "unsubscribe linux-iio" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html