Commit d456f352 authored by Daniel Axtens's avatar Daniel Axtens Committed by Michael Ellerman

powerpc: mark 64-bit PD_HUGE constant as unsigned long

When compiled for 64-bit, the PD_HUGE constant is a 64-bit integer.
Mark it as an unsigned long.

This squashes over a thousand sparse warnings on my minimal T4240RDB
(e6500, ppc64be) config, of the following 2 forms:

arch/powerpc/include/asm/hugetlb.h:52:49: warning: constant 0x8000000000000000 is so big it is unsigned long
arch/powerpc/include/asm/nohash/pgtable.h:269:49: warning: constant 0x8000000000000000 is so big it is unsigned long
Signed-off-by: default avatarDaniel Axtens <dja@axtens.net>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent c516886f
...@@ -289,7 +289,7 @@ static inline bool pfn_valid(unsigned long pfn) ...@@ -289,7 +289,7 @@ static inline bool pfn_valid(unsigned long pfn)
* page tables at arbitrary addresses, this breaks and will have to change. * page tables at arbitrary addresses, this breaks and will have to change.
*/ */
#ifdef CONFIG_PPC64 #ifdef CONFIG_PPC64
#define PD_HUGE 0x8000000000000000 #define PD_HUGE 0x8000000000000000UL
#else #else
#define PD_HUGE 0x80000000 #define PD_HUGE 0x80000000
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment