diff --git a/sys/vmm/vmm_mmap.c b/sys/vmm/vmm_mmap.c index 5cf1d20..2a38a44 100644 --- a/sys/vmm/vmm_mmap.c +++ b/sys/vmm/vmm_mmap.c @@ -137,7 +137,9 @@ //TEMP - kprintf( "[%s:%i] munmap(0x%X:0x%X) Not Implemented yet.\n", __FILE__, __LINE__, uap->addr, uap->len ); + //kprintf( "[%s:%i] munmap(0x%X:0x%X) Not Implemented yet.\n", __FILE__, __LINE__, uap->addr, uap->len ); + + // XXX - Is this enough to make it work? This unmaps and frees the page so we should be fine here. for( int i = 0; i < ( uap->len + 4095) / PAGE_SIZE; i++ ) {