diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-03-22 23:50:54 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-03-22 23:50:54 +0000 |
commit | 18aa8e70117efe471e56bc0e47aa21c27fa0e2bf (patch) | |
tree | 1840d05d54f0c449109a880e7a014f81a35db16a | |
parent | 67cd203036cae2d69d44efa6301c007853d9bf0e (diff) |
pmap_physseg is kernel-only business
-rw-r--r-- | sys/arch/hppa/include/vmparam.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/hppa/include/vmparam.h b/sys/arch/hppa/include/vmparam.h index 7ec4fee829a..176fe4ca4c9 100644 --- a/sys/arch/hppa/include/vmparam.h +++ b/sys/arch/hppa/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.10 2001/01/12 23:37:01 mickey Exp $ */ +/* $OpenBSD: vmparam.h,v 1.11 2001/03/22 23:50:53 mickey Exp $ */ /* * Copyright (c) 1988-1994, The University of Utah and @@ -141,9 +141,11 @@ #define MACHINE_NEW_NONCONTIG 1 /* defined this until we rely on vm */ #define PMAP_NEW +#ifdef _KERNEL struct pmap_physseg { struct pv_entry *pvent; }; +#endif #endif /* _MACHINE_VMPARAM_H_ */ |