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
048c6140
Commit
048c6140
authored
Aug 03, 2006
by
Ralf Baechle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[MIPS] Don't call try_to_freeze in do_signal & co.
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
b4b30a5a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
12 deletions
+0
-12
arch/mips/kernel/irixsig.c
arch/mips/kernel/irixsig.c
+0
-4
arch/mips/kernel/signal.c
arch/mips/kernel/signal.c
+0
-4
arch/mips/kernel/signal32.c
arch/mips/kernel/signal32.c
+0
-4
No files found.
arch/mips/kernel/irixsig.c
View file @
048c6140
...
...
@@ -186,9 +186,6 @@ asmlinkage int do_irix_signal(sigset_t *oldset, struct pt_regs *regs)
if
(
!
user_mode
(
regs
))
return
1
;
if
(
try_to_freeze
())
goto
no_signal
;
if
(
!
oldset
)
oldset
=
&
current
->
blocked
;
...
...
@@ -196,7 +193,6 @@ asmlinkage int do_irix_signal(sigset_t *oldset, struct pt_regs *regs)
if
(
signr
>
0
)
return
handle_signal
(
signr
,
&
info
,
&
ka
,
oldset
,
regs
);
no_signal:
/*
* Who's code doesn't conform to the restartable syscall convention
* dies here!!! The li instruction, a single machine instruction,
...
...
arch/mips/kernel/signal.c
View file @
048c6140
...
...
@@ -424,9 +424,6 @@ void do_signal(struct pt_regs *regs)
if
(
!
user_mode
(
regs
))
return
;
if
(
try_to_freeze
())
goto
no_signal
;
if
(
test_thread_flag
(
TIF_RESTORE_SIGMASK
))
oldset
=
&
current
->
saved_sigmask
;
else
...
...
@@ -448,7 +445,6 @@ void do_signal(struct pt_regs *regs)
}
}
no_signal:
/*
* Who's code doesn't conform to the restartable syscall convention
* dies here!!! The li instruction, a single machine instruction,
...
...
arch/mips/kernel/signal32.c
View file @
048c6140
...
...
@@ -815,9 +815,6 @@ void do_signal32(struct pt_regs *regs)
if
(
!
user_mode
(
regs
))
return
;
if
(
try_to_freeze
())
goto
no_signal
;
if
(
test_thread_flag
(
TIF_RESTORE_SIGMASK
))
oldset
=
&
current
->
saved_sigmask
;
else
...
...
@@ -838,7 +835,6 @@ void do_signal32(struct pt_regs *regs)
}
}
no_signal:
/*
* Who's code doesn't conform to the restartable syscall convention
* dies here!!! The li instruction, a single machine instruction,
...
...
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