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