stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Patch "clk: at91: fix clk-generated parenting" has been added to the 4.9-stable tree
@ 2018-04-09 19:57 gregkh
  2018-04-10 19:06 ` Amit Pundir
  0 siblings, 1 reply; 4+ messages in thread
From: gregkh @ 2018-04-09 19:57 UTC (permalink / raw)
  To: alexandre.belloni, alexander.levin, gregkh, sboyd; +Cc: stable, stable-commits


This is a note to let you know that I've just added the patch titled

    clk: at91: fix clk-generated parenting

to the 4.9-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:
     clk-at91-fix-clk-generated-parenting.patch
and it can be found in the queue-4.9 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.


>From foo@baz Mon Apr  9 17:09:24 CEST 2018
From: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Date: Fri, 12 May 2017 16:25:30 +0200
Subject: clk: at91: fix clk-generated parenting

From: Alexandre Belloni <alexandre.belloni@free-electrons.com>


[ Upstream commit 8e56133e5c7b7a7a97f6a92d92f664d5ecd30745 ]

clk_generated_startup is called after clk_hw_register. So the first call to
get_parent will not have the correct value (i.e. 0) and because this is
cached, it may never be updated.

Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Fixes: df70aeef6083 ("clk: at91: add generated clock driver")
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/clk/at91/clk-generated.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

--- a/drivers/clk/at91/clk-generated.c
+++ b/drivers/clk/at91/clk-generated.c
@@ -260,13 +260,12 @@ at91_clk_register_generated(struct regma
 	gck->lock = lock;
 	gck->range = *range;
 
+	clk_generated_startup(gck);
 	hw = &gck->hw;
 	ret = clk_hw_register(NULL, &gck->hw);
 	if (ret) {
 		kfree(gck);
 		hw = ERR_PTR(ret);
-	} else
-		clk_generated_startup(gck);
 
 	return hw;
 }


Patches currently in stable-queue which might be from alexandre.belloni@free-electrons.com are

queue-4.9/clk-at91-fix-clk-generated-parenting.patch
queue-4.9/rtc-interface-validate-alarm-time-before-handling-rollover.patch
queue-4.9/rtc-m41t80-fix-sqw-dividers-override-when-setting-a-date.patch
queue-4.9/rtc-snvs-fix-an-incorrect-check-of-return-value.patch
queue-4.9/rtc-opal-handle-disabled-tpo-in-opal_get_tpo_time.patch

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

* Re: Patch "clk: at91: fix clk-generated parenting" has been added to the 4.9-stable tree
  2018-04-09 19:57 Patch "clk: at91: fix clk-generated parenting" has been added to the 4.9-stable tree gregkh
@ 2018-04-10 19:06 ` Amit Pundir
  2018-04-10 19:21   ` Alexandre Belloni
  0 siblings, 1 reply; 4+ messages in thread
From: Amit Pundir @ 2018-04-10 19:06 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: alexandre.belloni, alexander.levin, Stephen Boyd, stable,
	stable-commits

On 10 April 2018 at 01:27,  <gregkh@linuxfoundation.org> wrote:
>
> This is a note to let you know that I've just added the patch titled
>
>     clk: at91: fix clk-generated parenting
>
> to the 4.9-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:
>      clk-at91-fix-clk-generated-parenting.patch
> and it can be found in the queue-4.9 subdirectory.
>
> If you, or anyone else, feels it should not be added to the stable tree,
> please let <stable@vger.kernel.org> know about it.
>

This patch broke ARM builds at kernelci
https://kernelci.org/build/stable-rc/branch/linux-4.9.y/kernel/v4.9.93-278-g1614c07609f0/

Regards,
Amit Pundir

>
> From foo@baz Mon Apr  9 17:09:24 CEST 2018
> From: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> Date: Fri, 12 May 2017 16:25:30 +0200
> Subject: clk: at91: fix clk-generated parenting
>
> From: Alexandre Belloni <alexandre.belloni@free-electrons.com>
>
>
> [ Upstream commit 8e56133e5c7b7a7a97f6a92d92f664d5ecd30745 ]
>
> clk_generated_startup is called after clk_hw_register. So the first call to
> get_parent will not have the correct value (i.e. 0) and because this is
> cached, it may never be updated.
>
> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> Fixes: df70aeef6083 ("clk: at91: add generated clock driver")
> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
> Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> ---
>  drivers/clk/at91/clk-generated.c |    3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>
> --- a/drivers/clk/at91/clk-generated.c
> +++ b/drivers/clk/at91/clk-generated.c
> @@ -260,13 +260,12 @@ at91_clk_register_generated(struct regma
>         gck->lock = lock;
>         gck->range = *range;
>
> +       clk_generated_startup(gck);
>         hw = &gck->hw;
>         ret = clk_hw_register(NULL, &gck->hw);
>         if (ret) {
>                 kfree(gck);
>                 hw = ERR_PTR(ret);
> -       } else
> -               clk_generated_startup(gck);
>
>         return hw;
>  }
>
>
> Patches currently in stable-queue which might be from alexandre.belloni@free-electrons.com are
>
> queue-4.9/clk-at91-fix-clk-generated-parenting.patch
> queue-4.9/rtc-interface-validate-alarm-time-before-handling-rollover.patch
> queue-4.9/rtc-m41t80-fix-sqw-dividers-override-when-setting-a-date.patch
> queue-4.9/rtc-snvs-fix-an-incorrect-check-of-return-value.patch
> queue-4.9/rtc-opal-handle-disabled-tpo-in-opal_get_tpo_time.patch

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

* Re: Patch "clk: at91: fix clk-generated parenting" has been added to the 4.9-stable tree
  2018-04-10 19:06 ` Amit Pundir
