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
a5ae754a
Commit
a5ae754a
authored
Sep 04, 2017
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ppc: switch to {get,put}_compat_sigset()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
d74f0f47
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
29 deletions
+2
-29
arch/powerpc/kernel/signal_32.c
arch/powerpc/kernel/signal_32.c
+2
-29
No files found.
arch/powerpc/kernel/signal_32.c
View file @
a5ae754a
...
@@ -94,40 +94,13 @@
...
@@ -94,40 +94,13 @@
*/
*/
static
inline
int
put_sigset_t
(
compat_sigset_t
__user
*
uset
,
sigset_t
*
set
)
static
inline
int
put_sigset_t
(
compat_sigset_t
__user
*
uset
,
sigset_t
*
set
)
{
{
compat_sigset_t
cset
;
return
put_compat_sigset
(
uset
,
set
,
sizeof
(
*
uset
));
switch
(
_NSIG_WORDS
)
{
case
4
:
cset
.
sig
[
6
]
=
set
->
sig
[
3
]
&
0xffffffffull
;
cset
.
sig
[
7
]
=
set
->
sig
[
3
]
>>
32
;
case
3
:
cset
.
sig
[
4
]
=
set
->
sig
[
2
]
&
0xffffffffull
;
cset
.
sig
[
5
]
=
set
->
sig
[
2
]
>>
32
;
case
2
:
cset
.
sig
[
2
]
=
set
->
sig
[
1
]
&
0xffffffffull
;
cset
.
sig
[
3
]
=
set
->
sig
[
1
]
>>
32
;
case
1
:
cset
.
sig
[
0
]
=
set
->
sig
[
0
]
&
0xffffffffull
;
cset
.
sig
[
1
]
=
set
->
sig
[
0
]
>>
32
;
}
return
copy_to_user
(
uset
,
&
cset
,
sizeof
(
*
uset
));
}
}
static
inline
int
get_sigset_t
(
sigset_t
*
set
,
static
inline
int
get_sigset_t
(
sigset_t
*
set
,
const
compat_sigset_t
__user
*
uset
)
const
compat_sigset_t
__user
*
uset
)
{
{
compat_sigset_t
s32
;
return
get_compat_sigset
(
set
,
uset
);
if
(
copy_from_user
(
&
s32
,
uset
,
sizeof
(
*
uset
)))
return
-
EFAULT
;
/*
* Swap the 2 words of the 64-bit sigset_t (they are stored
* in the "wrong" endian in 32-bit user storage).
*/
switch
(
_NSIG_WORDS
)
{
case
4
:
set
->
sig
[
3
]
=
s32
.
sig
[
6
]
|
(((
long
)
s32
.
sig
[
7
])
<<
32
);
case
3
:
set
->
sig
[
2
]
=
s32
.
sig
[
4
]
|
(((
long
)
s32
.
sig
[
5
])
<<
32
);
case
2
:
set
->
sig
[
1
]
=
s32
.
sig
[
2
]
|
(((
long
)
s32
.
sig
[
3
])
<<
32
);
case
1
:
set
->
sig
[
0
]
=
s32
.
sig
[
0
]
|
(((
long
)
s32
.
sig
[
1
])
<<
32
);
}
return
0
;
}
}
#define to_user_ptr(p) ptr_to_compat(p)
#define to_user_ptr(p) ptr_to_compat(p)
...
...
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