2 * QNX4 file system, Linux implementation.
6 * Using parts of the xiafs filesystem.
10 * 28-05-1998 by Richard Frowijn : first release.
11 * 20-06-1998 by Frank Denis : basic optimisations.
12 * 25-06-1998 by Frank Denis : qnx4_is_free, qnx4_set_bitmap, qnx4_bmap .
13 * 28-06-1998 by Frank Denis : qnx4_free_inode (to be fixed) .
16 #include <linux/time.h>
18 #include <linux/qnx4_fs.h>
19 #include <linux/stat.h>
20 #include <linux/kernel.h>
21 #include <linux/string.h>
22 #include <linux/buffer_head.h>
23 #include <linux/bitops.h>
26 int qnx4_new_block(struct super_block *sb)
32 static void count_bits(register const char *bmPart, register int size,
38 if (size > QNX4_BLOCK_SIZE) {
39 size = QNX4_BLOCK_SIZE;
64 unsigned long qnx4_count_free_blocks(struct super_block *sb)
66 int start = le32_to_cpu(qnx4_sb(sb)->BitMap->di_first_xtnt.xtnt_blk) - 1;
70 int size = le32_to_cpu(qnx4_sb(sb)->BitMap->di_size);
71 struct buffer_head *bh;
73 while (total < size) {
74 if ((bh = sb_bread(sb, start + offset)) == NULL) {
75 printk("qnx4: I/O error in counting free blocks\n");
78 count_bits(bh->b_data, size - total, &total_free);
80 total += QNX4_BLOCK_SIZE;
87 #ifdef CONFIG_QNX4FS_RW
89 int qnx4_is_free(struct super_block *sb, long block)
91 int start = le32_to_cpu(qnx4_sb(sb)->BitMap->di_first_xtnt.xtnt_blk) - 1;
92 int size = le32_to_cpu(qnx4_sb(sb)->BitMap->di_size);
93 struct buffer_head *bh;
97 start += block / (QNX4_BLOCK_SIZE * 8);
98 QNX4DEBUG(("qnx4: is_free requesting block [%lu], bitmap in block [%lu]\n",
99 (unsigned long) block, (unsigned long) start));
100 (void) size; /* CHECKME */
101 bh = sb_bread(sb, start);
105 g = bh->b_data + (block % QNX4_BLOCK_SIZE);
106 if (((*g) & (1 << (block % 8))) == 0) {
107 QNX4DEBUG(("qnx4: is_free -> block is free\n"));
110 QNX4DEBUG(("qnx4: is_free -> block is busy\n"));
118 int qnx4_set_bitmap(struct super_block *sb, long block, int busy)
120 int start = le32_to_cpu(qnx4_sb(sb)->BitMap->di_first_xtnt.xtnt_blk) - 1;
121 int size = le32_to_cpu(qnx4_sb(sb)->BitMap->di_size);
122 struct buffer_head *bh;
125 start += block / (QNX4_BLOCK_SIZE * 8);
126 QNX4DEBUG(("qnx4: set_bitmap requesting block [%lu], bitmap in block [%lu]\n",
127 (unsigned long) block, (unsigned long) start));
128 (void) size; /* CHECKME */
129 bh = sb_bread(sb, start);
133 g = bh->b_data + (block % QNX4_BLOCK_SIZE);
135 (*g) &= ~(1 << (block % 8));
137 (*g) |= (1 << (block % 8));
139 mark_buffer_dirty(bh);
145 static void qnx4_clear_inode(struct inode *inode)
147 struct qnx4_inode_entry *qnx4_ino = qnx4_raw_inode(inode);
149 memset(qnx4_ino->di_fname, 0, sizeof qnx4_ino->di_fname);
150 qnx4_ino->di_size = 0;
151 qnx4_ino->di_num_xtnts = 0;
152 qnx4_ino->di_mode = 0;
153 qnx4_ino->di_status = 0;
156 void qnx4_free_inode(struct inode *inode)
158 if (inode->i_ino < 1) {
159 printk("free_inode: inode 0 or nonexistent inode\n");
162 qnx4_clear_inode(inode);