Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
9cff96e5
Commit
9cff96e5
authored
Sep 06, 2008
by
Russell King
Committed by
Russell King
Oct 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ARM] Re-jig Linux PTE bits to allow room for 4 memory type bits
Signed-off-by:
Russell King
<
rmk+kernel@arm.linux.org.uk
>
parent
da091653
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
arch/arm/include/asm/pgtable.h
arch/arm/include/asm/pgtable.h
+4
-4
No files found.
arch/arm/include/asm/pgtable.h
View file @
9cff96e5
...
...
@@ -166,10 +166,10 @@ extern void __pgd_error(const char *file, int line, unsigned long val);
#define L_PTE_YOUNG (1 << 1)
#define L_PTE_BUFFERABLE (1 << 2)
/* matches PTE */
#define L_PTE_CACHEABLE (1 << 3)
/* matches PTE */
#define L_PTE_
USER (1 << 4
)
#define L_PTE_WRITE (1 <<
5
)
#define L_PTE_
EXEC (1 << 6
)
#define L_PTE_
DIRTY (1 << 7
)
#define L_PTE_
DIRTY (1 << 6
)
#define L_PTE_WRITE (1 <<
7
)
#define L_PTE_
USER (1 << 8
)
#define L_PTE_
EXEC (1 << 9
)
#define L_PTE_SHARED (1 << 10)
/* shared(v6), coherent(xsc3) */
#ifndef __ASSEMBLY__
...
...
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