提交 75b25b4c 编写于 作者: D Dmitri Vorobiev 提交者: Linus Torvalds

bfs: assorted cleanups

This patch makes the following cleanups:

	o removing an unused variable from bfs_fill_super();
	o removing unneeded blank spaces from pointer
	  definitions.
Signed-off-by: NDmitri Vorobiev <dmitri.vorobiev@movial.fi>
Cc: Tigran Aivazian <tigran_aivazian@symantec.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 7d135a5d
...@@ -16,8 +16,8 @@ struct bfs_sb_info { ...@@ -16,8 +16,8 @@ struct bfs_sb_info {
unsigned long si_freei; unsigned long si_freei;
unsigned long si_lf_eblk; unsigned long si_lf_eblk;
unsigned long si_lasti; unsigned long si_lasti;
unsigned long * si_imap; unsigned long *si_imap;
struct buffer_head * si_sbh; /* buffer header w/superblock */ struct buffer_head *si_sbh; /* buffer header w/superblock */
}; };
/* /*
......
...@@ -380,7 +380,7 @@ static int bfs_fill_super(struct super_block *s, void *data, int silent) ...@@ -380,7 +380,7 @@ static int bfs_fill_super(struct super_block *s, void *data, int silent)
struct bfs_inode *di; struct bfs_inode *di;
int block = (i - BFS_ROOT_INO) / BFS_INODES_PER_BLOCK + 1; int block = (i - BFS_ROOT_INO) / BFS_INODES_PER_BLOCK + 1;
int off = (i - BFS_ROOT_INO) % BFS_INODES_PER_BLOCK; int off = (i - BFS_ROOT_INO) % BFS_INODES_PER_BLOCK;
unsigned long sblock, eblock; unsigned long eblock;
if (!off) { if (!off) {
brelse(bh); brelse(bh);
...@@ -399,7 +399,6 @@ static int bfs_fill_super(struct super_block *s, void *data, int silent) ...@@ -399,7 +399,6 @@ static int bfs_fill_super(struct super_block *s, void *data, int silent)
set_bit(i, info->si_imap); set_bit(i, info->si_imap);
info->si_freeb -= BFS_FILEBLOCKS(di); info->si_freeb -= BFS_FILEBLOCKS(di);
sblock = le32_to_cpu(di->i_sblock);
eblock = le32_to_cpu(di->i_eblock); eblock = le32_to_cpu(di->i_eblock);
if (eblock > info->si_lf_eblk) if (eblock > info->si_lf_eblk)
info->si_lf_eblk = eblock; info->si_lf_eblk = eblock;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册