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 ****************************************************************************/
1905d08e9716b5974d6ed08973f44930804890b902Christopher Ferris#ifndef _UAPI__LINUX_BLKPG_H
2005d08e9716b5974d6ed08973f44930804890b902Christopher Ferris#define _UAPI__LINUX_BLKPG_H
21655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#include <linux/compiler.h>
22655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#include <linux/ioctl.h>
23d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao#define BLKPG _IO(0x12, 105)
24655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct blkpg_ioctl_arg {
25d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  int op;
26d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  int flags;
27d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  int datalen;
28d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  void __user * data;
29655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
30655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define BLKPG_ADD_PARTITION 1
31655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define BLKPG_DEL_PARTITION 2
32655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define BLKPG_RESIZE_PARTITION 3
33655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define BLKPG_DEVNAMELTH 64
34655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define BLKPG_VOLNAMELTH 64
35655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct blkpg_partition {
36d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  long long start;
37d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  long long length;
38d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  int pno;
39d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  char devname[BLKPG_DEVNAMELTH];
40d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  char volname[BLKPG_VOLNAMELTH];
41655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
42a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich#endif
43