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
9acb98fb
Commit
9acb98fb
authored
Dec 17, 2007
by
Paul Mundt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sh: Stub in page_table_range_init() on nommu.
Signed-off-by:
Paul Mundt
<
lethal@linux-sh.org
>
parent
d7ef4fb3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
arch/sh/mm/tlb-nommu.c
arch/sh/mm/tlb-nommu.c
+6
-0
include/asm-sh/pgtable.h
include/asm-sh/pgtable.h
+2
-0
No files found.
arch/sh/mm/tlb-nommu.c
View file @
9acb98fb
...
@@ -9,6 +9,7 @@
...
@@ -9,6 +9,7 @@
*/
*/
#include <linux/kernel.h>
#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/mm.h>
#include <asm/pgtable.h>
/*
/*
* Nothing too terribly exciting here ..
* Nothing too terribly exciting here ..
...
@@ -49,3 +50,8 @@ void update_mmu_cache(struct vm_area_struct * vma,
...
@@ -49,3 +50,8 @@ void update_mmu_cache(struct vm_area_struct * vma,
{
{
BUG
();
BUG
();
}
}
void
__init
page_table_range_init
(
unsigned
long
start
,
unsigned
long
end
,
pgd_t
*
pgd_base
)
{
}
include/asm-sh/pgtable.h
View file @
9acb98fb
...
@@ -144,6 +144,8 @@ extern void update_mmu_cache(struct vm_area_struct * vma,
...
@@ -144,6 +144,8 @@ extern void update_mmu_cache(struct vm_area_struct * vma,
unsigned
long
address
,
pte_t
pte
);
unsigned
long
address
,
pte_t
pte
);
extern
pgd_t
swapper_pg_dir
[
PTRS_PER_PGD
];
extern
pgd_t
swapper_pg_dir
[
PTRS_PER_PGD
];
extern
void
paging_init
(
void
);
extern
void
paging_init
(
void
);
extern
void
page_table_range_init
(
unsigned
long
start
,
unsigned
long
end
,
pgd_t
*
pgd
);
#include <asm-generic/pgtable.h>
#include <asm-generic/pgtable.h>
...
...
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