Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 88863
b: refs/heads/master
c: ce3fe6b
h: refs/heads/master
i:
  88861: 7f2e58d
  88859: 61f6519
  88855: d682c9b
  88847: 6920479
  88831: 1c4cf3a
v: v3
  • Loading branch information
Alexey Starikovskiy authored and Ingo Molnar committed Apr 17, 2008
1 parent ed54a49 commit 1b82037
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e3e3ffa20351b32b5eaa6020d051305c8d803ed4
refs/heads/master: ce3fe6b2bfded4f5d931c5f2f9325dc2e3fd3a74
2 changes: 1 addition & 1 deletion trunk/arch/x86/kernel/mpparse_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
#include <asm/mtrr.h>
#include <asm/mpspec.h>
#include <asm/io_apic.h>
#include <asm/bios_ebda.h>

#include <mach_apic.h>
#include <mach_apicdef.h>
#include <mach_mpparse.h>
#include <bios_ebda.h>

/* Have we found an MP table */
int smp_found_config;
Expand Down
11 changes: 4 additions & 7 deletions trunk/arch/x86/kernel/mpparse_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#include <asm/io_apic.h>
#include <asm/proto.h>
#include <asm/acpi.h>
#include <asm/bios_ebda.h>

#include <mach_apic.h>

Expand Down Expand Up @@ -641,13 +642,9 @@ static void __init __find_smp_config(unsigned reserve)
* should be fixed.
*/

address = *(unsigned short *)phys_to_virt(0x40E);
address <<= 4;
if (smp_scan_config(address, 0x1000, reserve))
return;

/* If we have come this far, we did not find an MP table */
printk(KERN_INFO "No mptable found.\n");
address = get_bios_ebda();
if (address)
smp_scan_config(address, 0x1000, reserve);
}

void __init early_find_smp_config(void)
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/x86/kernel/setup_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
#include <asm/io.h>
#include <asm/vmi.h>
#include <setup_arch.h>
#include <bios_ebda.h>
#include <asm/bios_ebda.h>
#include <asm/cacheflush.h>
#include <asm/processor.h>

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/x86/mm/discontig_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#include <asm/e820.h>
#include <asm/setup.h>
#include <asm/mmzone.h>
#include <bios_ebda.h>
#include <asm/bios_ebda.h>

struct pglist_data *node_data[MAX_NUMNODES] __read_mostly;
EXPORT_SYMBOL(node_data);
Expand Down
File renamed without changes.

0 comments on commit 1b82037

Please sign in to comment.