linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [REGRESSION] b8b2c7d845 breaks suspend/resume in qemu
@ 2015-12-02 20:39 John Stultz
  2015-12-02 20:46 ` John Stultz
  0 siblings, 1 reply; 4+ messages in thread
From: John Stultz @ 2015-12-02 20:39 UTC (permalink / raw)
  To: Uwe Kleine-König; +Cc: lkml, Greg Kroah-Hartman

Hey Uwe,

So I recently noticed that my alarmtimer suspend/resume tests
(selftests/timers/alartimer-suspend.c) were getting stuck testing w/
4.4-rc kernels when running under qemu (x86_64).

I've bisected this back to: b8b2c7d845 (base/platform: assert that
dev_pm_domain callbacks are called unconditionally).

I've not yet spent done any further analysis (bisecting it down, after
some user-error, ate up my morning). But I wanted to see if there were
any initial suggestions for solving this.

thanks
-john

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

* Re: [REGRESSION] b8b2c7d845 breaks suspend/resume in qemu
  2015-12-02 20:39 [REGRESSION] b8b2c7d845 breaks suspend/resume in qemu John Stultz
@ 2015-12-02 20:46 ` John Stultz
  2015-12-02 20:57   ` Greg Kroah-Hartman
  0 siblings, 1 reply; 4+ messages in thread
From: John Stultz @ 2015-12-02 20:46 UTC (permalink / raw)
  To: Uwe Kleine-König; +Cc: lkml, Greg Kroah-Hartman

On Wed, Dec 2, 2015 at 12:39 PM, John Stultz <john.stultz@linaro.org> wrote:
> Hey Uwe,
>
> So I recently noticed that my alarmtimer suspend/resume tests
> (selftests/timers/alartimer-suspend.c) were getting stuck testing w/
> 4.4-rc kernels when running under qemu (x86_64).
>
> I've bisected this back to: b8b2c7d845 (base/platform: assert that
> dev_pm_domain callbacks are called unconditionally).
>
> I've not yet spent done any further analysis (bisecting it down, after
> some user-error, ate up my morning). But I wanted to see if there were
> any initial suggestions for solving this.

Just one other quick note: Reverting this commit against 4.4-rc3 seems
to work as well.

thanks
-john

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

* Re: [REGRESSION] b8b2c7d845 breaks suspend/resume in qemu
  2015-12-02 20:46 ` John Stultz
@ 2015-12-02 20:57   ` Greg Kroah-Hartman
  2015-12-02 21:31     ` John Stultz
  0 siblings, 1 reply; 4+ messages in thread
From: Greg Kroah-Hartman @ 2015-12-02 20:57 UTC (permalink / raw)
  To: John Stultz, martin.wilck; +Cc: Uwe Kleine-König, lkml

On Wed, Dec 02, 2015 at 12:46:10PM -0800, John Stultz wrote:
> On Wed, Dec 2, 2015 at 12:39 PM, John Stultz <john.stultz@linaro.org> wrote:
> > Hey Uwe,
> >
> > So I recently noticed that my alarmtimer suspend/resume tests
> > (selftests/timers/alartimer-suspend.c) were getting stuck testing w/
> > 4.4-rc kernels when running under qemu (x86_64).
> >
> > I've bisected this back to: b8b2c7d845 (base/platform: assert that
> > dev_pm_domain callbacks are called unconditionally).
> >
> > I've not yet spent done any further analysis (bisecting it down, after
> > some user-error, ate up my morning). But I wanted to see if there were
> > any initial suggestions for solving this.
> 
> Just one other quick note: Reverting this commit against 4.4-rc3 seems
> to work as well.

There's a proposed patch to resolve this on the mailing list, "Subject:
[PATCH] base/platform: fix panic when probe function is NULL" from
Martin, but I think he's going to send me an updated version before I
forward it on to Linus.

It should resolve your issue, can you verify that?

thanks,

greg k-h


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

* Re: [REGRESSION] b8b2c7d845 breaks suspend/resume in qemu
  2015-12-02 20:57   ` Greg Kroah-Hartman
@ 2015-12-02 21:31     ` John Stultz
  0 siblings, 0 replies; 4+ messages in thread
From: John Stultz @ 2015-12-02 21:31 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: martin.wilck, Uwe Kleine-König, lkml

On Wed, Dec 2, 2015 at 12:57 PM, Greg Kroah-Hartman
<gregkh@linuxfoundation.org> wrote:
> On Wed, Dec 02, 2015 at 12:46:10PM -0800, John Stultz wrote:
>> On Wed, Dec 2, 2015 at 12:39 PM, John Stultz <john.stultz@linaro.org> wrote:
>> > Hey Uwe,
>> >
>> > So I recently noticed that my alarmtimer suspend/resume tests
>> > (selftests/timers/alartimer-suspend.c) were getting stuck testing w/
>> > 4.4-rc kernels when running under qemu (x86_64).
>> >
>> > I've bisected this back to: b8b2c7d845 (base/platform: assert that
>> > dev_pm_domain callbacks are called unconditionally).
>> >
>> > I've not yet spent done any further analysis (bisecting it down, after
>> > some user-error, ate up my morning). But I wanted to see if there were
>> > any initial suggestions for solving this.
>>
>> Just one other quick note: Reverting this commit against 4.4-rc3 seems
>> to work as well.
>
> There's a proposed patch to resolve this on the mailing list, "Subject:
> [PATCH] base/platform: fix panic when probe function is NULL" from
> Martin, but I think he's going to send me an updated version before I
> forward it on to Linus.
>
> It should resolve your issue, can you verify that?

Yep. That fix seems to avoid the problem for me.

thanks
-john

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

end of thread, other threads:[~2015-12-02 21:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-02 20:39 [REGRESSION] b8b2c7d845 breaks suspend/resume in qemu John Stultz
2015-12-02 20:46 ` John Stultz
2015-12-02 20:57   ` Greg Kroah-Hartman
2015-12-02 21:31     ` John Stultz

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