diff options
author | Jack Steiner <steiner@sgi.com> | 2010-01-07 11:12:40 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2010-01-07 14:49:57 -0500 |
commit | e1e0138d7d10fd447c71cc70f367eac514bd3ce4 (patch) | |
tree | 2ee9c82f8d4543ade3e11956c14314fac909df8d | |
parent | b76365a18f7593c9df32a74bf2b4a39741b67bc6 (diff) |
x86, uv: uv_global_gru_mmr_address() macro fix
Fix bug in uv_global_gru_mmr_address macro. Macro failed
to cast an int value to a long prior to a left shift > 32.
Signed-off-by: Jack Steiner <steiner@sgi.com>
LKML-Reference: <20100107161240.GA2610@sgi.com>
Cc: <stable@kernel.org>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r-- | arch/x86/include/asm/uv/uv_hub.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/include/asm/uv/uv_hub.h b/arch/x86/include/asm/uv/uv_hub.h index 811bfabc80b7..7a81d9db57b9 100644 --- a/arch/x86/include/asm/uv/uv_hub.h +++ b/arch/x86/include/asm/uv/uv_hub.h | |||
@@ -335,7 +335,8 @@ static inline unsigned long uv_read_global_mmr64(int pnode, | |||
335 | */ | 335 | */ |
336 | static inline unsigned long uv_global_gru_mmr_address(int pnode, unsigned long offset) | 336 | static inline unsigned long uv_global_gru_mmr_address(int pnode, unsigned long offset) |
337 | { | 337 | { |
338 | return UV_GLOBAL_GRU_MMR_BASE | offset | (pnode << uv_hub_info->m_val); | 338 | return UV_GLOBAL_GRU_MMR_BASE | offset | |
339 | ((unsigned long)pnode << uv_hub_info->m_val); | ||
339 | } | 340 | } |
340 | 341 | ||
341 | /* | 342 | /* |