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
1c37ea82
Commit
1c37ea82
authored
Dec 23, 2012
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mips: switch to compat_sys_waitid()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
ea536ad4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
27 deletions
+1
-27
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
-26
No files found.
arch/mips/kernel/scall64-o32.S
View file @
1c37ea82
...
...
@@ -470,7 +470,7 @@ sys_call_table:
PTR
compat_sys_mq_notify
/*
4275
*/
PTR
compat_sys_mq_getsetattr
PTR
sys_ni_syscall
/*
sys_vserver
*/
PTR
sys_32
_waitid
PTR
compat_sys
_waitid
PTR
sys_ni_syscall
/*
available
,
was
setaltroot
*/
PTR
sys_add_key
/*
4280
*/
PTR
sys_request_key
...
...
arch/mips/kernel/signal32.c
View file @
1c37ea82
...
...
@@ -686,32 +686,6 @@ SYSCALL_DEFINE3(32_rt_sigqueueinfo, int, pid, int, sig,
return
ret
;
}
SYSCALL_DEFINE5
(
32
_waitid
,
int
,
which
,
compat_pid_t
,
pid
,
compat_siginfo_t
__user
*
,
uinfo
,
int
,
options
,
struct
compat_rusage
__user
*
,
uru
)
{
siginfo_t
info
;
struct
rusage
ru
;
long
ret
;
mm_segment_t
old_fs
=
get_fs
();
info
.
si_signo
=
0
;
set_fs
(
KERNEL_DS
);
ret
=
sys_waitid
(
which
,
pid
,
(
siginfo_t
__user
*
)
&
info
,
options
,
uru
?
(
struct
rusage
__user
*
)
&
ru
:
NULL
);
set_fs
(
old_fs
);
if
(
ret
<
0
||
info
.
si_signo
==
0
)
return
ret
;
if
(
uru
&&
(
ret
=
put_compat_rusage
(
&
ru
,
uru
)))
return
ret
;
BUG_ON
(
info
.
si_code
&
__SI_MASK
);
info
.
si_code
|=
__SI_CHLD
;
return
copy_siginfo_to_user32
(
uinfo
,
&
info
);
}
static
int
signal32_init
(
void
)
{
if
(
cpu_has_fpu
)
{
...
...
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