diff options
Diffstat (limited to 'fs/bfs/inode.c')
-rw-r--r-- | fs/bfs/inode.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/fs/bfs/inode.c b/fs/bfs/inode.c index 7041ac35ace8..90bc079d9982 100644 --- a/fs/bfs/inode.c +++ b/fs/bfs/inode.c | |||
@@ -30,8 +30,6 @@ MODULE_LICENSE("GPL"); | |||
30 | #define dprintf(x...) | 30 | #define dprintf(x...) |
31 | #endif | 31 | #endif |
32 | 32 | ||
33 | void dump_imap(const char *prefix, struct super_block *s); | ||
34 | |||
35 | struct inode *bfs_iget(struct super_block *sb, unsigned long ino) | 33 | struct inode *bfs_iget(struct super_block *sb, unsigned long ino) |
36 | { | 34 | { |
37 | struct bfs_inode *di; | 35 | struct bfs_inode *di; |
@@ -194,7 +192,7 @@ static void bfs_evict_inode(struct inode *inode) | |||
194 | info->si_freeb += bi->i_eblock + 1 - bi->i_sblock; | 192 | info->si_freeb += bi->i_eblock + 1 - bi->i_sblock; |
195 | info->si_freei++; | 193 | info->si_freei++; |
196 | clear_bit(ino, info->si_imap); | 194 | clear_bit(ino, info->si_imap); |
197 | dump_imap("delete_inode", s); | 195 | bfs_dump_imap("delete_inode", s); |
198 | } | 196 | } |
199 | 197 | ||
200 | /* | 198 | /* |
@@ -297,7 +295,7 @@ static const struct super_operations bfs_sops = { | |||
297 | .statfs = bfs_statfs, | 295 | .statfs = bfs_statfs, |
298 | }; | 296 | }; |
299 | 297 | ||
300 | void dump_imap(const char *prefix, struct super_block *s) | 298 | void bfs_dump_imap(const char *prefix, struct super_block *s) |
301 | { | 299 | { |
302 | #ifdef DEBUG | 300 | #ifdef DEBUG |
303 | int i; | 301 | int i; |
@@ -443,7 +441,7 @@ static int bfs_fill_super(struct super_block *s, void *data, int silent) | |||
443 | } | 441 | } |
444 | brelse(bh); | 442 | brelse(bh); |
445 | brelse(sbh); | 443 | brelse(sbh); |
446 | dump_imap("read_super", s); | 444 | bfs_dump_imap("read_super", s); |
447 | return 0; | 445 | return 0; |
448 | 446 | ||
449 | out3: | 447 | out3: |