Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 136678
b: refs/heads/master
c: fdbecd9
h: refs/heads/master
v: v3
  • Loading branch information
Ingo Molnar committed Feb 5, 2009
1 parent 936e238 commit 6ebe707
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 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: 65a4e574d2382d83f71b30ea92f86d2e40a6ef8d
refs/heads/master: fdbecd9fd14198853bec4cbae8bc7af93f2e3de3
17 changes: 15 additions & 2 deletions trunk/arch/x86/kernel/apic.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,26 @@
#include <asm/smp.h>

unsigned int num_processors;

unsigned disabled_cpus __cpuinitdata;

/* Processor that is doing the boot up */
unsigned int boot_cpu_physical_apicid = -1U;
EXPORT_SYMBOL(boot_cpu_physical_apicid);

/*
* The highest APIC ID seen during enumeration.
*
* This determines the messaging protocol we can use: if all APIC IDs
* are in the 0 ... 7 range, then we can use logical addressing which
* has some performance advantages (better broadcasting).
*
* If there's an APIC ID above 8, we use physical addressing.
*/
unsigned int max_physical_apicid;

/* Bitmask of physically existing CPUs */
/*
* Bitmask of physically existing CPUs:
*/
physid_mask_t phys_cpu_present_map;

/*
Expand Down

0 comments on commit 6ebe707

Please sign in to comment.