-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
x86: smp.h move cpu_callin_mask and cpu_callin_map declartion to cpum…
…ask.h Impact: cleanup Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
- Loading branch information
Jaswinder Singh Rajput
authored and
Ingo Molnar
committed
Jan 10, 2009
1 parent
1de8cd3
commit 0687903
Showing
5 changed files
with
22 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#ifndef _ASM_X86_CPUMASK_H | ||
#define _ASM_X86_CPUMASK_H | ||
#ifndef __ASSEMBLY__ | ||
#include <linux/cpumask.h> | ||
|
||
#ifdef CONFIG_X86_64 | ||
|
||
extern cpumask_var_t cpu_callin_mask; | ||
|
||
#else /* CONFIG_X86_32 */ | ||
|
||
extern cpumask_t cpu_callin_map; | ||
|
||
#define cpu_callin_mask ((struct cpumask *)&cpu_callin_map) | ||
|
||
#endif /* CONFIG_X86_32 */ | ||
|
||
#endif /* __ASSEMBLY__ */ | ||
#endif /* _ASM_X86_CPUMASK_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters