All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] mmc: sdhci: Handle auto-command errors
@ 2019-04-23  8:50 Kaiyen Chang
  2019-04-23 12:34 ` Greg KH
  2019-04-23 13:42 ` Sasha Levin
  0 siblings, 2 replies; 6+ messages in thread
From: Kaiyen Chang @ 2019-04-23  8:50 UTC (permalink / raw)
  To: stable, adrian.hunter, ulf.hansson; +Cc: Kaiyen Chang

    Existing data command CRC error handling on kernel 4.20 stable branch
    is non-standard and does not work with some Intel host controllers.
    Specifically, the assumption that the host controller will continue
    operating normally after the error interrupt, is not valid. So we
    suggest cherry-pick the 3 patches listed below to kernel 4.20 stable
    branch, which can change the driver to handle the error in the same
    manner as a data CRC error.

    4bf7809: mmc: sdhci: Fix data command CRC error handling
    869f8a6: mmc: sdhci: Rename SDHCI_ACMD12_ERR and SDHCI_INT_ACMD12ERR
    af849c8: mmc: sdhci: Handle auto-command errors

    All of the patches above have landed on kernel 5.0 stable branch.

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

* Re: [PATCH v1] mmc: sdhci: Handle auto-command errors
  2019-04-23  8:50 [PATCH v1] mmc: sdhci: Handle auto-command errors Kaiyen Chang
@ 2019-04-23 12:34 ` Greg KH
  2019-04-24  1:16   ` Chang, Kaiyen
  2019-04-23 13:42 ` Sasha Levin
  1 sibling, 1 reply; 6+ messages in thread
From: Greg KH @ 2019-04-23 12:34 UTC (permalink / raw)
  To: Kaiyen Chang; +Cc: stable, adrian.hunter, ulf.hansson

On Tue, Apr 23, 2019 at 04:50:58PM +0800, Kaiyen Chang wrote:
>     Existing data command CRC error handling on kernel 4.20 stable branch
>     is non-standard and does not work with some Intel host controllers.
>     Specifically, the assumption that the host controller will continue
>     operating normally after the error interrupt, is not valid. So we
>     suggest cherry-pick the 3 patches listed below to kernel 4.20 stable
>     branch, which can change the driver to handle the error in the same
>     manner as a data CRC error.
> 
>     4bf7809: mmc: sdhci: Fix data command CRC error handling
>     869f8a6: mmc: sdhci: Rename SDHCI_ACMD12_ERR and SDHCI_INT_ACMD12ERR
>     af849c8: mmc: sdhci: Handle auto-command errors
> 
>     All of the patches above have landed on kernel 5.0 stable branch.

The 4.20.y stable branch is long end-of-life, so there is nothing to be
able to apply any patch to, sorry.

Remember to always check the front page of kernel.org for what trees are
still active.

greg k-h

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

* Re: [PATCH v1] mmc: sdhci: Handle auto-command errors
  2019-04-23  8:50 [PATCH v1] mmc: sdhci: Handle auto-command errors Kaiyen Chang
  2019-04-23 12:34 ` Greg KH
@ 2019-04-23 13:42 ` Sasha Levin
  2019-04-24  2:55   ` Chang, Kaiyen
  1 sibling, 1 reply; 6+ messages in thread
From: Sasha Levin @ 2019-04-23 13:42 UTC (permalink / raw)
  To: Kaiyen Chang; +Cc: stable, adrian.hunter, ulf.hansson

On Tue, Apr 23, 2019 at 04:50:58PM +0800, Kaiyen Chang wrote:
>    Existing data command CRC error handling on kernel 4.20 stable branch
>    is non-standard and does not work with some Intel host controllers.
>    Specifically, the assumption that the host controller will continue
>    operating normally after the error interrupt, is not valid. So we
>    suggest cherry-pick the 3 patches listed below to kernel 4.20 stable
>    branch, which can change the driver to handle the error in the same
>    manner as a data CRC error.
>
>    4bf7809: mmc: sdhci: Fix data command CRC error handling
>    869f8a6: mmc: sdhci: Rename SDHCI_ACMD12_ERR and SDHCI_INT_ACMD12ERR
>    af849c8: mmc: sdhci: Handle auto-command errors
>
>    All of the patches above have landed on kernel 5.0 stable branch.

