diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-01-24 05:21:20 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-01-24 05:21:20 +0000 |
commit | 7368f4ae68972ddb7ddb7a31111f0344e34c5fc0 (patch) | |
tree | f4ba343d96215d186789866fb656a30d284f86d4 /sys/arch/hppa64 | |
parent | 6c0a93c2cee045d6570be5bc4829b295c5c0129d (diff) |
Do not protect struct vm_page_md with defined(_KERNEL), for userland uvm
grovellers need to know it to be able to get the right size for struct
vm_page.
Diffstat (limited to 'sys/arch/hppa64')
-rw-r--r-- | sys/arch/hppa64/include/vmparam.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa64/include/vmparam.h b/sys/arch/hppa64/include/vmparam.h index 6023b207ade..a8d4a6329c8 100644 --- a/sys/arch/hppa64/include/vmparam.h +++ b/sys/arch/hppa64/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.8 2014/01/23 22:06:29 miod Exp $ */ +/* $OpenBSD: vmparam.h,v 1.9 2014/01/24 05:21:19 miod Exp $ */ /* * Copyright (c) 1988-1994, The University of Utah and @@ -92,7 +92,7 @@ #define VM_PHYSSEG_NOADD /* XXX until uvm code is fixed */ -#if defined(_KERNEL) && !defined(_LOCORE) +#if !defined(_LOCORE) #include <sys/lock.h> |