This is a note to let you know that I've just added the patch titled iio: hid_sensor_hub: Fix indio_dev->trig assignment to the 3.14-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: iio-hid_sensor_hub-fix-indio_dev-trig-assignment.patch and it can be found in the queue-3.14 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 55a6f9ddfdea0d2d343cd1b39baf8aa752664b6e Mon Sep 17 00:00:00 2001 From: Srinivas Pandruvada <srinivas.pandruvada@xxxxxxxxxxxxxxx> Date: Fri, 22 Aug 2014 21:48:00 +0100 Subject: iio: hid_sensor_hub: Fix indio_dev->trig assignment From: Srinivas Pandruvada <srinivas.pandruvada@xxxxxxxxxxxxxxx> commit 55a6f9ddfdea0d2d343cd1b39baf8aa752664b6e upstream. 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> Signed-off-by: Jonathan Cameron <jic23@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/iio/common/hid-sensors/hid-sensor-trigger.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/drivers/iio/common/hid-sensors/hid-sensor-trigger.c +++ b/drivers/iio/common/hid-sensors/hid-sensor-trigger.c @@ -99,7 +99,8 @@ int hid_sensor_setup_trigger(struct iio_ dev_err(&indio_dev->dev, "Trigger Register Failed\n"); goto error_free_trig; } - indio_dev->trig = attrb->trigger = trig; + attrb->trigger = trig; + indio_dev->trig = iio_trigger_get(trig); return ret; Patches currently in stable-queue which might be from srinivas.pandruvada@xxxxxxxxxxxxxxx are queue-3.14/iio-hid_sensor_hub-fix-indio_dev-trig-assignment.patch queue-3.14/iio-meter-ade7758-fix-indio_dev-trig-assignment.patch queue-3.14/iio-trigger-modify-return-value-for-iio_trigger_get.patch queue-3.14/iio-adc-ad_sigma_delta-fix-indio_dev-trig-assignment.patch queue-3.14/iio-st_sensors-fix-indio_dev-trig-assignment.patch queue-3.14/iio-gyro-itg3200-fix-indio_dev-trig-assignment.patch queue-3.14/iio-inv_mpu6050-fix-indio_dev-trig-assignment.patch queue-3.14/iio-accel-bma180-fix-indio_dev-trig-assignment.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html