Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
linux-seco-imx
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Jira
Code
Merge requests
11
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Clea OS
bsp
nxp
linux-seco-imx
Commits
03240b27
Commit
03240b27
authored
12 years ago
by
Al Viro
Browse files
Options
Downloads
Patches
Plain Diff
fixups for signal breakage
Obvious brainos spotted by Geert. Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
9171c670
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
arch/avr32/kernel/signal.c
+1
-1
1 addition, 1 deletion
arch/avr32/kernel/signal.c
arch/xtensa/include/asm/syscall.h
+2
-2
2 additions, 2 deletions
arch/xtensa/include/asm/syscall.h
arch/xtensa/kernel/signal.c
+1
-1
1 addition, 1 deletion
arch/xtensa/kernel/signal.c
with
4 additions
and
4 deletions
arch/avr32/kernel/signal.c
+
1
−
1
View file @
03240b27
...
...
@@ -300,7 +300,7 @@ asmlinkage void do_notify_resume(struct pt_regs *regs, struct thread_info *ti)
if
((
sysreg_read
(
SR
)
&
MODE_MASK
)
==
MODE_SUPERVISOR
)
syscall
=
1
;
if
(
ti
->
flags
&
_TIF_SIGPENDING
)
)
if
(
ti
->
flags
&
_TIF_SIGPENDING
)
do_signal
(
regs
,
syscall
);
if
(
ti
->
flags
&
_TIF_NOTIFY_RESUME
)
{
...
...
This diff is collapsed.
Click to expand it.
arch/xtensa/include/asm/syscall.h
+
2
−
2
View file @
03240b27
...
...
@@ -31,5 +31,5 @@ asmlinkage long sys_pselect6(int n, fd_set __user *inp, fd_set __user *outp,
asmlinkage
long
sys_ppoll
(
struct
pollfd
__user
*
ufds
,
unsigned
int
nfds
,
struct
timespec
__user
*
tsp
,
const
sigset_t
__user
*
sigmask
,
size_t
sigsetsize
);
asmlinkage
long
sys_rt_sigsuspend
(
sigset_t
__user
*
unewset
,
size_t
sigsetsize
);
This diff is collapsed.
Click to expand it.
arch/xtensa/kernel/signal.c
+
1
−
1
View file @
03240b27
...
...
@@ -493,7 +493,7 @@ static void do_signal(struct pt_regs *regs)
if
(
ret
)
return
;
signal_delivered
(
signr
,
info
,
ka
,
regs
,
0
);
signal_delivered
(
signr
,
&
info
,
&
ka
,
regs
,
0
);
if
(
current
->
ptrace
&
PT_SINGLESTEP
)
task_pt_regs
(
current
)
->
icountlevel
=
1
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment