diff options
author | David S. Miller <davem@davemloft.net> | 2013-09-18 17:22:34 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-11-12 18:22:33 -0500 |
commit | e0a45e3580a033669b24b04c3535515d69bb9702 (patch) | |
tree | ab6910d1bc0fc84ad9eafdb65d2ed39918485f51 | |
parent | 922631b988d8cbb821ebe2c67feffc0b95264894 (diff) |
sparc64: Define PAGE_OFFSET in terms of physical address bits.
This makes clearer the implications for a given choosen
value.
Based upon patches by Bob Picco.
Signed-off-by: David S. Miller <davem@davemloft.net>
Acked-by: Bob Picco <bob.picco@oracle.com>
-rw-r--r-- | arch/sparc/include/asm/page_64.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/sparc/include/asm/page_64.h b/arch/sparc/include/asm/page_64.h index d95931247feb..9dd0f7360822 100644 --- a/arch/sparc/include/asm/page_64.h +++ b/arch/sparc/include/asm/page_64.h | |||
@@ -117,7 +117,9 @@ typedef pte_t *pgtable_t; | |||
117 | /* We used to stick this into a hard-coded global register (%g4) | 117 | /* We used to stick this into a hard-coded global register (%g4) |
118 | * but that does not make sense anymore. | 118 | * but that does not make sense anymore. |
119 | */ | 119 | */ |
120 | #define PAGE_OFFSET _AC(0xFFFFF80000000000,UL) | 120 | #define MAX_SUPPORTED_PA_BITS 43 |
121 | #define PAGE_OFFSET_BY_BITS(X) (-(_AC(1,UL) << (X))) | ||
122 | #define PAGE_OFFSET PAGE_OFFSET_BY_BITS(MAX_SUPPORTED_PA_BITS) | ||
121 | 123 | ||
122 | #ifndef __ASSEMBLY__ | 124 | #ifndef __ASSEMBLY__ |
123 | 125 | ||