blob: b3a7a3e9fb19431832f7b65cf1e285da612fb3e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _ASM_X86_SEGMENT_H_
#define _ASM_X86_SEGMENT_H_
#ifdef CONFIG_X86_32
# include "segment_32.h"
#else
# include "segment_64.h"
#endif
#ifndef CONFIG_PARAVIRT
#define get_kernel_rpl() 0
#endif
#endif
|