aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/feature-removal-schedule.txt7
-rw-r--r--arch/x86/kernel/process.c1
2 files changed, 8 insertions, 0 deletions
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt
index f1b0eb02aa1..13f0bb3187b 100644
--- a/Documentation/feature-removal-schedule.txt
+++ b/Documentation/feature-removal-schedule.txt
@@ -35,6 +35,13 @@ Who: Len Brown <len.brown@intel.com>
35 35
36---------------------------- 36----------------------------
37 37
38What: x86 "idle=mwait" cmdline param
39When: 2012
40Why: simplify x86 idle code
41Who: Len Brown <len.brown@intel.com>
42
43----------------------------
44
38What: PRISM54 45What: PRISM54
39When: 2.6.34 46When: 2.6.34
40 47
diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c
index 84f3cdae440..8fb182956cb 100644
--- a/arch/x86/kernel/process.c
+++ b/arch/x86/kernel/process.c
@@ -645,6 +645,7 @@ static int __init idle_setup(char *str)
645 boot_option_idle_override = IDLE_POLL; 645 boot_option_idle_override = IDLE_POLL;
646 } else if (!strcmp(str, "mwait")) { 646 } else if (!strcmp(str, "mwait")) {
647 boot_option_idle_override = IDLE_FORCE_MWAIT; 647 boot_option_idle_override = IDLE_FORCE_MWAIT;
648 WARN_ONCE(1, "\idle=mwait\" will be removed in 2012\"\n");
648 } else if (!strcmp(str, "halt")) { 649 } else if (!strcmp(str, "halt")) {
649 /* 650 /*
650 * When the boot option of idle=halt is added, halt is 651 * When the boot option of idle=halt is added, halt is