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
a90993c6
Commit
a90993c6
authored
Aug 04, 2010
by
Jesper Nilsson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CRIS: Fixup lookup for delay slot faults
Signed-off-by:
Jesper Nilsson
<
jesper.nilsson@axis.com
>
parent
7c8a25b5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
arch/cris/mm/fault.c
arch/cris/mm/fault.c
+4
-1
No files found.
arch/cris/mm/fault.c
View file @
a90993c6
...
...
@@ -334,8 +334,11 @@ int
find_fixup_code
(
struct
pt_regs
*
regs
)
{
const
struct
exception_table_entry
*
fixup
;
/* in case of delay slot fault (v32) */
unsigned
long
ip
=
(
instruction_pointer
(
regs
)
&
~
0x1
);
if
((
fixup
=
search_exception_tables
(
instruction_pointer
(
regs
)))
!=
0
)
{
fixup
=
search_exception_tables
(
ip
);
if
(
fixup
!=
0
)
{
/* Adjust the instruction pointer in the stackframe. */
instruction_pointer
(
regs
)
=
fixup
->
fixup
;
arch_fixup
(
regs
);
...
...
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