stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* FAILED: patch "[PATCH] iio: imu: st_lsm6dsx: Fix selection of ST_LSM6DS3_ID" failed to apply to 4.19-stable tree
@ 2020-01-19 13:33 gregkh
  2020-01-19 15:32 ` Sasha Levin
  0 siblings, 1 reply; 6+ messages in thread
From: gregkh @ 2020-01-19 13:33 UTC (permalink / raw)
  To: stephan, Jonathan.Cameron, gregkh, lorenzo, stable; +Cc: stable


The patch below does not apply to the 4.19-stable tree.
If someone wants it applied there, or to any other stable or longterm
tree, then please email the backport, including the original git commit
id to <stable@vger.kernel.org>.

thanks,

greg k-h

------------------ original commit in Linus's tree ------------------

From fb4fbc8904e786537e29329d791147389e1465a2 Mon Sep 17 00:00:00 2001
From: Stephan Gerhold <stephan@gerhold.net>
Date: Mon, 16 Dec 2019 13:41:20 +0100
Subject: [PATCH] iio: imu: st_lsm6dsx: Fix selection of ST_LSM6DS3_ID

At the moment, attempting to probe a device with ST_LSM6DS3_ID
(e.g. using the st,lsm6ds3 compatible) fails with:

    st_lsm6dsx_i2c 1-006b: unsupported whoami [69]

... even though 0x69 is the whoami listed for ST_LSM6DS3_ID.

This happens because st_lsm6dsx_check_whoami() also attempts
to match unspecified (zero-initialized) entries in the "id" array.
ST_LSM6DS3_ID = 0 will therefore match any entry in
st_lsm6dsx_sensor_settings (here: the first), because none of them
actually have all 12 entries listed in the "id" array.

Avoid this by additionally checking if "name" is set,
which is only set for valid entries in the "id" array.

Note: Although the problem was introduced earlier it did not surface until
commit 52f4b1f19679 ("iio: imu: st_lsm6dsx: add support for accel/gyro unit of lsm9ds1")
because ST_LSM6DS3_ID was the first entry in st_lsm6dsx_sensor_settings.

Fixes: d068e4a0f921 ("iio: imu: st_lsm6dsx: add support to multiple devices with the same settings")
Cc: <stable@vger.kernel.org> # 5.4
Acked-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Stephan Gerhold <stephan@gerhold.net>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c
index a7d40c02ce6b..b921dd9e108f 100644
--- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c
+++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c
@@ -1301,7 +1301,8 @@ static int st_lsm6dsx_check_whoami(struct st_lsm6dsx_hw *hw, int id,
 
 	for (i = 0; i < ARRAY_SIZE(st_lsm6dsx_sensor_settings); i++) {
 		for (j = 0; j < ST_LSM6DSX_MAX_ID; j++) {
-			if (id == st_lsm6dsx_sensor_settings[i].id[j].hw_id)
+			if (st_lsm6dsx_sensor_settings[i].id[j].name &&
+			    id == st_lsm6dsx_sensor_settings[i].id[j].hw_id)
 				break;
 		}
 		if (j < ST_LSM6DSX_MAX_ID)


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: FAILED: patch "[PATCH] iio: imu: st_lsm6dsx: Fix selection of ST_LSM6DS3_ID" failed to apply to 4.19-stable tree
  2020-01-19 13:33 FAILED: patch "[PATCH] iio: imu: st_lsm6dsx: Fix selection of ST_LSM6DS3_ID" failed to apply to 4.19-stable tree gregkh
@ 2020-01-19 15:32 ` Sasha Levin
  2020-01-19 16:15   ` Stephan Gerhold
  0 siblings, 1 reply; 6+ messages in thread
From: Sasha Levin @ 2020-01-19 15:32 UTC (permalink / raw)
  To: gregkh; +Cc: stephan, Jonathan.Cameron, lorenzo, stable

On Sun, Jan 19, 2020 at 02:33:30PM +0100, gregkh@linuxfoundation.org wrote:
>
>The patch below does not apply to the 4.19-stable tree.
>If someone wants it applied there, or to any other stable or longterm
>tree, then please email the backport, including the original git commit
>id to <stable@vger.kernel.org>.
>
>thanks,
>
>greg k-h
>
>------------------ original commit in Linus's tree ------------------
>
>From fb4fbc8904e786537e29329d791147389e1465a2 Mon Sep 17 00:00:00 2001
>From: Stephan Gerhold <stephan@gerhold.net>
>Date: Mon, 16 Dec 2019 13:41:20 +0100
>Subject: [PATCH] iio: imu: st_lsm6dsx: Fix selection of ST_LSM6DS3_ID
>
>At the moment, attempting to probe a device with ST_LSM6DS3_ID
>(e.g. using the st,lsm6ds3 compatible) fails with:
>
>    st_lsm6dsx_i2c 1-006b: unsupported whoami [69]
>
>... even though 0x69 is the whoami listed for ST_LSM6DS3_ID.
>
>This happens because st_lsm6dsx_check_whoami() also attempts
>to match unspecified (zero-initialized) entries in the "id" array.
>ST_LSM6DS3_ID = 0 will therefore match any entry in
>st_lsm6dsx_sensor_settings (here: the first), because none of them
>actually have all 12 entries listed in the "id" array.
>
>Avoid this by additionally checking if "name" is set,
>which is only set for valid entries in the "id" array.
>
>Note: Although the problem was introduced earlier it did not surface until
>commit 52f4b1f19679 ("iio: imu: st_lsm6dsx: add support for accel/gyro unit of lsm9ds1")
>because ST_LSM6DS3_ID was the first entry in st_lsm6dsx_sensor_settings.
>
>Fixes: d068e4a0f921 ("iio: imu: st_lsm6dsx: add support to multiple devices with the same settings")
>Cc: <stable@vger.kernel.org> # 5.4
>Acked-by: Lorenzo Bianconi <lorenzo@kernel.org>
>Signed-off-by: Stephan Gerhold <stephan@gerhold.net>
>Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
>Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

I don't think that this is needed on anything older than 5.4 because
they don't have 801a6e0af0c6 ("iio: imu: st_lsm6dsx: add support to
LSM6DSO"), the fixes tag might be misleading here a bit.

-- 
Thanks,
Sasha

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: FAILED: patch "[PATCH] iio: imu: st_lsm6dsx: Fix selection of ST_LSM6DS3_ID" failed to apply to 4.19-stable tree
  2020-01-19 15:32 ` Sasha Levin
