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
85a847ff
Commit
85a847ff
authored
Apr 22, 2012
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
parisc: resetting ->restart_block.fn needs to be done on rt_sigreturn()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
43a35995
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
arch/parisc/kernel/signal.c
arch/parisc/kernel/signal.c
+1
-2
No files found.
arch/parisc/kernel/signal.c
View file @
85a847ff
...
@@ -109,6 +109,7 @@ sys_rt_sigreturn(struct pt_regs *regs, int in_syscall)
...
@@ -109,6 +109,7 @@ sys_rt_sigreturn(struct pt_regs *regs, int in_syscall)
sigframe_size
=
PARISC_RT_SIGFRAME_SIZE32
;
sigframe_size
=
PARISC_RT_SIGFRAME_SIZE32
;
#endif
#endif
current_thread_info
()
->
restart_block
.
fn
=
do_no_restart_syscall
;
/* Unwind the user stack to get the rt_sigframe structure. */
/* Unwind the user stack to get the rt_sigframe structure. */
frame
=
(
struct
rt_sigframe
__user
*
)
frame
=
(
struct
rt_sigframe
__user
*
)
...
@@ -466,8 +467,6 @@ syscall_restart(struct pt_regs *regs, struct k_sigaction *ka)
...
@@ -466,8 +467,6 @@ syscall_restart(struct pt_regs *regs, struct k_sigaction *ka)
/* Check the return code */
/* Check the return code */
switch
(
regs
->
gr
[
28
])
{
switch
(
regs
->
gr
[
28
])
{
case
-
ERESTART_RESTARTBLOCK
:
case
-
ERESTART_RESTARTBLOCK
:
current_thread_info
()
->
restart_block
.
fn
=
do_no_restart_syscall
;
case
-
ERESTARTNOHAND
:
case
-
ERESTARTNOHAND
:
DBG
(
1
,
"ERESTARTNOHAND: returning -EINTR
\n
"
);
DBG
(
1
,
"ERESTARTNOHAND: returning -EINTR
\n
"
);
regs
->
gr
[
28
]
=
-
EINTR
;
regs
->
gr
[
28
]
=
-
EINTR
;
...
...
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