Lines Matching defs:jffs2_raw_inode
135 struct jffs2_raw_inode struct
137 jint16_t magic; /* A constant magic number. */
138 jint16_t nodetype; /* == JFFS2_NODETYPE_INODE */
139 jint32_t totlen; /* Total length of this node (inc data, etc.) */
140 jint32_t hdr_crc;
141 jint32_t ino; /* Inode number. */
142 jint32_t version; /* Version number. */
143 jmode_t mode; /* The file's type or mode. */
144 jint16_t uid; /* The file's owner. */
145 jint16_t gid; /* The file's group. */
146 jint32_t isize; /* Total resultant size of this inode (used for truncations) */
147 jint32_t atime; /* Last access time. */
148 jint32_t mtime; /* Last modification time. */
149 jint32_t ctime; /* Change time. */
150 jint32_t offset; /* Where to begin to write. */
151 jint32_t csize; /* (Compressed) data size */
152 jint32_t dsize; /* Size of the node's data. (after decompression) */
153 __u8 compr; /* Compression algorithm used */
154 __u8 usercompr; /* Compression algorithm requested by the user */
155 jint16_t flags; /* See JFFS2_INO_FLAG_* */
156 jint32_t data_crc; /* CRC for the (compressed) data. */
157 jint32_t node_crc; /* CRC for the raw inode (excluding data) */
158 __u8 data[0];