blob: aebacbd259b4956ed21cff15f406bfa579f1b7c7 [file] [log] [blame]
Elliott Hughesabd62612013-11-08 11:45:48 -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 ****************************************************************************/
19#ifndef _ASM_X86_STAT_H
20#define _ASM_X86_STAT_H
Christopher Ferris38062f92014-07-09 15:33:25 -070021#include <asm/posix_types.h>
Elliott Hughesabd62612013-11-08 11:45:48 -080022#define STAT_HAVE_NSEC 1
Elliott Hughesabd62612013-11-08 11:45:48 -080023/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -070024#ifdef __i386__
Elliott Hughesabd62612013-11-08 11:45:48 -080025struct stat {
26 unsigned long st_dev;
27 unsigned long st_ino;
Elliott Hughesabd62612013-11-08 11:45:48 -080028/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -070029 unsigned short st_mode;
Elliott Hughesabd62612013-11-08 11:45:48 -080030 unsigned short st_nlink;
31 unsigned short st_uid;
32 unsigned short st_gid;
Elliott Hughesabd62612013-11-08 11:45:48 -080033/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -070034 unsigned long st_rdev;
Elliott Hughesabd62612013-11-08 11:45:48 -080035 unsigned long st_size;
36 unsigned long st_blksize;
37 unsigned long st_blocks;
Elliott Hughesabd62612013-11-08 11:45:48 -080038/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -070039 unsigned long st_atime;
Elliott Hughesabd62612013-11-08 11:45:48 -080040 unsigned long st_atime_nsec;
41 unsigned long st_mtime;
42 unsigned long st_mtime_nsec;
Elliott Hughesabd62612013-11-08 11:45:48 -080043/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -070044 unsigned long st_ctime;
Elliott Hughesabd62612013-11-08 11:45:48 -080045 unsigned long st_ctime_nsec;
46 unsigned long __unused4;
47 unsigned long __unused5;
Elliott Hughesabd62612013-11-08 11:45:48 -080048/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -070049};
Elliott Hughesabd62612013-11-08 11:45:48 -080050#define INIT_STRUCT_STAT_PADDING(st) do { st.__unused4 = 0; st.__unused5 = 0; } while (0)
51#define STAT64_HAS_BROKEN_ST_INO 1
52struct stat64 {
Elliott Hughesabd62612013-11-08 11:45:48 -080053/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -070054 unsigned long long st_dev;
Elliott Hughesabd62612013-11-08 11:45:48 -080055 unsigned char __pad0[4];
56 unsigned long __st_ino;
57 unsigned int st_mode;
Elliott Hughesabd62612013-11-08 11:45:48 -080058/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -070059 unsigned int st_nlink;
Elliott Hughesabd62612013-11-08 11:45:48 -080060 unsigned long st_uid;
61 unsigned long st_gid;
62 unsigned long long st_rdev;
Elliott Hughesabd62612013-11-08 11:45:48 -080063/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -070064 unsigned char __pad3[4];
Elliott Hughesabd62612013-11-08 11:45:48 -080065 long long st_size;
66 unsigned long st_blksize;
67 unsigned long long st_blocks;
Elliott Hughesabd62612013-11-08 11:45:48 -080068/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -070069 unsigned long st_atime;
Elliott Hughesabd62612013-11-08 11:45:48 -080070 unsigned long st_atime_nsec;
71 unsigned long st_mtime;
72 unsigned int st_mtime_nsec;
Elliott Hughesabd62612013-11-08 11:45:48 -080073/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -070074 unsigned long st_ctime;
Elliott Hughesabd62612013-11-08 11:45:48 -080075 unsigned long st_ctime_nsec;
76 unsigned long long st_ino;
77};
Elliott Hughesabd62612013-11-08 11:45:48 -080078/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -070079#define INIT_STRUCT_STAT64_PADDING(st) do { memset(&st.__pad0, 0, sizeof(st.__pad0)); memset(&st.__pad3, 0, sizeof(st.__pad3)); } while (0)
Elliott Hughesabd62612013-11-08 11:45:48 -080080#else
81struct stat {
Christopher Ferris38062f92014-07-09 15:33:25 -070082 __kernel_ulong_t st_dev;
Elliott Hughesabd62612013-11-08 11:45:48 -080083/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -070084 __kernel_ulong_t st_ino;
85 __kernel_ulong_t st_nlink;
Elliott Hughesabd62612013-11-08 11:45:48 -080086 unsigned int st_mode;
87 unsigned int st_uid;
Christopher Ferris38062f92014-07-09 15:33:25 -070088/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Elliott Hughesabd62612013-11-08 11:45:48 -080089 unsigned int st_gid;
Elliott Hughesabd62612013-11-08 11:45:48 -080090 unsigned int __pad0;
Christopher Ferris38062f92014-07-09 15:33:25 -070091 __kernel_ulong_t st_rdev;
92 __kernel_long_t st_size;
Elliott Hughesabd62612013-11-08 11:45:48 -080093/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -070094 __kernel_long_t st_blksize;
95 __kernel_long_t st_blocks;
96 __kernel_ulong_t st_atime;
97 __kernel_ulong_t st_atime_nsec;
Elliott Hughesabd62612013-11-08 11:45:48 -080098/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -070099 __kernel_ulong_t st_mtime;
100 __kernel_ulong_t st_mtime_nsec;
101 __kernel_ulong_t st_ctime;
102 __kernel_ulong_t st_ctime_nsec;
Elliott Hughesabd62612013-11-08 11:45:48 -0800103/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -0700104 __kernel_long_t __linux_unused[3];
Elliott Hughesabd62612013-11-08 11:45:48 -0800105};
Elliott Hughes199346a2014-02-11 20:01:11 -0800106#define INIT_STRUCT_STAT_PADDING(st) do { st.__pad0 = 0; st.__linux_unused[0] = 0; st.__linux_unused[1] = 0; st.__linux_unused[2] = 0; } while (0)
Elliott Hughesabd62612013-11-08 11:45:48 -0800107#endif
Elliott Hughesabd62612013-11-08 11:45:48 -0800108/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -0700109struct __old_kernel_stat {
Elliott Hughesabd62612013-11-08 11:45:48 -0800110 unsigned short st_dev;
111 unsigned short st_ino;
112 unsigned short st_mode;
Elliott Hughesabd62612013-11-08 11:45:48 -0800113/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -0700114 unsigned short st_nlink;
Elliott Hughesabd62612013-11-08 11:45:48 -0800115 unsigned short st_uid;
116 unsigned short st_gid;
117 unsigned short st_rdev;
Elliott Hughesabd62612013-11-08 11:45:48 -0800118/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -0700119#ifdef __i386__
Elliott Hughesabd62612013-11-08 11:45:48 -0800120 unsigned long st_size;
121 unsigned long st_atime;
122 unsigned long st_mtime;
Elliott Hughesabd62612013-11-08 11:45:48 -0800123/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -0700124 unsigned long st_ctime;
Elliott Hughesabd62612013-11-08 11:45:48 -0800125#else
126 unsigned int st_size;
127 unsigned int st_atime;
Elliott Hughesabd62612013-11-08 11:45:48 -0800128/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -0700129 unsigned int st_mtime;
Elliott Hughesabd62612013-11-08 11:45:48 -0800130 unsigned int st_ctime;
131#endif
132};
Elliott Hughesabd62612013-11-08 11:45:48 -0800133/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris38062f92014-07-09 15:33:25 -0700134#endif