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
cfb25b82
Commit
cfb25b82
authored
Jun 30, 2023
by
Helge Deller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
parisc: signal: Mark do_notify_resume() and sys_rt_sigreturn() asmlinkage
Signed-off-by:
Helge Deller
<
deller@gmx.de
>
parent
a7fde0bf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
arch/parisc/kernel/signal.c
arch/parisc/kernel/signal.c
+5
-5
No files found.
arch/parisc/kernel/signal.c
View file @
cfb25b82
...
...
@@ -73,7 +73,7 @@ restore_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs)
return
err
;
}
void
asmlinkage
void
sys_rt_sigreturn
(
struct
pt_regs
*
regs
,
int
in_syscall
)
{
struct
rt_sigframe
__user
*
frame
;
...
...
@@ -176,7 +176,7 @@ get_sigframe(struct k_sigaction *ka, unsigned long sp, size_t frame_size)
}
static
long
setup_sigcontext
(
struct
sigcontext
__user
*
sc
,
struct
pt_regs
*
regs
,
int
in_syscall
)
setup_sigcontext
(
struct
sigcontext
__user
*
sc
,
struct
pt_regs
*
regs
,
long
in_syscall
)
{
unsigned
long
flags
=
0
;
...
...
@@ -211,7 +211,7 @@ setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs, int in_sysc
static
long
setup_rt_frame
(
struct
ksignal
*
ksig
,
sigset_t
*
set
,
struct
pt_regs
*
regs
,
int
in_syscall
)
long
in_syscall
)
{
struct
rt_sigframe
__user
*
frame
;
unsigned
long
rp
,
usp
;
...
...
@@ -380,7 +380,7 @@ setup_rt_frame(struct ksignal *ksig, sigset_t *set, struct pt_regs *regs,
*/
static
void
handle_signal
(
struct
ksignal
*
ksig
,
struct
pt_regs
*
regs
,
int
in_syscall
)
handle_signal
(
struct
ksignal
*
ksig
,
struct
pt_regs
*
regs
,
long
in_syscall
)
{
int
ret
;
sigset_t
*
oldset
=
sigmask_to_save
();
...
...
@@ -578,7 +578,7 @@ static void do_signal(struct pt_regs *regs, long in_syscall)
restore_saved_sigmask
();
}
void
do_notify_resume
(
struct
pt_regs
*
regs
,
long
in_syscall
)
asmlinkage
void
do_notify_resume
(
struct
pt_regs
*
regs
,
long
in_syscall
)
{
if
(
test_thread_flag
(
TIF_SIGPENDING
)
||
test_thread_flag
(
TIF_NOTIFY_SIGNAL
))
...
...
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