gfs2: fix shadow warning in gfs2_rbm_find()
bi was already declared and initialized globally in gfs2_rbm_find() Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Bob Peterson <rpeterso@redhat.com>
This commit is contained in:
parent
1272574bf9
commit
a3e3213676
|
@ -1711,10 +1711,8 @@ static int gfs2_rbm_find(struct gfs2_rbm *rbm, u8 state, u32 *minext,
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
bitmap_full: /* Mark bitmap as full and fall through */
|
bitmap_full: /* Mark bitmap as full and fall through */
|
||||||
if ((state == GFS2_BLKST_FREE) && initial_offset == 0) {
|
if ((state == GFS2_BLKST_FREE) && initial_offset == 0)
|
||||||
struct gfs2_bitmap *bi = rbm_bi(rbm);
|
|
||||||
set_bit(GBF_FULL, &bi->bi_flags);
|
set_bit(GBF_FULL, &bi->bi_flags);
|
||||||
}
|
|
||||||
|
|
||||||
next_bitmap: /* Find next bitmap in the rgrp */
|
next_bitmap: /* Find next bitmap in the rgrp */
|
||||||
rbm->offset = 0;
|
rbm->offset = 0;
|
||||||
|
|
Loading…
Reference in New Issue