1a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/****************************************************************************
2a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************
3a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
4a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   This header was automatically generated from a Linux kernel header
5a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   of the same name, to make information necessary for userspace to
6a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   call into the kernel available to libc.  It contains only constants,
7a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   structures, and macros generated from the original header, and thus,
8a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   contains no copyrightable information.
9a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
10a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   To edit the content of this header, modify the corresponding
11a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   source file (e.g. under external/kernel-headers/original/) then
12a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   run bionic/libc/kernel/tools/update_all.py
13a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
14a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   Any manual change here will be lost the next time this script will
15a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   be run. You've been warned!
16a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
17a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************
18a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************/
19655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#ifndef _LINUX_SUSPEND_IOCTLS_H
20655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define _LINUX_SUSPEND_IOCTLS_H
21655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#include <linux/types.h>
22655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct resume_swap_area {
23a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
24d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __kernel_loff_t offset;
25d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u32 dev;
26655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng} __attribute__((packed));
27655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define SNAPSHOT_IOC_MAGIC '3'
28a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
29655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define SNAPSHOT_FREEZE _IO(SNAPSHOT_IOC_MAGIC, 1)
30655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define SNAPSHOT_UNFREEZE _IO(SNAPSHOT_IOC_MAGIC, 2)
31655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define SNAPSHOT_ATOMIC_RESTORE _IO(SNAPSHOT_IOC_MAGIC, 4)
32655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define SNAPSHOT_FREE _IO(SNAPSHOT_IOC_MAGIC, 5)
33a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
34655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define SNAPSHOT_FREE_SWAP_PAGES _IO(SNAPSHOT_IOC_MAGIC, 9)
35655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define SNAPSHOT_S2RAM _IO(SNAPSHOT_IOC_MAGIC, 11)
36d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao#define SNAPSHOT_SET_SWAP_AREA _IOW(SNAPSHOT_IOC_MAGIC, 13, struct resume_swap_area)
37655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define SNAPSHOT_GET_IMAGE_SIZE _IOR(SNAPSHOT_IOC_MAGIC, 14, __kernel_loff_t)
38a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
39655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define SNAPSHOT_PLATFORM_SUPPORT _IO(SNAPSHOT_IOC_MAGIC, 15)
40655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define SNAPSHOT_POWER_OFF _IO(SNAPSHOT_IOC_MAGIC, 16)
41655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define SNAPSHOT_CREATE_IMAGE _IOW(SNAPSHOT_IOC_MAGIC, 17, int)
42655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define SNAPSHOT_PREF_IMAGE_SIZE _IO(SNAPSHOT_IOC_MAGIC, 18)
43a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
44655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define SNAPSHOT_AVAIL_SWAP_SIZE _IOR(SNAPSHOT_IOC_MAGIC, 19, __kernel_loff_t)
45655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define SNAPSHOT_ALLOC_SWAP_PAGE _IOR(SNAPSHOT_IOC_MAGIC, 20, __kernel_loff_t)
46655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define SNAPSHOT_IOC_MAXNR 20
47a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich#endif
48655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
49