mirror of
https://github.com/joel16/android_kernel_sony_msm8994_rework.git
synced 2025-01-06 03:31:00 +00:00
[SPARC]: Remove legacy stuff from cpu_idle().
Currently sparc and sparc64's UP cpu_idle() checks current pid. This is old time legacy. Now it's paranoia. Signed-off-by: Coywolf Qi Hunt <coywolf@lovecn.org> Acked-by: William Irwin <wli@holomorphy.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8edf72ebce
commit
7cc1712b8a
@ -83,9 +83,6 @@ void default_idle(void)
|
|||||||
*/
|
*/
|
||||||
void cpu_idle(void)
|
void cpu_idle(void)
|
||||||
{
|
{
|
||||||
if (current->pid != 0)
|
|
||||||
goto out;
|
|
||||||
|
|
||||||
/* endless idle loop with no priority at all */
|
/* endless idle loop with no priority at all */
|
||||||
for (;;) {
|
for (;;) {
|
||||||
if (ARCH_SUN4C_SUN4) {
|
if (ARCH_SUN4C_SUN4) {
|
||||||
@ -126,8 +123,6 @@ void cpu_idle(void)
|
|||||||
schedule();
|
schedule();
|
||||||
check_pgt_cache();
|
check_pgt_cache();
|
||||||
}
|
}
|
||||||
out:
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
@ -62,9 +62,6 @@ void default_idle(void)
|
|||||||
*/
|
*/
|
||||||
void cpu_idle(void)
|
void cpu_idle(void)
|
||||||
{
|
{
|
||||||
if (current->pid != 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
/* endless idle loop with no priority at all */
|
/* endless idle loop with no priority at all */
|
||||||
for (;;) {
|
for (;;) {
|
||||||
/* If current->work.need_resched is zero we should really
|
/* If current->work.need_resched is zero we should really
|
||||||
@ -80,7 +77,6 @@ void cpu_idle(void)
|
|||||||
schedule();
|
schedule();
|
||||||
check_pgt_cache();
|
check_pgt_cache();
|
||||||
}
|
}
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
Loading…
Reference in New Issue
Block a user