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
6e346228
Commit
6e346228
authored
Aug 04, 2005
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
It wasn't just x86-64 that had hardcoded VM_FAULT_xxx numbers
Fix up arm26, cris, frv, m68k, parisc and sh64 too..
parent
96800216
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
28 deletions
+25
-28
arch/arm26/mm/fault.c
arch/arm26/mm/fault.c
+7
-10
arch/cris/mm/fault.c
arch/cris/mm/fault.c
+3
-3
arch/frv/mm/fault.c
arch/frv/mm/fault.c
+3
-3
arch/m68k/mm/fault.c
arch/m68k/mm/fault.c
+3
-3
arch/parisc/mm/fault.c
arch/parisc/mm/fault.c
+6
-6
arch/sh64/mm/fault.c
arch/sh64/mm/fault.c
+3
-3
No files found.
arch/arm26/mm/fault.c
View file @
6e346228
...
...
@@ -176,12 +176,12 @@ __do_page_fault(struct mm_struct *mm, unsigned long addr, unsigned int fsr,
* Handle the "normal" cases first - successful and sigbus
*/
switch
(
fault
)
{
case
2
:
case
VM_FAULT_MAJOR
:
tsk
->
maj_flt
++
;
return
fault
;
case
1
:
case
VM_FAULT_MINOR
:
tsk
->
min_flt
++
;
case
0
:
case
VM_FAULT_SIGBUS
:
return
fault
;
}
...
...
@@ -226,14 +226,11 @@ int do_page_fault(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
/*
* Handle the "normal" case first
*/
if
(
fault
>
0
)
switch
(
fault
)
{
case
VM_FAULT_MINOR
:
case
VM_FAULT_MAJOR
:
return
0
;
/*
* We had some memory, but were unable to
* successfully fix up this page fault.
*/
if
(
fault
==
0
){
case
VM_FAULT_SIGBUS
:
goto
do_sigbus
;
}
...
...
arch/cris/mm/fault.c
View file @
6e346228
...
...
@@ -284,13 +284,13 @@ do_page_fault(unsigned long address, struct pt_regs *regs,
*/
switch
(
handle_mm_fault
(
mm
,
vma
,
address
,
writeaccess
&
1
))
{
case
1
:
case
VM_FAULT_MINOR
:
tsk
->
min_flt
++
;
break
;
case
2
:
case
VM_FAULT_MAJOR
:
tsk
->
maj_flt
++
;
break
;
case
0
:
case
VM_FAULT_SIGBUS
:
goto
do_sigbus
;
default:
goto
out_of_memory
;
...
...
arch/frv/mm/fault.c
View file @
6e346228
...
...
@@ -163,13 +163,13 @@ asmlinkage void do_page_fault(int datammu, unsigned long esr0, unsigned long ear
* the fault.
*/
switch
(
handle_mm_fault
(
mm
,
vma
,
ear0
,
write
))
{
case
1
:
case
VM_FAULT_MINOR
:
current
->
min_flt
++
;
break
;
case
2
:
case
VM_FAULT_MAJOR
:
current
->
maj_flt
++
;
break
;
case
0
:
case
VM_FAULT_SIGBUS
:
goto
do_sigbus
;
default:
goto
out_of_memory
;
...
...
arch/m68k/mm/fault.c
View file @
6e346228
...
...
@@ -160,13 +160,13 @@ int do_page_fault(struct pt_regs *regs, unsigned long address,
printk
(
"handle_mm_fault returns %d
\n
"
,
fault
);
#endif
switch
(
fault
)
{
case
1
:
case
VM_FAULT_MINOR
:
current
->
min_flt
++
;
break
;
case
2
:
case
VM_FAULT_MAJOR
:
current
->
maj_flt
++
;
break
;
case
0
:
case
VM_FAULT_SIGBUS
:
goto
bus_err
;
default:
goto
out_of_memory
;
...
...
arch/parisc/mm/fault.c
View file @
6e346228
...
...
@@ -178,17 +178,17 @@ void do_page_fault(struct pt_regs *regs, unsigned long code,
*/
switch
(
handle_mm_fault
(
mm
,
vma
,
address
,
(
acc_type
&
VM_WRITE
)
!=
0
))
{
case
1
:
case
VM_FAULT_MINOR
:
++
current
->
min_flt
;
break
;
case
2
:
case
VM_FAULT_MAJOR
:
++
current
->
maj_flt
;
break
;
case
0
:
case
VM_FAULT_SIGBUS
:
/*
* We
ran out of memory, or some other thing happened
*
to us that made us unable to handle the page fault
* gracefully.
* We
hit a hared mapping outside of the file, or some
*
other thing happened to us that made us unable to
*
handle the page fault
gracefully.
*/
goto
bad_area
;
default:
...
...
arch/sh64/mm/fault.c
View file @
6e346228
...
...
@@ -223,13 +223,13 @@ asmlinkage void do_page_fault(struct pt_regs *regs, unsigned long writeaccess,
*/
survive:
switch
(
handle_mm_fault
(
mm
,
vma
,
address
,
writeaccess
))
{
case
1
:
case
VM_FAULT_MINOR
:
tsk
->
min_flt
++
;
break
;
case
2
:
case
VM_FAULT_MAJOR
:
tsk
->
maj_flt
++
;
break
;
case
0
:
case
VM_FAULT_SIGBUS
:
goto
do_sigbus
;
default:
goto
out_of_memory
;
...
...
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