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
Kirill Smelkov
linux
Commits
caa451f3
Commit
caa451f3
authored
Oct 16, 2006
by
Kyle McMartin
Committed by
Kyle McMartin
Dec 08, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PARISC] Reserve 1GB of space for vmalloc/tmpalias space on parisc64
Signed-off-by:
Kyle McMartin
<
kyle@parisc-linux.org
>
parent
e51ec241
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
include/asm-parisc/page.h
include/asm-parisc/page.h
+5
-1
No files found.
include/asm-parisc/page.h
View file @
caa451f3
...
...
@@ -127,7 +127,11 @@ extern int npmem_ranges;
/* This governs the relationship between virtual and physical addresses.
* If you alter it, make sure to take care of our various fixed mapping
* segments in fixmap.h */
#define __PAGE_OFFSET (0x10000000)
#ifdef CONFIG_64BIT
#define __PAGE_OFFSET (0x40000000)
/* 1GB */
#else
#define __PAGE_OFFSET (0x10000000)
/* 256MB */
#endif
#define PAGE_OFFSET ((unsigned long)__PAGE_OFFSET)
...
...
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