blob: 4ed81e74f86fbb2a9d7b0ab8e7d105d0944763c0 [file] [log] [blame]
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -08001/*
2 * linux/kernel/power/user.c
3 *
4 * This file provides the user space interface for software suspend/resume.
5 *
6 * Copyright (C) 2006 Rafael J. Wysocki <rjw@sisk.pl>
7 *
8 * This file is released under the GPLv2.
9 *
10 */
11
12#include <linux/suspend.h>
13#include <linux/syscalls.h>
Stefan Seyfried35926952006-12-06 20:34:06 -080014#include <linux/reboot.h>
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080015#include <linux/string.h>
16#include <linux/device.h>
17#include <linux/miscdevice.h>
18#include <linux/mm.h>
19#include <linux/swap.h>
20#include <linux/swapops.h>
21#include <linux/pm.h>
22#include <linux/fs.h>
Ben Hutchingsc3360782011-12-27 22:54:52 +010023#include <linux/compat.h>
Rafael J. Wysocki97c78012006-10-11 01:20:45 -070024#include <linux/console.h>
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -070025#include <linux/cpu.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080026#include <linux/freezer.h>
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080027
28#include <asm/uaccess.h>
29
30#include "power.h"
31
Rafael J. Wysockieb57c1c2007-10-26 01:01:10 +020032
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080033#define SNAPSHOT_MINOR 231
34
35static struct snapshot_data {
36 struct snapshot_handle handle;
37 int swap;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080038 int mode;
39 char frozen;
40 char ready;
Rafael J. Wysockieb57c1c2007-10-26 01:01:10 +020041 char platform_support;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080042} snapshot_state;
43
Rafael J. Wysocki0709db62007-05-06 14:50:45 -070044atomic_t snapshot_device_available = ATOMIC_INIT(1);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080045
46static int snapshot_open(struct inode *inode, struct file *filp)
47{
48 struct snapshot_data *data;
Alan Sternc3e94d82007-11-19 23:38:25 +010049 int error;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080050
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +010051 lock_system_sleep();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +020052
53 if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
54 error = -EBUSY;
55 goto Unlock;
56 }
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080057
Rafael J. Wysocki1525a2a2007-05-06 14:50:44 -070058 if ((filp->f_flags & O_ACCMODE) == O_RDWR) {
Rafael J. Wysocki0709db62007-05-06 14:50:45 -070059 atomic_inc(&snapshot_device_available);
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +020060 error = -ENOSYS;
61 goto Unlock;
Rafael J. Wysocki1525a2a2007-05-06 14:50:44 -070062 }
63 if(create_basic_memory_bitmaps()) {
Rafael J. Wysocki0709db62007-05-06 14:50:45 -070064 atomic_inc(&snapshot_device_available);
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +020065 error = -ENOMEM;
66 goto Unlock;
Rafael J. Wysocki1525a2a2007-05-06 14:50:44 -070067 }
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080068 nonseekable_open(inode, filp);
69 data = &snapshot_state;
70 filp->private_data = data;
71 memset(&data->handle, 0, sizeof(struct snapshot_handle));
72 if ((filp->f_flags & O_ACCMODE) == O_RDONLY) {
Rafael J. Wysockic7510852009-04-12 20:06:56 +020073 /* Hibernating. The image device should be accessible. */
Rafael J. Wysocki915bae92006-12-06 20:34:07 -080074 data->swap = swsusp_resume_device ?
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -080075 swap_type_of(swsusp_resume_device, 0, NULL) : -1;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080076 data->mode = O_RDONLY;
Alan Sternc3e94d82007-11-19 23:38:25 +010077 error = pm_notifier_call_chain(PM_HIBERNATION_PREPARE);
78 if (error)
79 pm_notifier_call_chain(PM_POST_HIBERNATION);
Andrey Borzenkovebae2602009-02-14 02:05:14 +010080 } else {
Rafael J. Wysockic7510852009-04-12 20:06:56 +020081 /*
82 * Resuming. We may need to wait for the image device to
83 * appear.
84 */
85 wait_for_device_probe();
Rafael J. Wysockic7510852009-04-12 20:06:56 +020086
Andrey Borzenkovebae2602009-02-14 02:05:14 +010087 data->swap = -1;
88 data->mode = O_WRONLY;
89 error = pm_notifier_call_chain(PM_RESTORE_PREPARE);
90 if (error)
91 pm_notifier_call_chain(PM_POST_RESTORE);
Alan Sternc3e94d82007-11-19 23:38:25 +010092 }
Michal Kubecek8440f4b2011-06-18 20:34:01 +020093 if (error) {
94 free_basic_memory_bitmaps();
Alan Sternc3e94d82007-11-19 23:38:25 +010095 atomic_inc(&snapshot_device_available);
Michal Kubecek8440f4b2011-06-18 20:34:01 +020096 }
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080097 data->frozen = 0;
98 data->ready = 0;
Rafael J. Wysockieb57c1c2007-10-26 01:01:10 +020099 data->platform_support = 0;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800100
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200101 Unlock:
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100102 unlock_system_sleep();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200103
104 return error;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800105}
106
107static int snapshot_release(struct inode *inode, struct file *filp)
108{
109 struct snapshot_data *data;
110
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100111 lock_system_sleep();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200112
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800113 swsusp_free();
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700114 free_basic_memory_bitmaps();
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800115 data = filp->private_data;
Rafael J. Wysockid1d241c2007-05-06 14:50:47 -0700116 free_all_swap_pages(data->swap);
Rafael J. Wysocki97449972011-05-10 21:10:01 +0200117 if (data->frozen) {
118 pm_restore_gfp_mask();
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800119 thaw_processes();
Rafael J. Wysocki97449972011-05-10 21:10:01 +0200120 }
Takashi Iwai1497dd12010-12-10 00:16:39 +0100121 pm_notifier_call_chain(data->mode == O_RDONLY ?
Alan Sternc3e94d82007-11-19 23:38:25 +0100122 PM_POST_HIBERNATION : PM_POST_RESTORE);
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700123 atomic_inc(&snapshot_device_available);
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200124
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100125 unlock_system_sleep();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200126
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800127 return 0;
128}
129
130static ssize_t snapshot_read(struct file *filp, char __user *buf,
131 size_t count, loff_t *offp)
132{
133 struct snapshot_data *data;
134 ssize_t res;
Jiri Slabyd3c1b242010-05-01 23:52:02 +0200135 loff_t pg_offp = *offp & ~PAGE_MASK;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800136
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100137 lock_system_sleep();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200138
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800139 data = filp->private_data;
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200140 if (!data->ready) {
141 res = -ENODATA;
142 goto Unlock;
143 }
Jiri Slabyd3c1b242010-05-01 23:52:02 +0200144 if (!pg_offp) { /* on page boundary? */
145 res = snapshot_read_next(&data->handle);
146 if (res <= 0)
147 goto Unlock;
148 } else {
149 res = PAGE_SIZE - pg_offp;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800150 }
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200151
Jiri Slabyd3c1b242010-05-01 23:52:02 +0200152 res = simple_read_from_buffer(buf, count, &pg_offp,
153 data_of(data->handle), res);
154 if (res > 0)
155 *offp += res;
156
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200157 Unlock:
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100158 unlock_system_sleep();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200159
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800160 return res;
161}
162
163static ssize_t snapshot_write(struct file *filp, const char __user *buf,
164 size_t count, loff_t *offp)
165{
166 struct snapshot_data *data;
167 ssize_t res;
Jiri Slabyd3c1b242010-05-01 23:52:02 +0200168 loff_t pg_offp = *offp & ~PAGE_MASK;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800169
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100170 lock_system_sleep();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200171
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800172 data = filp->private_data;
Jiri Slabyd3c1b242010-05-01 23:52:02 +0200173
174 if (!pg_offp) {
175 res = snapshot_write_next(&data->handle);
176 if (res <= 0)
177 goto unlock;
178 } else {
179 res = PAGE_SIZE - pg_offp;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800180 }
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200181
Jiri Slabyd3c1b242010-05-01 23:52:02 +0200182 res = simple_write_to_buffer(data_of(data->handle), res, &pg_offp,
183 buf, count);
184 if (res > 0)
185 *offp += res;
186unlock:
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100187 unlock_system_sleep();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200188
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800189 return res;
190}
191
Alan Cox52d11022008-06-11 22:07:52 +0200192static long snapshot_ioctl(struct file *filp, unsigned int cmd,
193 unsigned long arg)
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800194{
195 int error = 0;
196 struct snapshot_data *data;
Rafael J. Wysockiaf508b32007-10-26 00:59:31 +0200197 loff_t size;
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800198 sector_t offset;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800199
200 if (_IOC_TYPE(cmd) != SNAPSHOT_IOC_MAGIC)
201 return -ENOTTY;
202 if (_IOC_NR(cmd) > SNAPSHOT_IOC_MAXNR)
203 return -ENOTTY;
204 if (!capable(CAP_SYS_ADMIN))
205 return -EPERM;
206
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200207 if (!mutex_trylock(&pm_mutex))
208 return -EBUSY;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800209
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200210 data = filp->private_data;
Alan Cox52d11022008-06-11 22:07:52 +0200211
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800212 switch (cmd) {
213
214 case SNAPSHOT_FREEZE:
215 if (data->frozen)
216 break;
Rafael J. Wysocki1bfcf132008-10-15 22:01:21 -0700217
Alan Sternc3e94d82007-11-19 23:38:25 +0100218 printk("Syncing filesystems ... ");
219 sys_sync();
220 printk("done.\n");
Rafael J. Wysocki232b1432007-10-18 03:04:44 -0700221
Rafael J. Wysocki1bfcf132008-10-15 22:01:21 -0700222 error = freeze_processes();
Rafael J. Wysocki1e732032012-03-28 23:30:21 +0200223 if (!error)
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800224 data->frozen = 1;
225 break;
226
227 case SNAPSHOT_UNFREEZE:
Rafael J. Wysocki2f41ddd2007-06-16 10:16:03 -0700228 if (!data->frozen || data->ready)
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800229 break;
Rafael J. Wysockic9e664f2010-12-03 22:57:45 +0100230 pm_restore_gfp_mask();
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800231 thaw_processes();
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800232 data->frozen = 0;
233 break;
234
Jiri Slabyb694e522010-01-27 23:47:50 +0100235 case SNAPSHOT_CREATE_IMAGE:
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800236 if (data->mode != O_RDONLY || !data->frozen || data->ready) {
237 error = -EPERM;
238 break;
239 }
Rafael J. Wysockic9e664f2010-12-03 22:57:45 +0100240 pm_restore_gfp_mask();
Rafael J. Wysockieb57c1c2007-10-26 01:01:10 +0200241 error = hibernation_snapshot(data->platform_support);
Srivatsa S. Bhat51d6ff72012-02-04 22:26:38 +0100242 if (!error) {
Rafael J. Wysockicc5d2072007-10-26 01:03:33 +0200243 error = put_user(in_suspend, (int __user *)arg);
Srivatsa S. Bhata556d5b52012-02-04 23:39:56 +0100244 data->ready = !freezer_test_done && !error;
245 freezer_test_done = false;
Srivatsa S. Bhat97819a22011-12-01 22:33:10 +0100246 }
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800247 break;
248
249 case SNAPSHOT_ATOMIC_RESTORE:
Rafael J. Wysocki83573762006-12-06 20:34:18 -0800250 snapshot_write_finalize(&data->handle);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800251 if (data->mode != O_WRONLY || !data->frozen ||
252 !snapshot_image_loaded(&data->handle)) {
253 error = -EPERM;
254 break;
255 }
Rafael J. Wysockieb57c1c2007-10-26 01:01:10 +0200256 error = hibernation_restore(data->platform_support);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800257 break;
258
259 case SNAPSHOT_FREE:
260 swsusp_free();
261 memset(&data->handle, 0, sizeof(struct snapshot_handle));
262 data->ready = 0;
Rafael J. Wysocki181e9bd2012-01-29 20:35:52 +0100263 /*
264 * It is necessary to thaw kernel threads here, because
265 * SNAPSHOT_CREATE_IMAGE may be invoked directly after
266 * SNAPSHOT_FREE. In that case, if kernel threads were not
267 * thawed, the preallocation of memory carried out by
268 * hibernation_snapshot() might run into problems (i.e. it
269 * might fail or even deadlock).
270 */
271 thaw_kernel_threads();
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800272 break;
273
Jiri Slabyb694e522010-01-27 23:47:50 +0100274 case SNAPSHOT_PREF_IMAGE_SIZE:
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800275 image_size = arg;
276 break;
277
Rafael J. Wysockiaf508b32007-10-26 00:59:31 +0200278 case SNAPSHOT_GET_IMAGE_SIZE:
279 if (!data->ready) {
280 error = -ENODATA;
281 break;
282 }
283 size = snapshot_get_image_size();
284 size <<= PAGE_SHIFT;
285 error = put_user(size, (loff_t __user *)arg);
286 break;
287
Jiri Slabyb694e522010-01-27 23:47:50 +0100288 case SNAPSHOT_AVAIL_SWAP_SIZE:
Rafael J. Wysockiaf508b32007-10-26 00:59:31 +0200289 size = count_swap_pages(data->swap, 1);
290 size <<= PAGE_SHIFT;
291 error = put_user(size, (loff_t __user *)arg);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800292 break;
293
Jiri Slabyb694e522010-01-27 23:47:50 +0100294 case SNAPSHOT_ALLOC_SWAP_PAGE:
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800295 if (data->swap < 0 || data->swap >= MAX_SWAPFILES) {
296 error = -ENODEV;
297 break;
298 }
Rafael J. Wysockid1d241c2007-05-06 14:50:47 -0700299 offset = alloc_swapdev_block(data->swap);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800300 if (offset) {
301 offset <<= PAGE_SHIFT;
Rafael J. Wysockicc5d2072007-10-26 01:03:33 +0200302 error = put_user(offset, (loff_t __user *)arg);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800303 } else {
304 error = -ENOSPC;
305 }
306 break;
307
308 case SNAPSHOT_FREE_SWAP_PAGES:
309 if (data->swap < 0 || data->swap >= MAX_SWAPFILES) {
310 error = -ENODEV;
311 break;
312 }
Rafael J. Wysockid1d241c2007-05-06 14:50:47 -0700313 free_all_swap_pages(data->swap);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800314 break;
315
Luca Tettamanti9b238202006-03-23 03:00:09 -0800316 case SNAPSHOT_S2RAM:
317 if (!data->frozen) {
318 error = -EPERM;
319 break;
320 }
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700321 /*
322 * Tasks are frozen and the notifiers have been called with
323 * PM_HIBERNATION_PREPARE
324 */
325 error = suspend_devices_and_enter(PM_SUSPEND_MEM);
Rafael J. Wysocki36cb7032011-05-10 21:10:13 +0200326 data->ready = 0;
Luca Tettamanti9b238202006-03-23 03:00:09 -0800327 break;
328
Rafael J. Wysockieb57c1c2007-10-26 01:01:10 +0200329 case SNAPSHOT_PLATFORM_SUPPORT:
330 data->platform_support = !!arg;
331 break;
332
333 case SNAPSHOT_POWER_OFF:
334 if (data->platform_support)
335 error = hibernation_platform_enter();
336 break;
337
Rafael J. Wysocki37b2ba12006-12-06 20:34:15 -0800338 case SNAPSHOT_SET_SWAP_AREA:
Rafael J. Wysockid1d241c2007-05-06 14:50:47 -0700339 if (swsusp_swap_in_use()) {
Rafael J. Wysocki37b2ba12006-12-06 20:34:15 -0800340 error = -EPERM;
341 } else {
342 struct resume_swap_area swap_area;
343 dev_t swdev;
344
345 error = copy_from_user(&swap_area, (void __user *)arg,
346 sizeof(struct resume_swap_area));
347 if (error) {
348 error = -EFAULT;
349 break;
350 }
351
352 /*
353 * User space encodes device types as two-byte values,
354 * so we need to recode them
355 */
Jiri Slabyd88d4052010-04-10 22:28:56 +0200356 swdev = new_decode_dev(swap_area.dev);
Rafael J. Wysocki37b2ba12006-12-06 20:34:15 -0800357 if (swdev) {
358 offset = swap_area.offset;
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800359 data->swap = swap_type_of(swdev, offset, NULL);
Rafael J. Wysocki37b2ba12006-12-06 20:34:15 -0800360 if (data->swap < 0)
361 error = -ENODEV;
362 } else {
363 data->swap = -1;
364 error = -EINVAL;
365 }
366 }
367 break;
368
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800369 default:
370 error = -ENOTTY;
371
372 }
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200373
374 mutex_unlock(&pm_mutex);
375
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800376 return error;
377}
378
Ben Hutchingsc3360782011-12-27 22:54:52 +0100379#ifdef CONFIG_COMPAT
380
381struct compat_resume_swap_area {
382 compat_loff_t offset;
383 u32 dev;
384} __packed;
385
386static long
387snapshot_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
388{
389 BUILD_BUG_ON(sizeof(loff_t) != sizeof(compat_loff_t));
390
391 switch (cmd) {
392 case SNAPSHOT_GET_IMAGE_SIZE:
393 case SNAPSHOT_AVAIL_SWAP_SIZE:
394 case SNAPSHOT_ALLOC_SWAP_PAGE: {
395 compat_loff_t __user *uoffset = compat_ptr(arg);
396 loff_t offset;
397 mm_segment_t old_fs;
398 int err;
399
400 old_fs = get_fs();
401 set_fs(KERNEL_DS);
402 err = snapshot_ioctl(file, cmd, (unsigned long) &offset);
403 set_fs(old_fs);
404 if (!err && put_user(offset, uoffset))
405 err = -EFAULT;
406 return err;
407 }
408
409 case SNAPSHOT_CREATE_IMAGE:
410 return snapshot_ioctl(file, cmd,
411 (unsigned long) compat_ptr(arg));
412
413 case SNAPSHOT_SET_SWAP_AREA: {
414 struct compat_resume_swap_area __user *u_swap_area =
415 compat_ptr(arg);
416 struct resume_swap_area swap_area;
417 mm_segment_t old_fs;
418 int err;
419
420 err = get_user(swap_area.offset, &u_swap_area->offset);
421 err |= get_user(swap_area.dev, &u_swap_area->dev);
422 if (err)
423 return -EFAULT;
424 old_fs = get_fs();
425 set_fs(KERNEL_DS);
426 err = snapshot_ioctl(file, SNAPSHOT_SET_SWAP_AREA,
427 (unsigned long) &swap_area);
428 set_fs(old_fs);
429 return err;
430 }
431
432 default:
433 return snapshot_ioctl(file, cmd, arg);
434 }
435}
436
437#endif /* CONFIG_COMPAT */
438
Helge Deller15ad7cd2006-12-06 20:40:36 -0800439static const struct file_operations snapshot_fops = {
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800440 .open = snapshot_open,
441 .release = snapshot_release,
442 .read = snapshot_read,
443 .write = snapshot_write,
444 .llseek = no_llseek,
Alan Cox52d11022008-06-11 22:07:52 +0200445 .unlocked_ioctl = snapshot_ioctl,
Ben Hutchingsc3360782011-12-27 22:54:52 +0100446#ifdef CONFIG_COMPAT
447 .compat_ioctl = snapshot_compat_ioctl,
448#endif
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800449};
450
451static struct miscdevice snapshot_device = {
452 .minor = SNAPSHOT_MINOR,
453 .name = "snapshot",
454 .fops = &snapshot_fops,
455};
456
457static int __init snapshot_device_init(void)
458{
459 return misc_register(&snapshot_device);
460};
461
462device_initcall(snapshot_device_init);