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
c233523b
Commit
c233523b
authored
Jan 05, 2012
by
Rafael J. Wysocki
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'pm-sleep' into pm-for-linus
* pm-sleep: PM / Hibernate: Implement compat_ioctl for /dev/snapshot
parents
9ec23949
c336078b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
0 deletions
+64
-0
kernel/power/user.c
kernel/power/user.c
+64
-0
No files found.
kernel/power/user.c
View file @
c233523b
...
@@ -21,6 +21,7 @@
...
@@ -21,6 +21,7 @@
#include <linux/swapops.h>
#include <linux/swapops.h>
#include <linux/pm.h>
#include <linux/pm.h>
#include <linux/fs.h>
#include <linux/fs.h>
#include <linux/compat.h>
#include <linux/console.h>
#include <linux/console.h>
#include <linux/cpu.h>
#include <linux/cpu.h>
#include <linux/freezer.h>
#include <linux/freezer.h>
...
@@ -380,6 +381,66 @@ static long snapshot_ioctl(struct file *filp, unsigned int cmd,
...
@@ -380,6 +381,66 @@ static long snapshot_ioctl(struct file *filp, unsigned int cmd,
return
error
;
return
error
;
}
}
#ifdef CONFIG_COMPAT
struct
compat_resume_swap_area
{
compat_loff_t
offset
;
u32
dev
;
}
__packed
;
static
long
snapshot_compat_ioctl
(
struct
file
*
file
,
unsigned
int
cmd
,
unsigned
long
arg
)
{
BUILD_BUG_ON
(
sizeof
(
loff_t
)
!=
sizeof
(
compat_loff_t
));
switch
(
cmd
)
{
case
SNAPSHOT_GET_IMAGE_SIZE
:
case
SNAPSHOT_AVAIL_SWAP_SIZE
:
case
SNAPSHOT_ALLOC_SWAP_PAGE
:
{
compat_loff_t
__user
*
uoffset
=
compat_ptr
(
arg
);
loff_t
offset
;
mm_segment_t
old_fs
;
int
err
;
old_fs
=
get_fs
();
set_fs
(
KERNEL_DS
);
err
=
snapshot_ioctl
(
file
,
cmd
,
(
unsigned
long
)
&
offset
);
set_fs
(
old_fs
);
if
(
!
err
&&
put_user
(
offset
,
uoffset
))
err
=
-
EFAULT
;
return
err
;
}
case
SNAPSHOT_CREATE_IMAGE
:
return
snapshot_ioctl
(
file
,
cmd
,
(
unsigned
long
)
compat_ptr
(
arg
));
case
SNAPSHOT_SET_SWAP_AREA
:
{
struct
compat_resume_swap_area
__user
*
u_swap_area
=
compat_ptr
(
arg
);
struct
resume_swap_area
swap_area
;
mm_segment_t
old_fs
;
int
err
;
err
=
get_user
(
swap_area
.
offset
,
&
u_swap_area
->
offset
);
err
|=
get_user
(
swap_area
.
dev
,
&
u_swap_area
->
dev
);
if
(
err
)
return
-
EFAULT
;
old_fs
=
get_fs
();
set_fs
(
KERNEL_DS
);
err
=
snapshot_ioctl
(
file
,
SNAPSHOT_SET_SWAP_AREA
,
(
unsigned
long
)
&
swap_area
);
set_fs
(
old_fs
);
return
err
;
}
default:
return
snapshot_ioctl
(
file
,
cmd
,
arg
);
}
}
#endif
/* CONFIG_COMPAT */
static
const
struct
file_operations
snapshot_fops
=
{
static
const
struct
file_operations
snapshot_fops
=
{
.
open
=
snapshot_open
,
.
open
=
snapshot_open
,
.
release
=
snapshot_release
,
.
release
=
snapshot_release
,
...
@@ -387,6 +448,9 @@ static const struct file_operations snapshot_fops = {
...
@@ -387,6 +448,9 @@ static const struct file_operations snapshot_fops = {
.
write
=
snapshot_write
,
.
write
=
snapshot_write
,
.
llseek
=
no_llseek
,
.
llseek
=
no_llseek
,
.
unlocked_ioctl
=
snapshot_ioctl
,
.
unlocked_ioctl
=
snapshot_ioctl
,
#ifdef CONFIG_COMPAT
.
compat_ioctl
=
snapshot_compat_ioctl
,
#endif
};
};
static
struct
miscdevice
snapshot_device
=
{
static
struct
miscdevice
snapshot_device
=
{
...
...
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