4.20 went EoL quite a while ago, you should be using 5.0 at this point.

I've queued these to older stable kernels, thanks.

--
Thanks,
Sasha

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

* RE: [PATCH v1] mmc: sdhci: Handle auto-command errors
  2019-04-23 12:34 ` Greg KH
@ 2019-04-24  1:16   ` Chang, Kaiyen
  0 siblings, 0 replies; 6+ messages in thread
From: Chang, Kaiyen @ 2019-04-24  1:16 UTC (permalink / raw)
  To: Greg KH; +Cc: stable, Hunter, Adrian, ulf.hansson

Hi Greg,

Actually our goal is to merge the 3 patches to 4.19.y and 4.14.y stable branch, however, I mistakenly believed that the patches should be present in 4.20.y first and did not notice that 4.20.y has been EOL. Sorry for that.

Thanks,
Kaiyen

-----Original Message-----
From: Greg KH [mailto:gregkh@linuxfoundation.org] 
Sent: Tuesday, April 23, 2019 8:34 PM
To: Chang, Kaiyen <kaiyen.chang@intel.com>
Cc: stable@vger.kernel.org; Hunter, Adrian <adrian.hunter@intel.com>; ulf.hansson@linaro.org
Subject: Re: [PATCH v1] mmc: sdhci: Handle auto-command errors

On Tue, Apr 23, 2019 at 04:50:58PM +0800, Kaiyen Chang wrote:
>     Existing data command CRC error handling on kernel 4.20 stable branch
>     is non-standard and does not work with some Intel host controllers.
>     Specifically, the assumption that the host controller will continue
>     operating normally after the error interrupt, is not valid. So we
>     suggest cherry-pick the 3 patches listed below to kernel 4.20 stable
>     branch, which can change the driver to handle the error in the same
>     manner as a data CRC error.
> 
>     4bf7809: mmc: sdhci: Fix data command CRC error handling
>     869f8a6: mmc: sdhci: Rename SDHCI_ACMD12_ERR and SDHCI_INT_ACMD12ERR
>     af849c8: mmc: sdhci: Handle auto-command errors
> 
>     All of the patches above have landed on kernel 5.0 stable branch.

The 4.20.y stable branch is long end-of-life, so there is nothing to be able to apply any patch to, sorry.

Remember to always check the front page of kernel.org for what trees are still active.

greg k-h

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

* RE: [PATCH v1] mmc: sdhci: Handle auto-command errors
  2019-04-23 13:42 ` Sasha Levin
@ 2019-04-24  2:55   ` Chang, Kaiyen
  2019-04-24 12:58     ` Sasha Levin
  0 siblings, 1 reply; 6+ messages in thread
From: Chang, Kaiyen @ 2019-04-24  2:55 UTC (permalink / raw)
  To: Sasha Levin; +Cc: stable, Hunter, Adrian, ulf.hansson

> -----Original Message-----
> From: Sasha Levin [mailto:sashal@kernel.org]
> Sent: Tuesday, April 23, 2019 9:43 PM
> To: Chang, Kaiyen <kaiyen.chang@intel.com>
> Cc: stable@vger.kernel.org; Hunter, Adrian <adrian.hunter@intel.com>;
> ulf.hansson@linaro.org
> Subject: Re: [PATCH v1] mmc: sdhci: Handle auto-command errors
> 
> On Tue, Apr 23, 2019 at 04:50:58PM +0800, Kaiyen Chang wrote:
> >    Existing data command CRC error handling on kernel 4.20 stable branch
> >    is non-standard and does not work with some Intel host controllers.
> >    Specifically, the assumption that the host controller will continue
> >    operating normally after the error interrupt, is not valid. So we
> >    suggest cherry-pick the 3 patches listed below to kernel 4.20 stable
> >    branch, which can change the driver to handle the error in the same
> >    manner as a data CRC error.
> >
> >    4bf7809: mmc: sdhci: Fix data command CRC error handling
> >    869f8a6: mmc: sdhci: Rename SDHCI_ACMD12_ERR and
> SDHCI_INT_ACMD12ERR
> >    af849c8: mmc: sdhci: Handle auto-command errors
> >
> >    All of the patches above have landed on kernel 5.0 stable branch.
> 
> 4.20 went EoL quite a while ago, you should be using 5.0 at this point.
> 
> I've queued these to older stable kernels, thanks.
> 
> --
> Thanks,
> Sasha

Hi Sasha,

Actually our goal is to merge the 3 patches to 4.19.y and 4.14.y stable branch, however, I mistakenly believed that the patches should be present in 4.20.y first and did not notice that 4.20.y has been EOL. Sorry for that. Should I create another thread to issue the request for merging the 3 patches to 4.19.y and 4.14.y?

Thanks,
Kaiyen

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

* Re: [PATCH v1] mmc: sdhci: Handle auto-command errors
  2019-04-24  2:55   ` Chang, Kaiyen
