1 /*
2 * Name : qnx4_fs_sb.h
3 * Author : Richard Frowijn
4 * Function : qnx4 superblock definitions
5 * Version : 1.0.2
6 * Last modified : 2000-01-06
7 *
8 * History : 23-03-1998 created
9 *
10 */
11 #ifndef _QNX4_FS_SB
12 #define _QNX4_FS_SB
13
14 #include <linux/qnx4_fs.h>
15
16 /*
17 * qnx4 super-block data in memory
18 */
19
20 struct qnx4_sb_info {
21 struct buffer_head *sb_buf; /* superblock buffer */
22 struct qnx4_super_block *sb; /* our superblock */
23 unsigned int Version; /* may be useful */
24 struct qnx4_inode_entry *BitMap; /* useful */
25 };
26
27 #endif
28
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.