@ 2020-01-19 16:15   ` Stephan Gerhold
  2020-01-19 18:55     ` Sasha Levin
  0 siblings, 1 reply; 6+ messages in thread
From: Stephan Gerhold @ 2020-01-19 16:15 UTC (permalink / raw)
  To: Sasha Levin; +Cc: gregkh, Jonathan.Cameron, lorenzo, stable

On Sun, Jan 19, 2020 at 10:32:53AM -0500, Sasha Levin wrote:
> On Sun, Jan 19, 2020 at 02:33:30PM +0100, gregkh@linuxfoundation.org wrote:
> > 
> > The patch below does not apply to the 4.19-stable tree.
> > If someone wants it applied there, or to any other stable or longterm
> > tree, then please email the backport, including the original git commit
> > id to <stable@vger.kernel.org>.
> > 
> > thanks,
> > 
> > greg k-h
> > 
> > ------------------ original commit in Linus's tree ------------------
> > 
> > From fb4fbc8904e786537e29329d791147389e1465a2 Mon Sep 17 00:00:00 2001
> > From: Stephan Gerhold <stephan@gerhold.net>
> > Date: Mon, 16 Dec 2019 13:41:20 +0100
> > Subject: [PATCH] iio: imu: st_lsm6dsx: Fix selection of ST_LSM6DS3_ID
> > 
> > At the moment, attempting to probe a device with ST_LSM6DS3_ID
> > (e.g. using the st,lsm6ds3 compatible) fails with:
> > 
> >    st_lsm6dsx_i2c 1-006b: unsupported whoami [69]
> > 
> > ... even though 0x69 is the whoami listed for ST_LSM6DS3_ID.
> > 
> > This happens because st_lsm6dsx_check_whoami() also attempts
> > to match unspecified (zero-initialized) entries in the "id" array.
> > ST_LSM6DS3_ID = 0 will therefore match any entry in
> > st_lsm6dsx_sensor_settings (here: the first), because none of them
> > actually have all 12 entries listed in the "id" array.
> > 
> > Avoid this by additionally checking if "name" is set,
> > which is only set for valid entries in the "id" array.
> > 
> > Note: Although the problem was introduced earlier it did not surface until
> > commit 52f4b1f19679 ("iio: imu: st_lsm6dsx: add support for accel/gyro unit of lsm9ds1")
> > because ST_LSM6DS3_ID was the first entry in st_lsm6dsx_sensor_settings.
> > 
> > Fixes: d068e4a0f921 ("iio: imu: st_lsm6dsx: add support to multiple devices with the same settings")
> > Cc: <stable@vger.kernel.org> # 5.4
> > Acked-by: Lorenzo Bianconi <lorenzo@kernel.org>
> > Signed-off-by: Stephan Gerhold <stephan@gerhold.net>
> > Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
> > Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> 
> I don't think that this is needed on anything older than 5.4 because
> they don't have 801a6e0af0c6 ("iio: imu: st_lsm6dsx: add support to
> LSM6DSO"), the fixes tag might be misleading here a bit.

