forked from luck/tmp_suning_uos_patched
5fb76f9be1
This patch moves the definition of segment_descriptor_64 for AMD64 and EM64T from kvm_main.c to segment_descriptor.h. It also adds a proper #ifndef...#define...#endif around that header file. The implementation of segment_base is moved from kvm_main.c to x86.c. Signed-off-by: Carsten Otte <cotte@de.ibm.com> Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com> Acked-by: Hollis Blanchard <hollisb@us.ibm.com> Signed-off-by: Avi Kivity <avi@qumranet.com>
30 lines
526 B
C
30 lines
526 B
C
#ifndef __SEGMENT_DESCRIPTOR_H
|
|
#define __SEGMENT_DESCRIPTOR_H
|
|
|
|
struct segment_descriptor {
|
|
u16 limit_low;
|
|
u16 base_low;
|
|
u8 base_mid;
|
|
u8 type : 4;
|
|
u8 system : 1;
|
|
u8 dpl : 2;
|
|
u8 present : 1;
|
|
u8 limit_high : 4;
|
|
u8 avl : 1;
|
|
u8 long_mode : 1;
|
|
u8 default_op : 1;
|
|
u8 granularity : 1;
|
|
u8 base_high;
|
|
} __attribute__((packed));
|
|
|
|
#ifdef CONFIG_X86_64
|
|
/* LDT or TSS descriptor in the GDT. 16 bytes. */
|
|
struct segment_descriptor_64 {
|
|
struct segment_descriptor s;
|
|
u32 base_higher;
|
|
u32 pad_zero;
|
|
};
|
|
|
|
#endif
|
|
#endif
|