From 65f1bb68b5dc1f983bf45f824d37beaac7781659 Mon Sep 17 00:00:00 2001 From: eeh Date: Thu, 31 Aug 2000 19:12:45 +0000 Subject: [PATCH] Add support for multiple memory segments. --- sys/arch/sparc64/include/vmparam.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sys/arch/sparc64/include/vmparam.h b/sys/arch/sparc64/include/vmparam.h index 721030ef190a..1177a4e81ad2 100644 --- a/sys/arch/sparc64/include/vmparam.h +++ b/sys/arch/sparc64/include/vmparam.h @@ -1,4 +1,4 @@ -/* $NetBSD: vmparam.h,v 1.11 2000/07/13 06:23:36 mrg Exp $ */ +/* $NetBSD: vmparam.h,v 1.12 2000/08/31 19:12:45 eeh Exp $ */ /* * Copyright (c) 1992, 1993 @@ -48,6 +48,9 @@ * Machine dependent constants for Sun-4c SPARC */ +#ifndef VMPARAM_H +#define VMPARAM_H + /* * USRTEXT is the start of the user text/data space, while USRSTACK * is the top (end) of the user stack. @@ -117,7 +120,7 @@ */ struct pmap_physseg { - /* NULL */ + struct pv_entry *pvent; }; #if defined (_KERNEL) && !defined(_LOCORE) @@ -125,3 +128,4 @@ struct vm_map; vaddr_t dvma_mapin __P((struct vm_map *, vaddr_t, int, int)); void dvma_mapout __P((vaddr_t, vaddr_t, int)); #endif +#endif