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_setup.c | |
parent | 48374912a30ae97b725ec99499b8f3ca683b6f8a (diff) |
vm/vm_map: fix map entry merging
Diffstat (limited to 'vm/vm_setup.c')
-rw-r--r-- | vm/vm_setup.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vm/vm_setup.c b/vm/vm_setup.c index 6d21597c..aef9e800 100644 --- a/vm/vm_setup.c +++ b/vm/vm_setup.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2012 Richard Braun. + * Copyright (c) 2011, 2012, 2013 Richard Braun. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,6 +18,7 @@ #include <kern/init.h> #include <kern/kmem.h> #include <machine/pmap.h> +#include <vm/vm_anon.h> #include <vm/vm_map.h> #include <vm/vm_kmem.h> #include <vm/vm_phys.h> @@ -31,4 +32,5 @@ vm_setup(void) kmem_setup(); vm_map_setup(); pmap_setup(); + vm_anon_setup(); } |