From: mlarkin Date: Tue, 21 Apr 2015 04:40:40 +0000 (+0000) Subject: Remove a duplicate variable and #define that snuck in, in a previous X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=703cbbd4c3efdedf49519c10992c409e4ddc5637;p=openbsd Remove a duplicate variable and #define that snuck in, in a previous commit. ok deraadt@ --- diff --git a/sys/arch/i386/i386/pmap.c b/sys/arch/i386/i386/pmap.c index 50d59cc16ee..feee35d0bde 100644 --- a/sys/arch/i386/i386/pmap.c +++ b/sys/arch/i386/i386/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.175 2015/04/21 00:07:51 mlarkin Exp $ */ +/* $OpenBSD: pmap.c,v 1.176 2015/04/21 04:40:40 mlarkin Exp $ */ /* $NetBSD: pmap.c,v 1.91 2000/06/02 17:46:37 thorpej Exp $ */ /* @@ -411,15 +411,6 @@ boolean_t pmap_initialized = FALSE; /* pmap_init done yet? */ */ struct pool pmap_pv_pool; -#define PVE_LOWAT (PVE_PER_PVPAGE / 2) /* free pv_entry low water mark */ -#define PVE_HIWAT (PVE_LOWAT + (PVE_PER_PVPAGE * 2)) - /* high water mark */ - -/* - * pv management structures. - */ -struct pool pmap_pv_pool; - #define PVE_LOWAT (PVE_PER_PVPAGE / 2) /* free pv_entry low water mark */ #define PVE_HIWAT (PVE_LOWAT + (PVE_PER_PVPAGE * 2)) /* high water mark */