blob: 2a7a6e79221ea88abb270d7ad8fd14f6312cd6a4 [file] [log] [blame]
Ben Cheng655a7c02013-10-16 16:09:24 -07001/****************************************************************************
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 ****************************************************************************/
19#ifndef __LINUX__AIO_ABI_H
20#define __LINUX__AIO_ABI_H
21#include <linux/types.h>
22#include <asm/byteorder.h>
Ben Cheng655a7c02013-10-16 16:09:24 -070023typedef __kernel_ulong_t aio_context_t;
24enum {
Tao Baod7db5942015-01-28 10:07:51 -080025 IOCB_CMD_PREAD = 0,
26 IOCB_CMD_PWRITE = 1,
Tao Baod7db5942015-01-28 10:07:51 -080027 IOCB_CMD_FSYNC = 2,
28 IOCB_CMD_FDSYNC = 3,
29 IOCB_CMD_NOOP = 6,
30 IOCB_CMD_PREADV = 7,
Tao Baod7db5942015-01-28 10:07:51 -080031 IOCB_CMD_PWRITEV = 8,
Ben Cheng655a7c02013-10-16 16:09:24 -070032};
33#define IOCB_FLAG_RESFD (1 << 0)
34struct io_event {
Tao Baod7db5942015-01-28 10:07:51 -080035 __u64 data;
36 __u64 obj;
37 __s64 res;
38 __s64 res2;
Ben Cheng655a7c02013-10-16 16:09:24 -070039};
Elliott Hughes8cb52b02013-11-21 13:43:23 -080040#if defined(__BYTE_ORDER) ? __BYTE_ORDER == __LITTLE_ENDIAN : defined(__LITTLE_ENDIAN)
Ben Cheng655a7c02013-10-16 16:09:24 -070041#define PADDED(x,y) x, y
Tao Baod7db5942015-01-28 10:07:51 -080042#elif defined(__BYTE_ORDER)?__BYTE_ORDER==__BIG_ENDIAN:defined(__BIG_ENDIAN)
Ben Cheng655a7c02013-10-16 16:09:24 -070043#define PADDED(x,y) y, x
44#else
Tao Baod7db5942015-01-28 10:07:51 -080045#error edit for your odd byteorder .
Ben Cheng655a7c02013-10-16 16:09:24 -070046#endif
Ben Cheng655a7c02013-10-16 16:09:24 -070047struct iocb {
Tao Baod7db5942015-01-28 10:07:51 -080048 __u64 aio_data;
49 __u32 PADDED(aio_key, aio_reserved1);
50 __u16 aio_lio_opcode;
Tao Baod7db5942015-01-28 10:07:51 -080051 __s16 aio_reqprio;
52 __u32 aio_fildes;
53 __u64 aio_buf;
54 __u64 aio_nbytes;
Tao Baod7db5942015-01-28 10:07:51 -080055 __s64 aio_offset;
56 __u64 aio_reserved2;
57 __u32 aio_flags;
58 __u32 aio_resfd;
Ben Cheng655a7c02013-10-16 16:09:24 -070059};
60#undef IFBIG
61#undef IFLITTLE
62#endif