Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
1eacdec6
Commit
1eacdec6
authored
May 30, 2004
by
Alexander Viro
Committed by
Linus Torvalds
May 30, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] sparse: amd64 - long constants
Long constants marked as such.
parent
e7f2954f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
include/asm-x86_64/pgtable.h
include/asm-x86_64/pgtable.h
+5
-5
include/asm-x86_64/processor.h
include/asm-x86_64/processor.h
+1
-1
include/asm-x86_64/uaccess.h
include/asm-x86_64/uaccess.h
+1
-1
No files found.
include/asm-x86_64/pgtable.h
View file @
1eacdec6
...
...
@@ -124,13 +124,13 @@ static inline void set_pml4(pml4_t *dst, pml4_t val)
#ifndef __ASSEMBLY__
#define VMALLOC_START 0xffffff0000000000
#define VMALLOC_END 0xffffff7fffffffff
#define MODULES_VADDR 0xffffffffa0000000
#define MODULES_END 0xffffffffafffffff
#define VMALLOC_START 0xffffff0000000000
UL
#define VMALLOC_END 0xffffff7fffffffff
UL
#define MODULES_VADDR 0xffffffffa0000000
UL
#define MODULES_END 0xffffffffafffffff
UL
#define MODULES_LEN (MODULES_END - MODULES_VADDR)
#define IOMAP_START 0xfffffe8000000000
#define IOMAP_START 0xfffffe8000000000
UL
#define _PAGE_BIT_PRESENT 0
#define _PAGE_BIT_RW 1
...
...
include/asm-x86_64/processor.h
View file @
1eacdec6
...
...
@@ -166,7 +166,7 @@ static inline void clear_in_cr4 (unsigned long mask)
/*
* User space process size: 512GB - 1GB (default).
*/
#define TASK_SIZE (0x0000007fc0000000)
#define TASK_SIZE (0x0000007fc0000000
UL
)
/* This decides where the kernel will search for a free chunk of vm
* space during mmap's.
...
...
include/asm-x86_64/uaccess.h
View file @
1eacdec6
...
...
@@ -24,7 +24,7 @@
#define MAKE_MM_SEG(s) ((mm_segment_t) { (s) })
#define KERNEL_DS MAKE_MM_SEG(0xFFFFFFFFFFFFFFFF)
#define KERNEL_DS MAKE_MM_SEG(0xFFFFFFFFFFFFFFFF
UL
)
#define USER_DS MAKE_MM_SEG(PAGE_OFFSET)
#define get_ds() (KERNEL_DS)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment