|
@@ -272,25 +272,24 @@ void __devinit select_idle_routine(const struct cpuinfo_x86 *c)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-static int __init idle_setup (char *str)
|
|
|
+static int __init idle_setup(char *str)
|
|
|
{
|
|
|
- if (!strncmp(str, "poll", 4)) {
|
|
|
+ if (!strcmp(str, "poll")) {
|
|
|
printk("using polling idle threads.\n");
|
|
|
pm_idle = poll_idle;
|
|
|
#ifdef CONFIG_X86_SMP
|
|
|
if (smp_num_siblings > 1)
|
|
|
printk("WARNING: polling idle and HT enabled, performance may degrade.\n");
|
|
|
#endif
|
|
|
- } else if (!strncmp(str, "halt", 4)) {
|
|
|
- printk("using halt in idle threads.\n");
|
|
|
- pm_idle = default_idle;
|
|
|
- }
|
|
|
+ } else if (!strcmp(str, "mwait"))
|
|
|
+ force_mwait = 1;
|
|
|
+ else
|
|
|
+ return -1;
|
|
|
|
|
|
boot_option_idle_override = 1;
|
|
|
- return 1;
|
|
|
+ return 0;
|
|
|
}
|
|
|
-
|
|
|
-__setup("idle=", idle_setup);
|
|
|
+early_param("idle", idle_setup);
|
|
|
|
|
|
void show_regs(struct pt_regs * regs)
|
|
|
{
|