diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2015-06-24 07:18:14 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2015-06-24 07:18:14 +0000 |
commit | 2da05ab93c474b44c9b433485b061d57858a240b (patch) | |
tree | 0642308333f3d406ba547fed04c6c85f4eb7e741 /sys/arch | |
parent | 29a7fa07cf473c5fa91d9db86e5b13b0b0471388 (diff) |
Remove a couple of unused and old #defines that discussed phys and virt
address widths in 1st-gen amd64 cpus.
ok kettenis, deraadt, guenther
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/amd64/include/pmap.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/sys/arch/amd64/include/pmap.h b/sys/arch/amd64/include/pmap.h index b311d0baa2b..3d6aec252df 100644 --- a/sys/arch/amd64/include/pmap.h +++ b/sys/arch/amd64/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.55 2015/03/10 20:12:39 kettenis Exp $ */ +/* $OpenBSD: pmap.h,v 1.56 2015/06/24 07:18:13 mlarkin Exp $ */ /* $NetBSD: pmap.h,v 1.1 2003/04/26 18:39:46 fvdl Exp $ */ /* @@ -131,17 +131,6 @@ */ /* - * The first generation of Hammer processors can use 48 bits of - * virtual memory, and 40 bits of physical memory. This will be - * more for later generations. These defines can be changed to - * variable names containing the # of bits, extracted from an - * extended cpuid instruction (variables are harder to use during - * bootstrap, though) - */ -#define VIRT_BITS 48 -#define PHYS_BITS 40 - -/* * Mask to get rid of the sign-extended part of addresses. */ #define VA_SIGN_MASK 0xffff000000000000 |