bitmap.c (1da177e4c3f41524e886b7f1b8a0c1fc7321cac2) | bitmap.c (7a1119b1fc87cc347d3932b8aee051e86b32818f) |
---|---|
1/* 2 * QNX4 file system, Linux implementation. 3 * 4 * Version : 0.2.1 5 * 6 * Using parts of the xiafs filesystem. 7 * 8 * History : --- 9 unchanged lines hidden (view full) --- 18#include <linux/fs.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> 25 | 1/* 2 * QNX4 file system, Linux implementation. 3 * 4 * Version : 0.2.1 5 * 6 * Using parts of the xiafs filesystem. 7 * 8 * History : --- 9 unchanged lines hidden (view full) --- 18#include <linux/fs.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> 25 |
26#if 0 |
|
26int qnx4_new_block(struct super_block *sb) 27{ 28 return 0; 29} | 27int qnx4_new_block(struct super_block *sb) 28{ 29 return 0; 30} |
31#endif /* 0 */ |
|
30 31static void count_bits(register const char *bmPart, register int size, 32 int *const tf) 33{ 34 char b; 35 int tot = *tf; 36 37 if (size > QNX4_BLOCK_SIZE) { --- 128 unchanged lines hidden --- | 32 33static void count_bits(register const char *bmPart, register int size, 34 int *const tf) 35{ 36 char b; 37 int tot = *tf; 38 39 if (size > QNX4_BLOCK_SIZE) { --- 128 unchanged lines hidden --- |