1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-30 16:51:41 +00:00

Remove excessive and inconsistent initializers for the various kernel

maps and submaps.

MFC after:	2 weeks
This commit is contained in:
Konstantin Belousov 2013-03-14 19:50:09 +00:00
parent a1143a3ba8
commit e7788a47e3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=248277

View File

@ -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);