Commit 3b1d0b9d authored by Steven Whitehouse's avatar Steven Whitehouse

GFS2: Update rgblk_free() to use rbm

Replace open coded version with a call to gfs2_rbm_from_block()
Signed-off-by: default avatarSteven Whitehouse <swhiteho@redhat.com>
parent 3983903a
...@@ -1890,46 +1890,30 @@ static u64 gfs2_alloc_extent(const struct gfs2_rbm *rbm, bool dinode, ...@@ -1890,46 +1890,30 @@ static u64 gfs2_alloc_extent(const struct gfs2_rbm *rbm, bool dinode,
static struct gfs2_rgrpd *rgblk_free(struct gfs2_sbd *sdp, u64 bstart, static struct gfs2_rgrpd *rgblk_free(struct gfs2_sbd *sdp, u64 bstart,
u32 blen, unsigned char new_state) u32 blen, unsigned char new_state)
{ {
struct gfs2_rgrpd *rgd; struct gfs2_rbm rbm;
struct gfs2_bitmap *bi = NULL;
u32 length, rgrp_blk, buf_blk;
unsigned int buf;
rgd = gfs2_blk2rgrpd(sdp, bstart, 1); rbm.rgd = gfs2_blk2rgrpd(sdp, bstart, 1);
if (!rgd) { if (!rbm.rgd) {
if (gfs2_consist(sdp)) if (gfs2_consist(sdp))
fs_err(sdp, "block = %llu\n", (unsigned long long)bstart); fs_err(sdp, "block = %llu\n", (unsigned long long)bstart);
return NULL; return NULL;
} }
length = rgd->rd_length;
rgrp_blk = bstart - rgd->rd_data0;
while (blen--) { while (blen--) {
for (buf = 0; buf < length; buf++) { gfs2_rbm_from_block(&rbm, bstart);
bi = rgd->rd_bits + buf; bstart++;
if (rgrp_blk < (bi->bi_start + bi->bi_len) * GFS2_NBBY) if (!rbm.bi->bi_clone) {
break; rbm.bi->bi_clone = kmalloc(rbm.bi->bi_bh->b_size,
}
gfs2_assert(rgd->rd_sbd, buf < length);
buf_blk = rgrp_blk - bi->bi_start * GFS2_NBBY;
rgrp_blk++;
if (!bi->bi_clone) {
bi->bi_clone = kmalloc(bi->bi_bh->b_size,
GFP_NOFS | __GFP_NOFAIL); GFP_NOFS | __GFP_NOFAIL);
memcpy(bi->bi_clone + bi->bi_offset, memcpy(rbm.bi->bi_clone + rbm.bi->bi_offset,
bi->bi_bh->b_data + bi->bi_offset, rbm.bi->bi_bh->b_data + rbm.bi->bi_offset,
bi->bi_len); rbm.bi->bi_len);
} }
gfs2_trans_add_bh(rgd->rd_gl, bi->bi_bh, 1); gfs2_trans_add_bh(rbm.rgd->rd_gl, rbm.bi->bi_bh, 1);
gfs2_setbit(rgd, NULL, bi, buf_blk, new_state); gfs2_setbit(rbm.rgd, NULL, rbm.bi, rbm.offset, new_state);
} }
return rgd; return rbm.rgd;
} }
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment