Commit ed176886 authored by Len Brown's avatar Len Brown Committed by Linus Torvalds

ia64 idle: delete stale (*idle)() function pointer

Commit 3e7fc708 ("ia64 idle: delete pm_idle") in 3.9-rc1 didn't
finish the job, leaving an un-initialized reference to (*idle)().

[ Haven't seen a crash from this - but seems like we are just being
  lucky that "idle" is zero so it does get initialized before we jump to
  randomland  - Len ]
Reported-by: default avatarLars-Peter Clausen <lars@metafoo.de>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 67e17c11
...@@ -291,7 +291,6 @@ cpu_idle (void) ...@@ -291,7 +291,6 @@ cpu_idle (void)
} }
if (!need_resched()) { if (!need_resched()) {
void (*idle)(void);
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
min_xtp(); min_xtp();
#endif #endif
...@@ -299,9 +298,7 @@ cpu_idle (void) ...@@ -299,9 +298,7 @@ cpu_idle (void)
if (mark_idle) if (mark_idle)
(*mark_idle)(1); (*mark_idle)(1);
if (!idle) default_idle();
idle = default_idle;
(*idle)();
if (mark_idle) if (mark_idle)
(*mark_idle)(0); (*mark_idle)(0);
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment