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
1bec157a
Commit
1bec157a
authored
Sep 24, 2008
by
Paul Mundt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sh: Force pending restarted system calls to return -EINTR.
Signed-off-by:
Paul Mundt
<
lethal@linux-sh.org
>
parent
aa88f169
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
6 deletions
+18
-6
arch/sh/kernel/signal_32.c
arch/sh/kernel/signal_32.c
+6
-0
arch/sh/kernel/signal_64.c
arch/sh/kernel/signal_64.c
+12
-6
No files found.
arch/sh/kernel/signal_32.c
View file @
1bec157a
...
...
@@ -216,6 +216,9 @@ asmlinkage int sys_sigreturn(unsigned long r4, unsigned long r5,
sigset_t
set
;
int
r0
;
/* Always make any pending restarted system calls return -EINTR */
current_thread_info
()
->
restart_block
.
fn
=
do_no_restart_syscall
;
if
(
!
access_ok
(
VERIFY_READ
,
frame
,
sizeof
(
*
frame
)))
goto
badframe
;
...
...
@@ -250,6 +253,9 @@ asmlinkage int sys_rt_sigreturn(unsigned long r4, unsigned long r5,
sigset_t
set
;
int
r0
;
/* Always make any pending restarted system calls return -EINTR */
current_thread_info
()
->
restart_block
.
fn
=
do_no_restart_syscall
;
if
(
!
access_ok
(
VERIFY_READ
,
frame
,
sizeof
(
*
frame
)))
goto
badframe
;
...
...
arch/sh/kernel/signal_64.c
View file @
1bec157a
...
...
@@ -375,6 +375,9 @@ asmlinkage int sys_sigreturn(unsigned long r2, unsigned long r3,
sigset_t
set
;
long
long
ret
;
/* Always make any pending restarted system calls return -EINTR */
current_thread_info
()
->
restart_block
.
fn
=
do_no_restart_syscall
;
if
(
!
access_ok
(
VERIFY_READ
,
frame
,
sizeof
(
*
frame
)))
goto
badframe
;
...
...
@@ -412,6 +415,9 @@ asmlinkage int sys_rt_sigreturn(unsigned long r2, unsigned long r3,
stack_t
__user
st
;
long
long
ret
;
/* Always make any pending restarted system calls return -EINTR */
current_thread_info
()
->
restart_block
.
fn
=
do_no_restart_syscall
;
if
(
!
access_ok
(
VERIFY_READ
,
frame
,
sizeof
(
*
frame
)))
goto
badframe
;
...
...
@@ -539,7 +545,7 @@ static void setup_frame(int sig, struct k_sigaction *ka,
* On SH5 all edited pointers are subject to NEFF
*/
DEREF_REG_PR
=
(
DEREF_REG_PR
&
NEFF_SIGN
)
?
(
DEREF_REG_PR
|
NEFF_MASK
)
:
DEREF_REG_PR
;
(
DEREF_REG_PR
|
NEFF_MASK
)
:
DEREF_REG_PR
;
}
else
{
/*
* Different approach on SH5.
...
...
@@ -554,7 +560,7 @@ static void setup_frame(int sig, struct k_sigaction *ka,
*/
DEREF_REG_PR
=
(
unsigned
long
)
frame
->
retcode
|
0x01
;
DEREF_REG_PR
=
(
DEREF_REG_PR
&
NEFF_SIGN
)
?
(
DEREF_REG_PR
|
NEFF_MASK
)
:
DEREF_REG_PR
;
(
DEREF_REG_PR
|
NEFF_MASK
)
:
DEREF_REG_PR
;
if
(
__copy_to_user
(
frame
->
retcode
,
(
unsigned
long
long
)
sa_default_restorer
&
(
~
1
),
16
)
!=
0
)
...
...
@@ -570,7 +576,7 @@ static void setup_frame(int sig, struct k_sigaction *ka,
*/
regs
->
regs
[
REG_SP
]
=
(
unsigned
long
)
frame
;
regs
->
regs
[
REG_SP
]
=
(
regs
->
regs
[
REG_SP
]
&
NEFF_SIGN
)
?
(
regs
->
regs
[
REG_SP
]
|
NEFF_MASK
)
:
regs
->
regs
[
REG_SP
];
(
regs
->
regs
[
REG_SP
]
|
NEFF_MASK
)
:
regs
->
regs
[
REG_SP
];
regs
->
regs
[
REG_ARG1
]
=
signal
;
/* Arg for signal handler */
/* FIXME:
...
...
@@ -656,7 +662,7 @@ static void setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
* On SH5 all edited pointers are subject to NEFF
*/
DEREF_REG_PR
=
(
DEREF_REG_PR
&
NEFF_SIGN
)
?
(
DEREF_REG_PR
|
NEFF_MASK
)
:
DEREF_REG_PR
;
(
DEREF_REG_PR
|
NEFF_MASK
)
:
DEREF_REG_PR
;
}
else
{
/*
* Different approach on SH5.
...
...
@@ -672,7 +678,7 @@ static void setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
DEREF_REG_PR
=
(
unsigned
long
)
frame
->
retcode
|
0x01
;
DEREF_REG_PR
=
(
DEREF_REG_PR
&
NEFF_SIGN
)
?
(
DEREF_REG_PR
|
NEFF_MASK
)
:
DEREF_REG_PR
;
(
DEREF_REG_PR
|
NEFF_MASK
)
:
DEREF_REG_PR
;
if
(
__copy_to_user
(
frame
->
retcode
,
(
unsigned
long
long
)
sa_default_rt_restorer
&
(
~
1
),
16
)
!=
0
)
...
...
@@ -687,7 +693,7 @@ static void setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
*/
regs
->
regs
[
REG_SP
]
=
(
unsigned
long
)
frame
;
regs
->
regs
[
REG_SP
]
=
(
regs
->
regs
[
REG_SP
]
&
NEFF_SIGN
)
?
(
regs
->
regs
[
REG_SP
]
|
NEFF_MASK
)
:
regs
->
regs
[
REG_SP
];
(
regs
->
regs
[
REG_SP
]
|
NEFF_MASK
)
:
regs
->
regs
[
REG_SP
];
regs
->
regs
[
REG_ARG1
]
=
signal
;
/* Arg for signal handler */
regs
->
regs
[
REG_ARG2
]
=
(
unsigned
long
long
)(
unsigned
long
)(
signed
long
)
&
frame
->
info
;
regs
->
regs
[
REG_ARG3
]
=
(
unsigned
long
long
)(
unsigned
long
)(
signed
long
)
&
frame
->
uc
.
uc_mcontext
;
...
...
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