diff options
author | Len Brown <len.brown@intel.com> | 2010-03-14 16:28:46 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2010-03-14 20:58:24 -0400 |
commit | 4c81ba4900ab4eb24c7d2ba1aca594c644b6ce4c (patch) | |
tree | 4549d9c5791aa3a9991acba55601f8aa9cab0201 | |
parent | 8144c880397d502d12af4ef721f3eac50163fa39 (diff) |
ACPI: plan to delete "acpi=ht" boot option
Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r-- | Documentation/feature-removal-schedule.txt | 7 | ||||
-rw-r--r-- | arch/x86/kernel/acpi/boot.c | 4 |
2 files changed, 10 insertions, 1 deletions
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt index a5cc0db63d7a..ed511af0f79a 100644 --- a/Documentation/feature-removal-schedule.txt +++ b/Documentation/feature-removal-schedule.txt | |||
@@ -582,3 +582,10 @@ Why: The paravirt mmu host support is slower than non-paravirt mmu, both | |||
582 | Who: Avi Kivity <avi@redhat.com> | 582 | Who: Avi Kivity <avi@redhat.com> |
583 | 583 | ||
584 | ---------------------------- | 584 | ---------------------------- |
585 | |||
586 | What: "acpi=ht" boot option | ||
587 | When: 2.6.35 | ||
588 | Why: Useful in 2003, implementation is a hack. | ||
589 | Generally invoked by accident today. | ||
590 | Seen as doing more harm than good. | ||
591 | Who: Len Brown <len.brown@intel.com> | ||
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index df586bbc9447..7914ab0ad76e 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c | |||
@@ -1559,8 +1559,10 @@ static int __init parse_acpi(char *arg) | |||
1559 | } | 1559 | } |
1560 | /* Limit ACPI just to boot-time to enable HT */ | 1560 | /* Limit ACPI just to boot-time to enable HT */ |
1561 | else if (strcmp(arg, "ht") == 0) { | 1561 | else if (strcmp(arg, "ht") == 0) { |
1562 | if (!acpi_force) | 1562 | if (!acpi_force) { |
1563 | printk(KERN_WARNING "acpi=ht will be removed in Linux-2.6.35\n"); | ||
1563 | disable_acpi(); | 1564 | disable_acpi(); |
1565 | } | ||
1564 | acpi_ht = 1; | 1566 | acpi_ht = 1; |
1565 | } | 1567 | } |
1566 | /* acpi=rsdt use RSDT instead of XSDT */ | 1568 | /* acpi=rsdt use RSDT instead of XSDT */ |