@ 2019-04-24 12:58     ` Sasha Levin
  0 siblings, 0 replies; 6+ messages in thread
From: Sasha Levin @ 2019-04-24 12:58 UTC (permalink / raw)
  To: Chang, Kaiyen; +Cc: stable, Hunter, Adrian, ulf.hansson

On Wed, Apr 24, 2019 at 02:55:31AM +0000, Chang, Kaiyen wrote:
>> -----Original Message-----
>> From: Sasha Levin [mailto:sashal@kernel.org]
>> Sent: Tuesday, April 23, 2019 9:43 PM
>> To: Chang, Kaiyen <kaiyen.chang@intel.com>
>> Cc: stable@vger.kernel.org; Hunter, Adrian <adrian.hunter@intel.com>;
>> ulf.hansson@linaro.org
>> Subject: Re: [PATCH v1] mmc: sdhci: Handle auto-command errors
>>
>> On Tue, Apr 23, 2019 at 04:50:58PM +0800, Kaiyen Chang wrote:
>> >    Existing data command CRC error handling on kernel 4.20 stable branch
>> >    is non-standard and does not work with some Intel host controllers.
>> >    Specifically, the assumption that the host controller will continue
>> >    operating normally after the error interrupt, is not valid. So we
>> >    suggest cherry-pick the 3 patches listed below to kernel 4.20 stable
>> >    branch, which can change the driver to handle the error in the same
>> >    manner as a data CRC error.
>> >
>> >    4bf7809: mmc: sdhci: Fix data command CRC error handling
>> >    869f8a6: mmc: sdhci: Rename SDHCI_ACMD12_ERR and
>> SDHCI_INT_ACMD12ERR
>> >    af849c8: mmc: sdhci: Handle auto-command errors
>> >
>> >    All of the patches above have landed on kernel 5.0 stable branch.
>>
>> 4.20 went EoL quite a while ago, you should be using 5.0 at this point.
>>
>> I've queued these to older stable kernels, thanks.
>>
>> --
>> Thanks,
>> Sasha
>
>Hi Sasha,
>
>Actually our goal is to merge the 3 patches to 4.19.y and 4.14.y stable branch, however, I mistakenly believed that the patches should be present in 4.20.y first and did not notice that 4.20.y has been EOL. Sorry for that. Should I create another thread to issue the request for merging the 3 patches to 4.19.y and 4.14.y?

I've already queued it for 4.19 and 4.14, nothing else to do here.

--
Thanks,
Sasha

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

end of thread, other threads:[~2019-04-24 12:58 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-23  8:50 [PATCH v1] mmc: sdhci: Handle auto-command errors Kaiyen Chang
2019-04-23 12:34 ` Greg KH
2019-04-24  1:16   ` Chang, Kaiyen
2019-04-23 13:42 ` Sasha Levin
2019-04-24  2:55   ` Chang, Kaiyen
2019-04-24 12:58     ` Sasha Levin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.