fix(gdt): put lsb first in gdt-entry bitfields
Signed-off-by: Julien CLEMENT <julien.clement@epita.fr>
This commit is contained in:
parent
2ee5432c9a
commit
67ec69bdde
24
k/gdt.h
24
k/gdt.h
@ -5,19 +5,19 @@
|
|||||||
|
|
||||||
struct gdt_entry
|
struct gdt_entry
|
||||||
{
|
{
|
||||||
uint8_t base_3 : 8;
|
|
||||||
uint8_t granularity : 1;
|
|
||||||
uint8_t db : 1;
|
|
||||||
uint8_t l : 1;
|
|
||||||
uint8_t available : 1;
|
|
||||||
uint8_t limit_2 : 4;
|
|
||||||
uint8_t present : 1;
|
|
||||||
uint8_t desc_priv : 2;
|
|
||||||
uint8_t desc_type : 1;
|
|
||||||
uint8_t seg_type : 4;
|
|
||||||
uint8_t base_2 : 8;
|
|
||||||
uint16_t base_1 : 16;
|
|
||||||
uint16_t limit_1 : 16;
|
uint16_t limit_1 : 16;
|
||||||
|
uint16_t base_1 : 16;
|
||||||
|
uint8_t base_2 : 8;
|
||||||
|
uint8_t seg_type : 4;
|
||||||
|
uint8_t desc_type : 1;
|
||||||
|
uint8_t desc_priv : 2;
|
||||||
|
uint8_t present : 1;
|
||||||
|
uint8_t limit_2 : 4;
|
||||||
|
uint8_t available : 1;
|
||||||
|
uint8_t l : 1;
|
||||||
|
uint8_t db : 1;
|
||||||
|
uint8_t granularity : 1;
|
||||||
|
uint8_t base_3 : 8;
|
||||||
} __attribute__ ((packed));
|
} __attribute__ ((packed));
|
||||||
|
|
||||||
#endif /* !GDT_H */
|
#endif /* !GDT_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user