summaryrefslogtreecommitdiff
path: root/i386/i386/ldt.c
diff options
context:
space:
mode:
Diffstat (limited to 'i386/i386/ldt.c')
-rw-r--r--i386/i386/ldt.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/i386/i386/ldt.c b/i386/i386/ldt.c
index 99d2f7fe..261df93a 100644
--- a/i386/i386/ldt.c
+++ b/i386/i386/ldt.c
@@ -47,22 +47,18 @@ struct real_descriptor ldt[LDTSZ];
void
ldt_init(void)
{
-#ifdef __x86_64__
-#warning FIXME
-#endif
-
#ifdef MACH_PV_DESCRIPTORS
#ifdef MACH_PV_PAGETABLES
pmap_set_page_readwrite(ldt);
#endif /* MACH_PV_PAGETABLES */
#else /* MACH_PV_DESCRIPTORS */
/* Initialize the master LDT descriptor in the GDT. */
- fill_gdt_descriptor(KERNEL_LDT,
- kvtolin(&ldt), sizeof(ldt)-1,
- ACC_PL_K|ACC_LDT, 0);
+ fill_gdt_sys_descriptor(KERNEL_LDT,
+ kvtolin(&ldt), sizeof(ldt)-1,
+ ACC_PL_K|ACC_LDT, 0);
#endif /* MACH_PV_DESCRIPTORS */
- /* Initialize the LDT descriptors. */
+ /* Initialize the 32bit LDT descriptors. */
fill_ldt_gate(USER_SCALL,
(vm_offset_t)&syscall, KERNEL_CS,
ACC_PL_U|ACC_CALL_GATE, 0);