diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-03-26 05:04:11 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-03-26 05:04:11 +0000 |
commit | c5fbd60f510a5447967b9a23e7708aeffd4143c2 (patch) | |
tree | a10a51fa6585376192c0444bc0941826d79e19e5 /sys/arch/mips64/include | |
parent | 1369a0b270eb7aee73a4b6dea829500aa56948c2 (diff) |
PGSHIFT and PGOFSET are now contained inside the kernel namespace.
Diffstat (limited to 'sys/arch/mips64/include')
-rw-r--r-- | sys/arch/mips64/include/param.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mips64/include/param.h b/sys/arch/mips64/include/param.h index 9721822f720..d15cd70a1b9 100644 --- a/sys/arch/mips64/include/param.h +++ b/sys/arch/mips64/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.32 2013/03/25 17:46:24 deraadt Exp $ */ +/* $OpenBSD: param.h,v 1.33 2013/03/26 05:04:10 deraadt Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -43,14 +43,14 @@ #define PAGE_SIZE (1 << PAGE_SHIFT) #define PAGE_MASK (PAGE_SIZE - 1) -#define PGSHIFT PAGE_SHIFT -#define PGOFSET PAGE_MASK #define KERNBASE 0xffffffff80000000L /* start of kernel virtual */ #ifdef _KERNEL #define NBPG PAGE_SIZE +#define PGSHIFT PAGE_SHIFT +#define PGOFSET PAGE_MASK #define USPACE 16384 #define UPAGES (USPACE >> PAGE_SHIFT) |