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
7b5d3c1d
Commit
7b5d3c1d
authored
Dec 25, 2012
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tile: switch to generic compat rt_sigqueueinfo()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
03e27595
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
17 deletions
+1
-17
arch/tile/Kconfig
arch/tile/Kconfig
+1
-0
arch/tile/include/asm/compat.h
arch/tile/include/asm/compat.h
+0
-2
arch/tile/kernel/compat_signal.c
arch/tile/kernel/compat_signal.c
+0
-15
No files found.
arch/tile/Kconfig
View file @
7b5d3c1d
...
...
@@ -22,6 +22,7 @@ config TILE
select GENERIC_CLOCKEVENTS
select MODULES_USE_ELF_RELA
select GENERIC_SIGALTSTACK
select GENERIC_COMPAT_RT_SIGQUEUEINFO
select GENERIC_COMPAT_RT_SIGPROCMASK
select GENERIC_COMPAT_RT_SIGPENDING
...
...
arch/tile/include/asm/compat.h
View file @
7b5d3c1d
...
...
@@ -278,8 +278,6 @@ struct compat_sigaltstack;
long
compat_sys_rt_sigaction
(
int
sig
,
struct
compat_sigaction
__user
*
act
,
struct
compat_sigaction
__user
*
oact
,
size_t
sigsetsize
);
long
compat_sys_rt_sigqueueinfo
(
int
pid
,
int
sig
,
struct
compat_siginfo
__user
*
uinfo
);
long
compat_sys_rt_sigreturn
(
void
);
long
compat_sys_truncate64
(
char
__user
*
filename
,
u32
dummy
,
u32
low
,
u32
high
);
long
compat_sys_ftruncate64
(
unsigned
int
fd
,
u32
dummy
,
u32
low
,
u32
high
);
...
...
arch/tile/kernel/compat_signal.c
View file @
7b5d3c1d
...
...
@@ -97,21 +97,6 @@ long compat_sys_rt_sigaction(int sig, struct compat_sigaction __user *act,
return
ret
;
}
long
compat_sys_rt_sigqueueinfo
(
int
pid
,
int
sig
,
struct
compat_siginfo
__user
*
uinfo
)
{
siginfo_t
info
;
int
ret
;
mm_segment_t
old_fs
=
get_fs
();
if
(
copy_siginfo_from_user32
(
&
info
,
uinfo
))
return
-
EFAULT
;
set_fs
(
KERNEL_DS
);
ret
=
sys_rt_sigqueueinfo
(
pid
,
sig
,
(
siginfo_t
__force
__user
*
)
&
info
);
set_fs
(
old_fs
);
return
ret
;
}
int
copy_siginfo_to_user32
(
struct
compat_siginfo
__user
*
to
,
siginfo_t
*
from
)
{
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