Correct. I didn't want to use 801a6e0af0c6 ("iio: imu: st_lsm6dsx: add
support to LSM6DSO") as Fixes tag because that commit did not do
anything wrong - the problem was introduced earlier, but there is no way
to trigger it on older kernels.

This is why I added # 5.5 to the Cc: stable tag.
Are these comments still used in any way?
Or is there a better way to encode this into the commit message?

Thanks,
Stephan

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: FAILED: patch "[PATCH] iio: imu: st_lsm6dsx: Fix selection of ST_LSM6DS3_ID" failed to apply to 4.19-stable tree
  2020-01-19 16:15   ` Stephan Gerhold
@ 2020-01-19 18:55     ` Sasha Levin
  2020-01-19 19:10       ` Stephan Gerhold
  0 siblings, 1 reply; 6+ messages in thread
From: Sasha Levin @ 2020-01-19 18:55 UTC (permalink / raw)
  To: Stephan Gerhold; +Cc: gregkh, Jonathan.Cameron, lorenzo, stable

On Sun, Jan 19, 2020 at 05:15:33PM +0100, Stephan Gerhold wrote:
>On Sun, Jan 19, 2020 at 10:32:53AM -0500, Sasha Levin wrote:
>> On Sun, Jan 19, 2020 at 02:33:30PM +0100, gregkh@linuxfoundation.org wrote:
>> >
>> > The patch below does not apply to the 4.19-stable tree.
>> > If someone wants it applied there, or to any other stable or longterm
>> > tree, then please email the backport, including the original git commit
>> > id to <stable@vger.kernel.org>.
>> >
>> > thanks,
>> >
>> > greg k-h
>> >
>> > ------------------ original commit in Linus's tree ------------------
>> >
>> > From fb4fbc8904e786537e29329d791147389e1465a2 Mon Sep 17 00:00:00 2001
>> > From: Stephan Gerhold <stephan@gerhold.net>
>> > Date: Mon, 16 Dec 2019 13:41:20 +0100
>> > Subject: [PATCH] iio: imu: st_lsm6dsx: Fix selection of ST_LSM6DS3_ID
>> >
>> > At the moment, attempting to probe a device with ST_LSM6DS3_ID
>> > (e.g. using the st,lsm6ds3 compatible) fails with:
>> >
>> >    st_lsm6dsx_i2c 1-006b: unsupported whoami [69]
>> >
>> > ... even though 0x69 is the whoami listed for ST_LSM6DS3_ID.
>> >
>> > This happens because st_lsm6dsx_check_whoami() also attempts
>> > to match unspecified (zero-initialized) entries in the "id" array.
>> > ST_LSM6DS3_ID = 0 will therefore match any entry in
>> > st_lsm6dsx_sensor_settings (here: the first), because none of them
>> > actually have all 12 entries listed in the "id" array.
>> >
>> > Avoid this by additionally checking if "name" is set,
>> > which is only set for valid entries in the "id" array.
>> >
>> > Note: Although the problem was introduced earlier it did not surface until
>> > commit 52f4b1f19679 ("iio: imu: st_lsm6dsx: add support for accel/gyro unit of lsm9ds1")
>> > because ST_LSM6DS3_ID was the first entry in st_lsm6dsx_sensor_settings.
>> >
>> > Fixes: d068e4a0f921 ("iio: imu: st_lsm6dsx: add support to multiple devices with the same settings")
>> > Cc: <stable@vger.kernel.org> # 5.4
>> > Acked-by: Lorenzo Bianconi <lorenzo@kernel.org>
>> > Signed-off-by: Stephan Gerhold <stephan@gerhold.net>
>> > Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
>> > Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>>
>> I don't think that this is needed on anything older than 5.4 because
>> they don't have 801a6e0af0c6 ("iio: imu: st_lsm6dsx: add support to
>> LSM6DSO"), the fixes tag might be misleading here a bit.
>
>Correct. I didn't want to use 801a6e0af0c6 ("iio: imu: st_lsm6dsx: add
>support to LSM6DSO") as Fixes tag because that commit did not do
>anything wrong - the problem was introduced earlier, but there is no way
>to trigger it on older kernels.
>
>This is why I added # 5.5 to the Cc: stable tag.
>Are these comments still used in any way?
>Or is there a better way to encode this into the commit message?

Usually if there's a fixes: tag we'll look at that rather than the
version appended to the stable tag.

Consider maybe using two "Fixes:" tags to point at the commits that were
involved.

-- 
Thanks,
Sasha

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: FAILED: patch "[PATCH] iio: imu: st_lsm6dsx: Fix selection of ST_LSM6DS3_ID" failed to apply to 4.19-stable tree
  2020-01-19 18:55     ` Sasha Levin
