blob: 35b973004e93b436238e17d740d3b429c79d19fa [file] [log] [blame]
Nick Kralevicha67e4de2013-01-14 11:28:26 -08001/****************************************************************************
2 ****************************************************************************
3 ***
4 *** This header was automatically generated from a Linux kernel header
5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
7 *** structures, and macros generated from the original header, and thus,
8 *** contains no copyrightable information.
9 ***
10 *** To edit the content of this header, modify the corresponding
11 *** source file (e.g. under external/kernel-headers/original/) then
12 *** run bionic/libc/kernel/tools/update_all.py
13 ***
14 *** Any manual change here will be lost the next time this script will
15 *** be run. You've been warned!
16 ***
17 ****************************************************************************
18 ****************************************************************************/
Ben Cheng655a7c02013-10-16 16:09:24 -070019#ifndef _LINUX_BLKPG_H
20#define _LINUX_BLKPG_H
21#include <linux/compiler.h>
22#include <linux/ioctl.h>
Nick Kralevicha67e4de2013-01-14 11:28:26 -080023/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080024#define BLKPG _IO(0x12, 105)
Ben Cheng655a7c02013-10-16 16:09:24 -070025struct blkpg_ioctl_arg {
Tao Baod7db5942015-01-28 10:07:51 -080026 int op;
27 int flags;
Nick Kralevicha67e4de2013-01-14 11:28:26 -080028/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080029 int datalen;
30 void __user * data;
Ben Cheng655a7c02013-10-16 16:09:24 -070031};
32#define BLKPG_ADD_PARTITION 1
Nick Kralevicha67e4de2013-01-14 11:28:26 -080033/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -070034#define BLKPG_DEL_PARTITION 2
35#define BLKPG_RESIZE_PARTITION 3
36#define BLKPG_DEVNAMELTH 64
37#define BLKPG_VOLNAMELTH 64
Nick Kralevicha67e4de2013-01-14 11:28:26 -080038/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -070039struct blkpg_partition {
Tao Baod7db5942015-01-28 10:07:51 -080040 long long start;
41 long long length;
42 int pno;
Nick Kralevicha67e4de2013-01-14 11:28:26 -080043/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Tao Baod7db5942015-01-28 10:07:51 -080044 char devname[BLKPG_DEVNAMELTH];
45 char volname[BLKPG_VOLNAMELTH];
Ben Cheng655a7c02013-10-16 16:09:24 -070046};
Nick Kralevicha67e4de2013-01-14 11:28:26 -080047#endif
Ben Cheng655a7c02013-10-16 16:09:24 -070048/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */