Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 113578
b: refs/heads/master
c: cb48bb5
h: refs/heads/master
v: v3
  • Loading branch information
Thomas Gleixner authored and Ingo Molnar committed Oct 13, 2008
1 parent ee78677 commit 19732ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 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: b807305059c28fb8197496c944bfaa6b372a40ad
refs/heads/master: cb48bb59995d2d14a0c732835c80bbcfb354de31
14 changes: 2 additions & 12 deletions trunk/arch/x86/kernel/smpboot.c
Original file line number Diff line number Diff line change
Expand Up @@ -1261,8 +1261,6 @@ void __init native_smp_cpus_done(unsigned int max_cpus)
check_nmi_watchdog();
}

static int additional_cpus = -1;

/*
* cpu_possible_map should be static, it cannot change as cpu's
* are onlined, or offlined. The reason is per-cpu data-structures
Expand All @@ -1282,21 +1280,13 @@ static int additional_cpus = -1;
*/
__init void prefill_possible_map(void)
{
int i;
int possible;
int i, possible;

/* no processor from mptable or madt */
if (!num_processors)
num_processors = 1;

if (additional_cpus == -1) {
if (disabled_cpus > 0)
additional_cpus = disabled_cpus;
else
additional_cpus = 0;
}

possible = num_processors + additional_cpus;
possible = num_processors + disabled_cpus;
if (possible > NR_CPUS)
possible = NR_CPUS;

Expand Down

0 comments on commit 19732ff

Please sign in to comment.