@ 2020-01-19 19:10       ` Stephan Gerhold
  2020-01-19 19:28         ` Sasha Levin
  0 siblings, 1 reply; 6+ messages in thread
From: Stephan Gerhold @ 2020-01-19 19:10 UTC (permalink / raw)
  To: Sasha Levin; +Cc: gregkh, Jonathan.Cameron, lorenzo, stable

On Sun, Jan 19, 2020 at 01:55:30PM -0500, Sasha Levin wrote:
> On Sun, Jan 19, 2020 at 05:15:33PM +0100, Stephan Gerhold wrote:
> > On Sun, Jan 19, 2020 at 10:32:53AM -0500, Sasha Levin wrote:
> > > On Sun, Jan 19, 2020 at 02:33:30PM +0100, gregkh@linuxfoundation.org wrote:
> > > >
> > > > The patch below does not apply to the 4.19-stable tree.
> > > > If someone wants it applied there, or to any other stable or longterm
> > > > tree, then please email the backport, including the original git commit
> > > > id to <stable@vger.kernel.org>.
> > > >
> > > > thanks,
> > > >
> > > > greg k-h
> > > >
> > > > ------------------ original commit in Linus's tree ------------------
> > > >
> > > > From fb4fbc8904e786537e29329d791147389e1465a2 Mon Sep 17 00:00:00 2001
> > > > From: Stephan Gerhold <stephan@gerhold.net>
> > > > Date: Mon, 16 Dec 2019 13:41:20 +0100
> > > > Subject: [PATCH] iio: imu: st_lsm6dsx: Fix selection of ST_LSM6DS3_ID
> > > >
> > > > At the moment, attempting to probe a device with ST_LSM6DS3_ID
> > > > (e.g. using the st,lsm6ds3 compatible) fails with:
> > > >
> > > >    st_lsm6dsx_i2c 1-006b: unsupported whoami [69]
> > > >
> > > > ... even though 0x69 is the whoami listed for ST_LSM6DS3_ID.
> > > >
> > > > This happens because st_lsm6dsx_check_whoami() also attempts
> > > > to match unspecified (zero-initialized) entries in the "id" array.
> > > > ST_LSM6DS3_ID = 0 will therefore match any entry in
> > > > st_lsm6dsx_sensor_settings (here: the first), because none of them
> > > > actually have all 12 entries listed in the "id" array.
> > > >
> > > > Avoid this by additionally checking if "name" is set,
> > > > which is only set for valid entries in the "id" array.
> > > >
> > > > Note: Although the problem was introduced earlier it did not surface until
> > > > commit 52f4b1f19679 ("iio: imu: st_lsm6dsx: add support for accel/gyro unit of lsm9ds1")
> > > > because ST_LSM6DS3_ID was the first entry in st_lsm6dsx_sensor_settings.
> > > >
> > > > Fixes: d068e4a0f921 ("iio: imu: st_lsm6dsx: add support to multiple devices with the same settings")
> > > > Cc: <stable@vger.kernel.org> # 5.4
> > > > Acked-by: Lorenzo Bianconi <lorenzo@kernel.org>
> > > > Signed-off-by: Stephan Gerhold <stephan@gerhold.net>
> > > > Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
> > > > Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> > > 
> > > I don't think that this is needed on anything older than 5.4 because
> > > they don't have 801a6e0af0c6 ("iio: imu: st_lsm6dsx: add support to
> > > LSM6DSO"), the fixes tag might be misleading here a bit.
> > 
> > Correct. I didn't want to use 801a6e0af0c6 ("iio: imu: st_lsm6dsx: add
> > support to LSM6DSO") as Fixes tag because that commit did not do
> > anything wrong - the problem was introduced earlier, but there is no way
> > to trigger it on older kernels.
> > 
> > This is why I added # 5.5 to the Cc: stable tag.
> > Are these comments still used in any way?
> > Or is there a better way to encode this into the commit message?
> 
> Usually if there's a fixes: tag we'll look at that rather than the
> version appended to the stable tag.
> 
> Consider maybe using two "Fixes:" tags to point at the commits that were
> involved.

