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
cfe0467c
Commit
cfe0467c
authored
Dec 25, 2012
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
powerpc: switch to generic compat rt_sigpending()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
451a651d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
18 deletions
+1
-18
arch/powerpc/Kconfig
arch/powerpc/Kconfig
+1
-0
arch/powerpc/kernel/signal_32.c
arch/powerpc/kernel/signal_32.c
+0
-18
No files found.
arch/powerpc/Kconfig
View file @
cfe0467c
...
...
@@ -146,6 +146,7 @@ config PPC
select CLONE_BACKWARDS
select GENERIC_SIGALTSTACK
select GENERIC_COMPAT_RT_SIGPROCMASK
select GENERIC_COMPAT_RT_SIGPENDING
config EARLY_PRINTK
bool
...
...
arch/powerpc/kernel/signal_32.c
View file @
cfe0467c
...
...
@@ -620,24 +620,6 @@ long compat_sys_rt_sigaction(int sig, const struct sigaction32 __user *act,
return
ret
;
}
long
compat_sys_rt_sigpending
(
compat_sigset_t
__user
*
set
,
compat_size_t
sigsetsize
)
{
sigset_t
s
;
int
ret
;
mm_segment_t
old_fs
=
get_fs
();
set_fs
(
KERNEL_DS
);
/* The __user pointer cast is valid because of the set_fs() */
ret
=
sys_rt_sigpending
((
sigset_t
__user
*
)
&
s
,
sigsetsize
);
set_fs
(
old_fs
);
if
(
!
ret
)
{
if
(
put_sigset_t
(
set
,
&
s
))
return
-
EFAULT
;
}
return
ret
;
}
int
copy_siginfo_to_user32
(
struct
compat_siginfo
__user
*
d
,
siginfo_t
*
s
)
{
int
err
;
...
...
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