diff options
author | Richard Braun <rbraun@sceen.net> | 2013-06-13 10:23:07 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2013-07-06 19:02:10 +0200 |
commit | 738d08d5e306e67ba443763fd648a393a48c55d4 (patch) | |
tree | a5e1b6acd666d3ea0bb2ff5bc0725e50f69076f0 /vm/vm_map.c | |
parent | 48374912a30ae97b725ec99499b8f3ca683b6f8a (diff) |
vm/vm_map: fix map entry merging
Diffstat (limited to 'vm/vm_map.c')
-rw-r--r-- | vm/vm_map.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vm/vm_map.c b/vm/vm_map.c index d6000e19..4ff86904 100644 --- a/vm/vm_map.c +++ b/vm/vm_map.c @@ -46,8 +46,9 @@ #include <machine/pmap.h> #include <vm/vm_adv.h> #include <vm/vm_inherit.h> -#include <vm/vm_map.h> #include <vm/vm_kmem.h> +#include <vm/vm_map.h> +#include <vm/vm_object.h> #include <vm/vm_page.h> #include <vm/vm_phys.h> #include <vm/vm_prot.h> |