lkml.org 
[lkml]   [2009]   [Feb]   [6]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patches in this message
/
Date
From
SubjectRe: PATCH: (v3) Allow over-ride of smp_found_cfg with kernel cmd-line option.
Yinghai Lu wrote:

>>> + "WARNING: No ACPI-table found in the MADT\n");
>> APIC table
>>
>
> APIC-table == MADT
>
> could just use
>
> WARNING: No APIC-table found

Ok, here's another attempt. NOTE: With another patch that Len sent me,
this work-around seems no longer required for *my* system. This patch may
still help others, however...


An updated patch is attached. It's also inline below, but I'm sure the
inline version is white-space corrupted.

Do not disable mptable parsing just because there is no ACPI table
in the MADT table. This effectively backs out changeset
7b37b5fd9ba32c0c5afc3537eed7e7466f2173e2

Signed-Off-By: Ben Greear<greearb@candelatech.com>

diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c
index d37593c..6940fb2 100644
--- a/arch/x86/kernel/acpi/boot.c
+++ b/arch/x86/kernel/acpi/boot.c
@@ -1379,12 +1379,14 @@ static void __init acpi_process_madt(void)
* ACPI found no MADT, and so ACPI wants UP PIC mode.
* In the event an MPS table was found, forget it.
* Boot with "acpi=off" to use MPS on such a system.
+ *
+ * NOTE: This assumption seems wrong in at least some cases, perhaps
+ * when ACPI is off in the BIOS. Changing to a warning without
+ * setting smp_found_config to zero.
*/
- if (smp_found_config) {
+ if (smp_found_config)
printk(KERN_WARNING PREFIX
- "No APIC-table, disabling MPS\n");
- smp_found_config = 0;
- }
+ "WARNING: No APIC-table found.\n");
}

/*

--
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc http://www.candelatech.com

diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c
index d37593c..6940fb2 100644
--- a/arch/x86/kernel/acpi/boot.c
+++ b/arch/x86/kernel/acpi/boot.c
@@ -1379,12 +1379,14 @@ static void __init acpi_process_madt(void)
* ACPI found no MADT, and so ACPI wants UP PIC mode.
* In the event an MPS table was found, forget it.
* Boot with "acpi=off" to use MPS on such a system.
+ *
+ * NOTE: This assumption seems wrong in at least some cases, perhaps
+ * when ACPI is off in the BIOS. Changing to a warning without
+ * setting smp_found_config to zero.
*/
- if (smp_found_config) {
+ if (smp_found_config)
printk(KERN_WARNING PREFIX
- "No APIC-table, disabling MPS\n");
- smp_found_config = 0;
- }
+ "WARNING: No APIC-table found.\n");
}

/*
\
 
 \ /
  Last update: 2009-02-06 21:31    [W:0.720 / U:0.416 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site