Sign in
googlers
/
maze
/
linux
/
4a6908a3a050aacc9c3a2f36b276b46c0629ad91
/
.
/
arch
/
x86
/
include
/
asm
/
bigsmp
/
apicdef.h
blob: 392c3f5ef2fe0ad4d3e48e485390f4cb62a7bf83 [
file
] [
log
] [
blame
]
#ifndef
__ASM_MACH_APICDEF_H
#define
__ASM_MACH_APICDEF_H
#define
APIC_ID_MASK
(
0xFF
<<
24
)
static
inline
unsigned
get_apic_id
(
unsigned
long
x
)
{
return
(((
x
)>>
24
)&
0xFF
);
}
#define
GET_APIC_ID
(
x
)
get_apic_id
(
x
)
#endif