|
@@ -30,8 +30,6 @@ MODULE_LICENSE("GPL");
|
|
|
#define dprintf(x...)
|
|
|
#endif
|
|
|
|
|
|
-void dump_imap(const char *prefix, struct super_block *s);
|
|
|
-
|
|
|
struct inode *bfs_iget(struct super_block *sb, unsigned long ino)
|
|
|
{
|
|
|
struct bfs_inode *di;
|
|
@@ -194,7 +192,7 @@ static void bfs_evict_inode(struct inode *inode)
|
|
|
info->si_freeb += bi->i_eblock + 1 - bi->i_sblock;
|
|
|
info->si_freei++;
|
|
|
clear_bit(ino, info->si_imap);
|
|
|
- dump_imap("delete_inode", s);
|
|
|
+ bfs_dump_imap("delete_inode", s);
|
|
|
}
|
|
|
|
|
|
/*
|
|
@@ -297,7 +295,7 @@ static const struct super_operations bfs_sops = {
|
|
|
.statfs = bfs_statfs,
|
|
|
};
|
|
|
|
|
|
-void dump_imap(const char *prefix, struct super_block *s)
|
|
|
+void bfs_dump_imap(const char *prefix, struct super_block *s)
|
|
|
{
|
|
|
#ifdef DEBUG
|
|
|
int i;
|
|
@@ -443,7 +441,7 @@ static int bfs_fill_super(struct super_block *s, void *data, int silent)
|
|
|
}
|
|
|
brelse(bh);
|
|
|
brelse(sbh);
|
|
|
- dump_imap("read_super", s);
|
|
|
+ bfs_dump_imap("read_super", s);
|
|
|
return 0;
|
|
|
|
|
|
out3:
|