[Bug 458533] Re: WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0()
No longer seeing this on karmic with kernel 2.6.31-210-dove. Marking as Fix Released. ** Changed in: linux-mvl-dove (Ubuntu) Status: Fix Committed => Fix Released -- WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0() https://bugs.launchpad.net/bugs/458533 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 458533] Re: WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0()
nm, I realized as soon as I hit the button that it's karmic this needs to be retested on -- WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0() https://bugs.launchpad.net/bugs/458533 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 458533] Re: WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0()
confirmed, I'm no longer seeing this bug in the current kernels. -- WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0() https://bugs.launchpad.net/bugs/458533 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 458533] Re: WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0()
I'm seeing the patch being there in latest karmic kernel. Paul, could you have a test again? ** Changed in: linux-mvl-dove (Ubuntu) Milestone: None => karmic-updates ** Changed in: linux-mvl-dove (Ubuntu) Assignee: Brad Figg (brad-figg) => Eric Miao (eric.y.miao) ** Changed in: linux-mvl-dove (Ubuntu) Status: Triaged => Fix Committed -- WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0() https://bugs.launchpad.net/bugs/458533 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 458533] Re: WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0()
I'm not seeing this anymore with Lucid kernels, but it still exists in karmic -- WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0() https://bugs.launchpad.net/bugs/458533 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 458533] Re: WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0()
** Tags added: iso-testing -- WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0() https://bugs.launchpad.net/bugs/458533 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 458533] Re: WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0()
This bug should be fixed by the following patch: -- From: Kevin Hilman Date: Wed, 30 Sep 2009 17:35:53 + (-0700) Subject: CPUidle: always return with interrupts enabled CPUidle: always return with interrupts enabled In the case where cpuidle_idle_call() returns before changing state due to a need_resched(), it was returning with IRQs disabled. This patch ensures IRQs are (re)enabled before returning. Reported-by: Hemanth V Signed-off-by: Kevin Hilman --- diff --git a/drivers/cpuidle/cpuidle.c b/drivers/cpuidle/cpuidle.c index 8504a21..910c49d 100644 --- a/drivers/cpuidle/cpuidle.c +++ b/drivers/cpuidle/cpuidle.c @@ -75,8 +75,11 @@ static void cpuidle_idle_call(void) #endif /* ask the governor for the next state */ next_state = cpuidle_curr_governor->select(dev); - if (need_resched()) + if (need_resched()) { + local_irq_enable(); return; + } + target_state = &dev->states[next_state]; /* enter the state and update stats */ -- WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0() https://bugs.launchpad.net/bugs/458533 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 458533] Re: WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0()
Only a warning though ** Changed in: linux-mvl-dove (Ubuntu) Importance: Medium => Low ** Changed in: linux-mvl-dove (Ubuntu) Assignee: (unassigned) => Brad Figg (brad-figg) -- WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0() https://bugs.launchpad.net/bugs/458533 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 458533] Re: WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0()
This error was also reported in bug #451553 but I'd like to keep them separate. There were a whole lot of errors mentioned in the other bug that seem to only happen when booting from USB. This one seems to happen, even after installation and booting from sata. ** Changed in: linux-mvl-dove (Ubuntu) Importance: Undecided => Medium ** Changed in: linux-mvl-dove (Ubuntu) Status: New => Triaged -- WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0() https://bugs.launchpad.net/bugs/458533 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 458533] Re: WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0()
** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/34173189/Dependencies.txt ** Attachment added: "OopsText.txt" http://launchpadlibrarian.net/34173190/OopsText.txt -- WARNING: at arch/arm/kernel/process.c:174 cpu_idle+0x8c/0xa0() https://bugs.launchpad.net/bugs/458533 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs