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
nexedi
linux
Commits
7f1c6168
Commit
7f1c6168
authored
Sep 17, 2012
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
microblaze: don't bother with SIGTRAP in setup_rt_frame()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
548916e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
arch/microblaze/kernel/signal.c
arch/microblaze/kernel/signal.c
+2
-5
No files found.
arch/microblaze/kernel/signal.c
View file @
7f1c6168
...
...
@@ -254,10 +254,6 @@ static int setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
set_fs
(
USER_DS
);
/* the tracer may want to single-step inside the handler */
if
(
test_thread_flag
(
TIF_SINGLESTEP
))
ptrace_notify
(
SIGTRAP
);
#ifdef DEBUG_SIG
printk
(
KERN_INFO
"SIG deliver (%s:%d): sp=%p pc=%08lx
\n
"
,
current
->
comm
,
current
->
pid
,
frame
,
regs
->
pc
);
...
...
@@ -323,7 +319,8 @@ handle_signal(unsigned long sig, struct k_sigaction *ka,
if
(
ret
)
return
;
signal_delivered
(
sig
,
info
,
ka
,
regs
,
0
);
signal_delivered
(
sig
,
info
,
ka
,
regs
,
test_thread_flag
(
TIF_SINGLESTEP
));
}
/*
...
...
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