remove redundant initialization of minaddr for uvm_km_suballoc().
This commit is contained in:
parent
b35aef8d4b
commit
9d5ffb80d3
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: machdep.c,v 1.13 2004/02/13 11:36:09 wiz Exp $ */
|
||||
/* $NetBSD: machdep.c,v 1.14 2005/02/11 02:09:39 chs Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 Ben Harris
|
||||
|
@ -32,7 +32,7 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.13 2004/02/13 11:36:09 wiz Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.14 2005/02/11 02:09:39 chs Exp $");
|
||||
|
||||
#include <sys/buf.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -163,7 +163,6 @@ cpu_startup()
|
|||
* Allocate a submap for exec arguments. This map effectively
|
||||
* limits the number of processes exec'ing at any time.
|
||||
*/
|
||||
minaddr = kernel_map->min_offset;
|
||||
exec_map = uvm_km_suballoc(kernel_map, &minaddr, &maxaddr,
|
||||
NCARGS, VM_MAP_PAGEABLE, FALSE, NULL);
|
||||
|
||||
|
|
Loading…
Reference in New Issue