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
85b05496
Commit
85b05496
authored
Nov 30, 2005
by
Ralf Baechle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[MIPS] Avoid duplicate do_syscall_trace calls on return from sigreturn.
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
04a7052c
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
8 deletions
+0
-8
arch/mips/kernel/irixsig.c
arch/mips/kernel/irixsig.c
+0
-4
arch/mips/kernel/signal.c
arch/mips/kernel/signal.c
+0
-2
arch/mips/kernel/signal32.c
arch/mips/kernel/signal32.c
+0
-2
No files found.
arch/mips/kernel/irixsig.c
View file @
85b05496
...
...
@@ -279,8 +279,6 @@ irix_sigreturn(struct pt_regs *regs)
/*
* Don't let your children do this ...
*/
if
(
current_thread_info
()
->
flags
&
TIF_SYSCALL_TRACE
)
do_syscall_trace
(
regs
,
1
);
__asm__
__volatile__
(
"move
\t
$29,%0
\n\t
"
"j
\t
syscall_exit"
...
...
@@ -783,8 +781,6 @@ asmlinkage void irix_setcontext(struct pt_regs *regs)
/*
* Don't let your children do this ...
*/
if
(
current_thread_info
()
->
flags
&
TIF_SYSCALL_TRACE
)
do_syscall_trace
(
regs
,
1
);
__asm__
__volatile__
(
"move
\t
$29,%0
\n\t
"
"j
\t
syscall_exit"
...
...
arch/mips/kernel/signal.c
View file @
85b05496
...
...
@@ -220,8 +220,6 @@ _sys_sigreturn(nabi_no_regargs struct pt_regs regs)
/*
* Don't let your children do this ...
*/
if
(
current_thread_info
()
->
flags
&
TIF_SYSCALL_TRACE
)
do_syscall_trace
(
&
regs
,
1
);
__asm__
__volatile__
(
"move
\t
$29, %0
\n\t
"
"j
\t
syscall_exit"
...
...
arch/mips/kernel/signal32.c
View file @
85b05496
...
...
@@ -497,8 +497,6 @@ _sys32_sigreturn(nabi_no_regargs struct pt_regs regs)
/*
* Don't let your children do this ...
*/
if
(
current_thread_info
()
->
flags
&
TIF_SYSCALL_TRACE
)
do_syscall_trace
(
&
regs
,
1
);
__asm__
__volatile__
(
"move
\t
$29, %0
\n\t
"
"j
\t
syscall_exit"
...
...
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