So basically this

Fixes: d068e4a0f921 ("iio: imu: st_lsm6dsx: add support to multiple devices with the same settings")
Fixes: 52f4b1f19679 ("iio: imu: st_lsm6dsx: add support for accel/gyro unit of lsm9ds1")

would mean "fixes the combination of these two commits"?

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: FAILED: patch "[PATCH] iio: imu: st_lsm6dsx: Fix selection of ST_LSM6DS3_ID" failed to apply to 4.19-stable tree
  2020-01-19 19:10       ` Stephan Gerhold
@ 2020-01-19 19:28         ` Sasha Levin
  0 siblings, 0 replies; 6+ messages in thread
From: Sasha Levin @ 2020-01-19 19:28 UTC (permalink / raw)
  To: Stephan Gerhold; +Cc: gregkh, Jonathan.Cameron, lorenzo, stable

On Sun, Jan 19, 2020 at 08:10:32PM +0100, Stephan Gerhold wrote:
>On Sun, Jan 19, 2020 at 01:55:30PM -0500, Sasha Levin wrote:
>> On Sun, Jan 19, 2020 at 05:15:33PM +0100, Stephan Gerhold wrote:
>> > On Sun, Jan 19, 2020 at 10:32:53AM -0500, Sasha Levin wrote:
>> > > On Sun, Jan 19, 2020 at 02:33:30PM +0100, gregkh@linuxfoundation.org wrote:
>> > > >
>> > > > The patch below does not apply to the 4.19-stable tree.
>> > > > If someone wants it applied there, or to any other stable or longterm
>> > > > tree, then please email the backport, including the original git commit
>> > > > id to <stable@vger.kernel.org>.
>> > > >
>> > > > thanks,
>> > > >
>> > > > greg k-h
>> > > >
>> > > > ------------------ original commit in Linus's tree ------------------
>> > > >
>> > > > From fb4fbc8904e786537e29329d791147389e1465a2 Mon Sep 17 00:00:00 2001
>> > > > From: Stephan Gerhold <stephan@gerhold.net>
>> > > > Date: Mon, 16 Dec 2019 13:41:20 +0100
>> > > > Subject: [PATCH] iio: imu: st_lsm6dsx: Fix selection of ST_LSM6DS3_ID
>> > > >
>> > > > At the moment, attempting to probe a device with ST_LSM6DS3_ID
>> > > > (e.g. using the st,lsm6ds3 compatible) fails with:
>> > > >
>> > > >    st_lsm6dsx_i2c 1-006b: unsupported whoami [69]
>> > > >
>> > > > ... even though 0x69 is the whoami listed for ST_LSM6DS3_ID.
>> > > >
>> > > > This happens because st_lsm6dsx_check_whoami() also attempts
>> > > > to match unspecified (zero-initialized) entries in the "id" array.
>> > > > ST_LSM6DS3_ID = 0 will therefore match any entry in
>> > > > st_lsm6dsx_sensor_settings (here: the first), because none of them
>> > > > actually have all 12 entries listed in the "id" array.
>> > > >
>> > > > Avoid this by additionally checking if "name" is set,
>> > > > which is only set for valid entries in the "id" array.
>> > > >
>> > > > Note: Although the problem was introduced earlier it did not surface until
>> > > > commit 52f4b1f19679 ("iio: imu: st_lsm6dsx: add support for accel/gyro unit of lsm9ds1")
>> > > > because ST_LSM6DS3_ID was the first entry in st_lsm6dsx_sensor_settings.
>> > > >
>> > > > Fixes: d068e4a0f921 ("iio: imu: st_lsm6dsx: add support to multiple devices with the same settings")
>> > > > Cc: <stable@vger.kernel.org> # 5.4
>> > > > Acked-by: Lorenzo Bianconi <lorenzo@kernel.org>
>> > > > Signed-off-by: Stephan Gerhold <stephan@gerhold.net>
>> > > > Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
>> > > > Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>> > >
>> > > I don't think that this is needed on anything older than 5.4 because
>> > > they don't have 801a6e0af0c6 ("iio: imu: st_lsm6dsx: add support to
>> > > LSM6DSO"), the fixes tag might be misleading here a bit.
>> >
>> > Correct. I didn't want to use 801a6e0af0c6 ("iio: imu: st_lsm6dsx: add
>> > support to LSM6DSO") as Fixes tag because that commit did not do
>> > anything wrong - the problem was introduced earlier, but there is no way
>> > to trigger it on older kernels.
>> >
>> > This is why I added # 5.5 to the Cc: stable tag.
>> > Are these comments still used in any way?
>> > Or is there a better way to encode this into the commit message?
>>
>> Usually if there's a fixes: tag we'll look at that rather than the
>> version appended to the stable tag.
>>
>> Consider maybe using two "Fixes:" tags to point at the commits that were
>> involved.
>
>So basically this
>
>Fixes: d068e4a0f921 ("iio: imu: st_lsm6dsx: add support to multiple devices with the same settings")
>Fixes: 52f4b1f19679 ("iio: imu: st_lsm6dsx: add support for accel/gyro unit of lsm9ds1")
>
>would mean "fixes the combination of these two commits"?

Yup!

-- 
Thanks,
Sasha

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-01-19 19:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-19 13:33 FAILED: patch "[PATCH] iio: imu: st_lsm6dsx: Fix selection of ST_LSM6DS3_ID" failed to apply to 4.19-stable tree gregkh
2020-01-19 15:32 ` Sasha Levin
2020-01-19 16:15   ` Stephan Gerhold
2020-01-19 18:55     ` Sasha Levin
2020-01-19 19:10       ` Stephan Gerhold
2020-01-19 19:28         ` Sasha Levin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).