Add missing header and bugfix in disabled code

This commit is contained in:
Ali Mashtizadeh 2014-07-10 16:18:58 -07:00
parent 3c09132308
commit 7d24df2f07

View File

@ -4,6 +4,7 @@
#include <kconfig.h>
#include <kassert.h>
#include <kmem.h>
#include <irq.h>
#include "amd64.h"
#include "ioapic.h"
@ -76,7 +77,7 @@ void Machine_SyscallInit()
{
kprintf("Initializing Syscall... ");
wrmsr(MSR_STAR, SEL_KCS << 32 | SEL_UCS << 48);
wrmsr(MSR_STAR, (uint64_t)SEL_KCS << 32 | (uint64_t)SEL_UCS << 48);
wrmsr(MSR_LSTAR, 0);
wrmsr(MSR_CSTAR, 0);
wrmsr(MSR_SFMASK, 0);