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
45cb66f7
Commit
45cb66f7
authored
Dec 25, 2012
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mips: switch to generic compat rt_sigpending()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
056a0608
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
19 deletions
+3
-19
arch/mips/Kconfig
arch/mips/Kconfig
+1
-0
arch/mips/kernel/scall64-n32.S
arch/mips/kernel/scall64-n32.S
+1
-1
arch/mips/kernel/scall64-o32.S
arch/mips/kernel/scall64-o32.S
+1
-1
arch/mips/kernel/signal32.c
arch/mips/kernel/signal32.c
+0
-17
No files found.
arch/mips/Kconfig
View file @
45cb66f7
...
...
@@ -43,6 +43,7 @@ config MIPS
select MODULES_USE_ELF_RELA if MODULES && 64BIT
select GENERIC_SIGALTSTACK
select GENERIC_COMPAT_RT_SIGPROCMASK
select GENERIC_COMPAT_RT_SIGPENDING
menu "Machine selection"
...
...
arch/mips/kernel/scall64-n32.S
View file @
45cb66f7
...
...
@@ -229,7 +229,7 @@ EXPORT(sysn32_call_table)
PTR
sys_getsid
PTR
sys_capget
PTR
sys_capset
PTR
sys_32_rt_sigpending
/*
6125
*/
PTR
compat_sys_rt_sigpending
/*
6125
*/
PTR
compat_sys_rt_sigtimedwait
PTR
sys_32_rt_sigqueueinfo
PTR
compat_sys_rt_sigsuspend
...
...
arch/mips/kernel/scall64-o32.S
View file @
45cb66f7
...
...
@@ -388,7 +388,7 @@ sys_call_table:
PTR
sys32_rt_sigreturn
PTR
sys_32_rt_sigaction
PTR
compat_sys_rt_sigprocmask
/*
4195
*/
PTR
sys_32
_rt_sigpending
PTR
compat_sys
_rt_sigpending
PTR
compat_sys_rt_sigtimedwait
PTR
sys_32_rt_sigqueueinfo
PTR
compat_sys_rt_sigsuspend
...
...
arch/mips/kernel/signal32.c
View file @
45cb66f7
...
...
@@ -614,23 +614,6 @@ SYSCALL_DEFINE4(32_rt_sigaction, int, sig,
return
ret
;
}
SYSCALL_DEFINE2
(
32
_rt_sigpending
,
compat_sigset_t
__user
*
,
uset
,
unsigned
int
,
sigsetsize
)
{
int
ret
;
sigset_t
set
;
mm_segment_t
old_fs
=
get_fs
();
set_fs
(
KERNEL_DS
);
ret
=
sys_rt_sigpending
((
sigset_t
__user
*
)
&
set
,
sigsetsize
);
set_fs
(
old_fs
);
if
(
!
ret
&&
put_sigset
(
&
set
,
uset
))
return
-
EFAULT
;
return
ret
;
}
SYSCALL_DEFINE3
(
32
_rt_sigqueueinfo
,
int
,
pid
,
int
,
sig
,
compat_siginfo_t
__user
*
,
uinfo
)
{
...
...
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