mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
fs/ufs/balloc.c: remove unused variable
ucg is defined and set in ufs_bitmap_search but never used. Signed-off-by: Fabian Frederick <fabf@skynet.be> Cc: Evgeniy Dushistov <dushistov@mail.ru> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
a792d90829
commit
35c0b380d8
1 changed files with 0 additions and 3 deletions
|
@ -784,7 +784,6 @@ static u64 ufs_bitmap_search(struct super_block *sb,
|
|||
0x0, 0x2, 0x6, 0xe, 0x1e, 0x3e, 0x7e, 0xfe, 0x1fe
|
||||
};
|
||||
struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
|
||||
struct ufs_cylinder_group *ucg;
|
||||
unsigned start, length, loc;
|
||||
unsigned pos, want, blockmap, mask, end;
|
||||
u64 result;
|
||||
|
@ -792,8 +791,6 @@ static u64 ufs_bitmap_search(struct super_block *sb,
|
|||
UFSD("ENTER, cg %u, goal %llu, count %u\n", ucpi->c_cgx,
|
||||
(unsigned long long)goal, count);
|
||||
|
||||
ucg = ubh_get_ucg(UCPI_UBH(ucpi));
|
||||
|
||||
if (goal)
|
||||
start = ufs_dtogd(uspi, goal) >> 3;
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue