aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/jffs2.h
diff options
context:
space:
mode:
authorFerenc Havasi <havasi@inf.u-szeged.hu>2005-09-26 07:37:25 -0400
committerThomas Gleixner <tglx@mtd.linutronix.de>2005-11-06 16:32:45 -0500
commit2bc9764c4837c6b7da540b7a2592ec02f9a14e47 (patch)
tree9171bc9f8e36e7407c5f822c08fccdc2e45df050 /include/linux/jffs2.h
parentef6f0d1ffcd86484e01cec4fd2d2c5ca5887a43b (diff)
[JFFS2] Rename jffs2_summary_node to jffs2_raw_summary
Signed-off-by: Ferenc Havasi <havasi@inf.u-szeged.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/jffs2.h')
-rw-r--r--include/linux/jffs2.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/include/linux/jffs2.h b/include/linux/jffs2.h
index acb51a3669a2..2788880368c4 100644
--- a/include/linux/jffs2.h
+++ b/include/linux/jffs2.h
@@ -8,7 +8,7 @@
8 * For licensing information, see the file 'LICENCE' in the 8 * For licensing information, see the file 'LICENCE' in the
9 * jffs2 directory. 9 * jffs2 directory.
10 * 10 *
11 * $Id: jffs2.h,v 1.37 2005/09/07 08:34:55 havasi Exp $ 11 * $Id: jffs2.h,v 1.38 2005/09/26 11:37:23 havasi Exp $
12 * 12 *
13 */ 13 */
14 14
@@ -151,9 +151,10 @@ struct jffs2_raw_inode
151 uint8_t data[0]; 151 uint8_t data[0];
152} __attribute__((packed)); 152} __attribute__((packed));
153 153
154struct jffs2_summary_node{ 154struct jffs2_raw_summary
155{
155 jint16_t magic; 156 jint16_t magic;
156 jint16_t nodetype; /* = JFFS2_NODETYPE_INODE_SUM */ 157 jint16_t nodetype; /* = JFFS2_NODETYPE_SUMMARY */
157 jint32_t totlen; 158 jint32_t totlen;
158 jint32_t hdr_crc; 159 jint32_t hdr_crc;
159 jint32_t sum_num; /* number of sum entries*/ 160 jint32_t sum_num; /* number of sum entries*/
@@ -164,11 +165,12 @@ struct jffs2_summary_node{
164 jint32_t sum[0]; /* inode summary info */ 165 jint32_t sum[0]; /* inode summary info */
165} __attribute__((packed)); 166} __attribute__((packed));
166 167
167union jffs2_node_union { 168union jffs2_node_union
169{
168 struct jffs2_raw_inode i; 170 struct jffs2_raw_inode i;
169 struct jffs2_raw_dirent d; 171 struct jffs2_raw_dirent d;
172 struct jffs2_raw_summary s;
170 struct jffs2_unknown_node u; 173 struct jffs2_unknown_node u;
171 struct jffs2_summary_node s;
172}; 174};
173 175
174#endif /* __LINUX_JFFS2_H__ */ 176#endif /* __LINUX_JFFS2_H__ */