@ 2018-04-10 19:21   ` Alexandre Belloni
  2018-04-10 21:11     ` Greg Kroah-Hartman
  0 siblings, 1 reply; 4+ messages in thread
From: Alexandre Belloni @ 2018-04-10 19:21 UTC (permalink / raw)
  To: Amit Pundir
  Cc: Greg Kroah-Hartman, alexander.levin, Stephen Boyd, stable,
	stable-commits

On 11/04/2018 00:36:11+0530, Amit Pundir wrote:
> On 10 April 2018 at 01:27,  <gregkh@linuxfoundation.org> wrote:
> >
> > This is a note to let you know that I've just added the patch titled
> >
> >     clk: at91: fix clk-generated parenting
> >
> > to the 4.9-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:
> >      clk-at91-fix-clk-generated-parenting.patch
> > and it can be found in the queue-4.9 subdirectory.
> >
> > If you, or anyone else, feels it should not be added to the stable tree,
> > please let <stable@vger.kernel.org> know about it.
> >
> 
> This patch broke ARM builds at kernelci
> https://kernelci.org/build/stable-rc/branch/linux-4.9.y/kernel/v4.9.93-278-g1614c07609f0/
> 

I guess this also need 4a5f06a01cfd1f7a9141bdb760bf5b68cca7f224


-- 
Alexandre Belloni, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

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

* Re: Patch "clk: at91: fix clk-generated parenting" has been added to the 4.9-stable tree
  2018-04-10 19:21   ` Alexandre Belloni
@ 2018-04-10 21:11     ` Greg Kroah-Hartman
  0 siblings, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2018-04-10 21:11 UTC (permalink / raw)
  To: Alexandre Belloni
  Cc: Amit Pundir, alexander.levin, Stephen Boyd, stable,
	stable-commits

On Tue, Apr 10, 2018 at 09:21:51PM +0200, Alexandre Belloni wrote:
> On 11/04/2018 00:36:11+0530, Amit Pundir wrote:
> > On 10 April 2018 at 01:27,  <gregkh@linuxfoundation.org> wrote:
> > >
> > > This is a note to let you know that I've just added the patch titled
> > >
> > >     clk: at91: fix clk-generated parenting
> > >
> > > to the 4.9-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:
> > >      clk-at91-fix-clk-generated-parenting.patch
> > > and it can be found in the queue-4.9 subdirectory.
> > >
> > > If you, or anyone else, feels it should not be added to the stable tree,
> > > please let <stable@vger.kernel.org> know about it.
> > >
> > 
> > This patch broke ARM builds at kernelci
> > https://kernelci.org/build/stable-rc/branch/linux-4.9.y/kernel/v4.9.93-278-g1614c07609f0/
> > 
> 
> I guess this also need 4a5f06a01cfd1f7a9141bdb760bf5b68cca7f224

thanks, now added.

greg k-h

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

end of thread, other threads:[~2018-04-10 21:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-09 19:57 Patch "clk: at91: fix clk-generated parenting" has been added to the 4.9-stable tree gregkh
2018-04-10 19:06 ` Amit Pundir
2018-04-10 19:21   ` Alexandre Belloni
2018-04-10 21:11     ` Greg Kroah-Hartman

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).