1 /**************************************************************************** 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_QNX4_FS_H 20 #define _LINUX_QNX4_FS_H 21 #include <linux/types.h> 22 #include <linux/qnxtypes.h> 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 24 #include <linux/magic.h> 25 #define QNX4_ROOT_INO 1 26 #define QNX4_MAX_XTNTS_PER_XBLK 60 27 #define QNX4_FILE_USED 0x01 28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 29 #define QNX4_FILE_MODIFIED 0x02 30 #define QNX4_FILE_BUSY 0x04 31 #define QNX4_FILE_LINK 0x08 32 #define QNX4_FILE_INODE 0x10 33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 34 #define QNX4_FILE_FSYSCLEAN 0x20 35 #define QNX4_I_MAP_SLOTS 8 36 #define QNX4_Z_MAP_SLOTS 64 37 #define QNX4_VALID_FS 0x0001 38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 39 #define QNX4_ERROR_FS 0x0002 40 #define QNX4_BLOCK_SIZE 0x200 41 #define QNX4_BLOCK_SIZE_BITS 9 42 #define QNX4_DIR_ENTRY_SIZE 0x040 43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 44 #define QNX4_DIR_ENTRY_SIZE_BITS 6 45 #define QNX4_XBLK_ENTRY_SIZE 0x200 46 #define QNX4_INODES_PER_BLOCK 0x08 47 #define QNX4_SHORT_NAME_MAX 16 48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 49 #define QNX4_NAME_MAX 48 50 struct qnx4_inode_entry { 51 char di_fname[QNX4_SHORT_NAME_MAX]; 52 qnx4_off_t di_size; 53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 54 qnx4_xtnt_t di_first_xtnt; 55 __le32 di_xblk; 56 __le32 di_ftime; 57 __le32 di_mtime; 58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 59 __le32 di_atime; 60 __le32 di_ctime; 61 qnx4_nxtnt_t di_num_xtnts; 62 qnx4_mode_t di_mode; 63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 64 qnx4_muid_t di_uid; 65 qnx4_mgid_t di_gid; 66 qnx4_nlink_t di_nlink; 67 __u8 di_zero[4]; 68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 69 qnx4_ftype_t di_type; 70 __u8 di_status; 71 }; 72 struct qnx4_link_info { 73 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 74 char dl_fname[QNX4_NAME_MAX]; 75 __le32 dl_inode_blk; 76 __u8 dl_inode_ndx; 77 __u8 dl_spare[10]; 78 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 79 __u8 dl_status; 80 }; 81 struct qnx4_xblk { 82 __le32 xblk_next_xblk; 83 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 84 __le32 xblk_prev_xblk; 85 __u8 xblk_num_xtnts; 86 __u8 xblk_spare[3]; 87 __le32 xblk_num_blocks; 88 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 89 qnx4_xtnt_t xblk_xtnts[QNX4_MAX_XTNTS_PER_XBLK]; 90 char xblk_signature[8]; 91 qnx4_xtnt_t xblk_first_xtnt; 92 }; 93 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 94 struct qnx4_super_block { 95 struct qnx4_inode_entry RootDir; 96 struct qnx4_inode_entry Inode; 97 struct qnx4_inode_entry Boot; 98 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 99 struct qnx4_inode_entry AltBoot; 100 }; 101 #endif 102