Unindent a code block that doens't need to be indented.

This commit is contained in:
simonb 2003-12-19 06:02:50 +00:00
parent f94de27bbd
commit b9fbceaf46

View File

@ -1,4 +1,4 @@
/* $NetBSD: uvm_map.c,v 1.151 2003/11/13 02:44:02 chs Exp $ */ /* $NetBSD: uvm_map.c,v 1.152 2003/12/19 06:02:50 simonb Exp $ */
/* /*
* Copyright (c) 1997 Charles D. Cranor and Washington University. * Copyright (c) 1997 Charles D. Cranor and Washington University.
@ -71,7 +71,7 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: uvm_map.c,v 1.151 2003/11/13 02:44:02 chs Exp $"); __KERNEL_RCSID(0, "$NetBSD: uvm_map.c,v 1.152 2003/12/19 06:02:50 simonb Exp $");
#include "opt_ddb.h" #include "opt_ddb.h"
#include "opt_uvmhist.h" #include "opt_uvmhist.h"
@ -783,14 +783,12 @@ uvm_map(struct vm_map *map, vaddr_t *startp /* IN/OUT */, vsize_t size,
} }
#ifdef PMAP_GROWKERNEL #ifdef PMAP_GROWKERNEL
{ /*
/* * If the kernel pmap can't map the requested space,
* If the kernel pmap can't map the requested space, * then allocate more resources for it.
* then allocate more resources for it. */
*/ if (map == kernel_map && uvm_maxkaddr < (*startp + size))
if (map == kernel_map && uvm_maxkaddr < (*startp + size)) uvm_maxkaddr = pmap_growkernel(*startp + size);
uvm_maxkaddr = pmap_growkernel(*startp + size);
}
#endif #endif
UVMCNT_INCR(uvm_map_call); UVMCNT_INCR(uvm_map_call);