aboutsummaryrefslogtreecommitdiff
path: root/sys/vm/vm_kern.c
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2013-03-14 19:50:09 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2013-03-14 19:50:09 +0000
commite7788a47e33e1e5909e1773759bd40dd7d943f74 (patch)
treeb4061cf811e0c995a103ef968f136d057917be8d /sys/vm/vm_kern.c
parenta1143a3ba8fbb97ec28b8b03add705e050613f52 (diff)
downloadsrc-e7788a47e33e1e5909e1773759bd40dd7d943f74.tar.gz
src-e7788a47e33e1e5909e1773759bd40dd7d943f74.zip
Remove excessive and inconsistent initializers for the various kernel
maps and submaps. MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=248277
Diffstat (limited to 'sys/vm/vm_kern.c')
-rw-r--r--sys/vm/vm_kern.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/vm/vm_kern.c b/sys/vm/vm_kern.c
index 9f602b7d45ed..64a2ebb53053 100644
--- a/sys/vm/vm_kern.c
+++ b/sys/vm/vm_kern.c
@@ -85,11 +85,11 @@ __FBSDID("$FreeBSD$");
#include <vm/vm_extern.h>
#include <vm/uma.h>
-vm_map_t kernel_map=0;
-vm_map_t kmem_map=0;
-vm_map_t exec_map=0;
+vm_map_t kernel_map;
+vm_map_t kmem_map;
+vm_map_t exec_map;
vm_map_t pipe_map;
-vm_map_t buffer_map=0;
+vm_map_t buffer_map;
const void *zero_region;
CTASSERT((ZERO_REGION_SIZE & PAGE_MASK) == 0);