Commit 4892cb2f authored by Alexander Viro's avatar Alexander Viro Committed by Linus Torvalds

[PATCH] long constants on amd64

missing UL in several places (and no, none of these constants is ever
seen by as(1))
Signed-off-by: default avatarAl Viro <viro@parcelfarce.linux.theplanet.co.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 00668000
...@@ -119,8 +119,8 @@ extern inline void pgd_clear (pgd_t * pgd) ...@@ -119,8 +119,8 @@ extern inline void pgd_clear (pgd_t * pgd)
#define MAXMEM 0x3fffffffffffUL #define MAXMEM 0x3fffffffffffUL
#define VMALLOC_START 0xffffc20000000000UL #define VMALLOC_START 0xffffc20000000000UL
#define VMALLOC_END 0xffffe1ffffffffffUL #define VMALLOC_END 0xffffe1ffffffffffUL
#define MODULES_VADDR 0xffffffff88000000 #define MODULES_VADDR 0xffffffff88000000UL
#define MODULES_END 0xfffffffffff00000 #define MODULES_END 0xfffffffffff00000UL
#define MODULES_LEN (MODULES_END - MODULES_VADDR) #define MODULES_LEN (MODULES_END - MODULES_VADDR)
#define _PAGE_BIT_PRESENT 0 #define _PAGE_BIT_PRESENT 0
......
...@@ -162,7 +162,7 @@ static inline void clear_in_cr4 (unsigned long mask) ...@@ -162,7 +162,7 @@ static inline void clear_in_cr4 (unsigned long mask)
/* /*
* User space process size. 47bits. * User space process size. 47bits.
*/ */
#define TASK_SIZE (0x800000000000) #define TASK_SIZE (0x800000000000UL)
/* This decides where the kernel will search for a free chunk of vm /* This decides where the kernel will search for a free chunk of vm
* space during mmap's. * space during mmap's.
......
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