3 * Author : Richard Frowijn
4 * Function : qnx4 global filesystem definitions
5 * History : 23-03-1998 created
7 #ifndef _LINUX_QNX4_FS_H
8 #define _LINUX_QNX4_FS_H
10 #include <linux/types.h>
11 #include <linux/qnxtypes.h>
12 #include <linux/magic.h>
14 #define QNX4_ROOT_INO 1
16 #define QNX4_MAX_XTNTS_PER_XBLK 60
18 #define QNX4_FILE_USED 0x01
19 #define QNX4_FILE_MODIFIED 0x02
20 #define QNX4_FILE_BUSY 0x04
21 #define QNX4_FILE_LINK 0x08
22 #define QNX4_FILE_INODE 0x10
23 #define QNX4_FILE_FSYSCLEAN 0x20
25 #define QNX4_I_MAP_SLOTS 8
26 #define QNX4_Z_MAP_SLOTS 64
27 #define QNX4_VALID_FS 0x0001 /* Clean fs. */
28 #define QNX4_ERROR_FS 0x0002 /* fs has errors. */
29 #define QNX4_BLOCK_SIZE 0x200 /* blocksize of 512 bytes */
30 #define QNX4_BLOCK_SIZE_BITS 9 /* blocksize shift */
31 #define QNX4_DIR_ENTRY_SIZE 0x040 /* dir entry size of 64 bytes */
32 #define QNX4_DIR_ENTRY_SIZE_BITS 6 /* dir entry size shift */
33 #define QNX4_XBLK_ENTRY_SIZE 0x200 /* xblk entry size */
34 #define QNX4_INODES_PER_BLOCK 0x08 /* 512 / 64 */
37 #define QNX4_SHORT_NAME_MAX 16
38 #define QNX4_NAME_MAX 48
41 * This is the original qnx4 inode layout on disk.
43 struct qnx4_inode_entry
{
44 char di_fname
[QNX4_SHORT_NAME_MAX
];
46 qnx4_xtnt_t di_first_xtnt
;
52 qnx4_nxtnt_t di_num_xtnts
;
56 qnx4_nlink_t di_nlink
;
62 struct qnx4_link_info
{
63 char dl_fname
[QNX4_NAME_MAX
];
71 __le32 xblk_next_xblk
;
72 __le32 xblk_prev_xblk
;
75 __le32 xblk_num_blocks
;
76 qnx4_xtnt_t xblk_xtnts
[QNX4_MAX_XTNTS_PER_XBLK
];
77 char xblk_signature
[8];
78 qnx4_xtnt_t xblk_first_xtnt
;
81 struct qnx4_super_block
{
82 struct qnx4_inode_entry RootDir
;
83 struct qnx4_inode_entry Inode
;
84 struct qnx4_inode_entry Boot
;
85 struct qnx4_inode_entry AltBoot
;
93 #define QNX4DEBUG(X) printk X
95 #define QNX4DEBUG(X) (void) 0
99 struct buffer_head
*sb_buf
; /* superblock buffer */
100 struct qnx4_super_block
*sb
; /* our superblock */
101 unsigned int Version
; /* may be useful */
102 struct qnx4_inode_entry
*BitMap
; /* useful */
105 struct qnx4_inode_info
{
106 struct qnx4_inode_entry raw
;
108 struct inode vfs_inode
;
111 extern struct inode
*qnx4_iget(struct super_block
*, unsigned long);
112 extern struct dentry
*qnx4_lookup(struct inode
*dir
, struct dentry
*dentry
, struct nameidata
*nd
);
113 extern unsigned long qnx4_count_free_blocks(struct super_block
*sb
);
114 extern unsigned long qnx4_block_map(struct inode
*inode
, long iblock
);
116 extern struct buffer_head
*qnx4_bread(struct inode
*, int, int);
118 extern const struct inode_operations qnx4_file_inode_operations
;
119 extern const struct inode_operations qnx4_dir_inode_operations
;
120 extern const struct file_operations qnx4_file_operations
;
121 extern const struct file_operations qnx4_dir_operations
;
122 extern int qnx4_is_free(struct super_block
*sb
, long block
);
123 extern int qnx4_set_bitmap(struct super_block
*sb
, long block
, int busy
);
124 extern int qnx4_create(struct inode
*inode
, struct dentry
*dentry
, int mode
, struct nameidata
*nd
);
125 extern void qnx4_truncate(struct inode
*inode
);
126 extern void qnx4_free_inode(struct inode
*inode
);
127 extern int qnx4_unlink(struct inode
*dir
, struct dentry
*dentry
);
128 extern int qnx4_rmdir(struct inode
*dir
, struct dentry
*dentry
);
129 extern int qnx4_sync_file(struct file
*file
, struct dentry
*dentry
, int);
130 extern int qnx4_sync_inode(struct inode
*inode
);
132 static inline struct qnx4_sb_info
*qnx4_sb(struct super_block
*sb
)
134 return sb
->s_fs_info
;
137 static inline struct qnx4_inode_info
*qnx4_i(struct inode
*inode
)
139 return container_of(inode
, struct qnx4_inode_info
, vfs_inode
);
142 static inline struct qnx4_inode_entry
*qnx4_raw_inode(struct inode
*inode
)
144 return &qnx4_i(inode
)->raw
;
147 #endif /* __KERNEL__ */