Skip to content

Commit

Permalink
[PATCH] x86_64: Fix compile error with !CONFIG_COMPAT
Browse files Browse the repository at this point in the history
cpumask.h wasn't included implicitely into proto.h in this case.
Just move it over to smp.h

Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Andi Kleen authored and Linus Torvalds committed Jan 12, 2006
1 parent b9d1e4b commit 3c02175
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 0 additions & 2 deletions include/asm-x86_64/proto.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,6 @@ extern void load_gs_index(unsigned gs);

extern unsigned long end_pfn_map;

extern cpumask_t cpu_initialized;

extern void show_trace(unsigned long * rsp);
extern void show_registers(struct pt_regs *regs);

Expand Down
1 change: 1 addition & 0 deletions include/asm-x86_64/smp.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ extern cpumask_t cpu_present_mask;
extern cpumask_t cpu_possible_map;
extern cpumask_t cpu_online_map;
extern cpumask_t cpu_callout_map;
extern cpumask_t cpu_initialized;

/*
* Private routines/data
Expand Down

0 comments on commit 3c02175

Please sign in to comment.