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/config.h>
17 #include <linux/time.h>
19 #include <linux/qnx4_fs.h>
20 #include <linux/stat.h>
21 #include <linux/kernel.h>
22 #include <linux/string.h>
23 #include <linux/buffer_head.h>
24 #include <linux/bitops.h>
27 int qnx4_new_block(struct super_block
*sb
)
33 static void count_bits(register const char *bmPart
, register int size
,
39 if (size
> QNX4_BLOCK_SIZE
) {
40 size
= QNX4_BLOCK_SIZE
;
65 unsigned long qnx4_count_free_blocks(struct super_block
*sb
)
67 int start
= le32_to_cpu(qnx4_sb(sb
)->BitMap
->di_first_xtnt
.xtnt_blk
) - 1;
71 int size
= le32_to_cpu(qnx4_sb(sb
)->BitMap
->di_size
);
72 struct buffer_head
*bh
;
74 while (total
< size
) {
75 if ((bh
= sb_bread(sb
, start
+ offset
)) == NULL
) {
76 printk("qnx4: I/O error in counting free blocks\n");
79 count_bits(bh
->b_data
, size
- total
, &total_free
);
81 total
+= QNX4_BLOCK_SIZE
;
88 #ifdef CONFIG_QNX4FS_RW
90 int qnx4_is_free(struct super_block
*sb
, long block
)
92 int start
= le32_to_cpu(qnx4_sb(sb
)->BitMap
->di_first_xtnt
.xtnt_blk
) - 1;
93 int size
= le32_to_cpu(qnx4_sb(sb
)->BitMap
->di_size
);
94 struct buffer_head
*bh
;
98 start
+= block
/ (QNX4_BLOCK_SIZE
* 8);
99 QNX4DEBUG(("qnx4: is_free requesting block [%lu], bitmap in block [%lu]\n",
100 (unsigned long) block
, (unsigned long) start
));
101 (void) size
; /* CHECKME */
102 bh
= sb_bread(sb
, start
);
106 g
= bh
->b_data
+ (block
% QNX4_BLOCK_SIZE
);
107 if (((*g
) & (1 << (block
% 8))) == 0) {
108 QNX4DEBUG(("qnx4: is_free -> block is free\n"));
111 QNX4DEBUG(("qnx4: is_free -> block is busy\n"));
119 int qnx4_set_bitmap(struct super_block
*sb
, long block
, int busy
)
121 int start
= le32_to_cpu(qnx4_sb(sb
)->BitMap
->di_first_xtnt
.xtnt_blk
) - 1;
122 int size
= le32_to_cpu(qnx4_sb(sb
)->BitMap
->di_size
);
123 struct buffer_head
*bh
;
126 start
+= block
/ (QNX4_BLOCK_SIZE
* 8);
127 QNX4DEBUG(("qnx4: set_bitmap requesting block [%lu], bitmap in block [%lu]\n",
128 (unsigned long) block
, (unsigned long) start
));
129 (void) size
; /* CHECKME */
130 bh
= sb_bread(sb
, start
);
134 g
= bh
->b_data
+ (block
% QNX4_BLOCK_SIZE
);
136 (*g
) &= ~(1 << (block
% 8));
138 (*g
) |= (1 << (block
% 8));
140 mark_buffer_dirty(bh
);
146 static void qnx4_clear_inode(struct inode
*inode
)
148 struct qnx4_inode_entry
*qnx4_ino
= qnx4_raw_inode(inode
);
150 memset(qnx4_ino
->di_fname
, 0, sizeof qnx4_ino
->di_fname
);
151 qnx4_ino
->di_size
= 0;
152 qnx4_ino
->di_num_xtnts
= 0;
153 qnx4_ino
->di_mode
= 0;
154 qnx4_ino
->di_status
= 0;
157 void qnx4_free_inode(struct inode
*inode
)
159 if (inode
->i_ino
< 1) {
160 printk("free_inode: inode 0 or nonexistent inode\n");
163 qnx4_clear_inode(inode
);