Commit 8d8b752a authored by Bob Peterson's avatar Bob Peterson Committed by Steven Whitehouse

GFS2: rbm code cleanup

This patch fixes a few small rbm related things. First, it fixes
a corner case where the rbm needs to switch bitmaps and wasn't
adjusting its buffer pointer. Second, there's a white space issue
fixed. Third, the logic in function gfs2_rbm_from_block was optimized
a bit. Lastly, a check for goal block overflows was added to function
gfs2_alloc_blocks.
Signed-off-by: default avatarBob Peterson <rpeterso@redhat.com>
Signed-off-by: default avatarSteven Whitehouse <swhiteho@redhat.com>
parent 5d50d532
...@@ -467,7 +467,7 @@ int gfs2_rs_alloc(struct gfs2_inode *ip) ...@@ -467,7 +467,7 @@ int gfs2_rs_alloc(struct gfs2_inode *ip)
static void dump_rs(struct seq_file *seq, struct gfs2_blkreserv *rs) static void dump_rs(struct seq_file *seq, struct gfs2_blkreserv *rs)
{ {
gfs2_print_dbg(seq, " r: %llu s:%llu b:%u f:%u\n", gfs2_print_dbg(seq, " r: %llu s:%llu b:%u f:%u\n",
rs->rs_rbm.rgd->rd_addr, gfs2_rbm_to_block(&rs->rs_rbm), rs->rs_rbm.rgd->rd_addr, gfs2_rbm_to_block(&rs->rs_rbm),
rs->rs_rbm.offset, rs->rs_free); rs->rs_rbm.offset, rs->rs_free);
} }
...@@ -1493,16 +1493,18 @@ static int gfs2_rbm_from_block(struct gfs2_rbm *rbm, u64 block) ...@@ -1493,16 +1493,18 @@ static int gfs2_rbm_from_block(struct gfs2_rbm *rbm, u64 block)
if (WARN_ON_ONCE(rblock > UINT_MAX)) if (WARN_ON_ONCE(rblock > UINT_MAX))
return -EINVAL; return -EINVAL;
if (block >= rbm->rgd->rd_data0 + rbm->rgd->rd_data)
return -E2BIG;
for (x = 0; x < rbm->rgd->rd_length; x++) { for (x = 0; x < rbm->rgd->rd_length; x++) {
rbm->bi = rbm->rgd->rd_bits + x; rbm->bi = rbm->rgd->rd_bits + x;
if (goal < (rbm->bi->bi_start + rbm->bi->bi_len) * GFS2_NBBY) { if (goal < (rbm->bi->bi_start + rbm->bi->bi_len) * GFS2_NBBY) {
rbm->offset = goal - (rbm->bi->bi_start * GFS2_NBBY); rbm->offset = goal - (rbm->bi->bi_start * GFS2_NBBY);
return 0; break;
} }
} }
return -E2BIG; return 0;
} }
/** /**
...@@ -1579,7 +1581,6 @@ static int gfs2_rbm_find(struct gfs2_rbm *rbm, u8 state, ...@@ -1579,7 +1581,6 @@ static int gfs2_rbm_find(struct gfs2_rbm *rbm, u8 state,
WARN_ON(!buffer_uptodate(bh)); WARN_ON(!buffer_uptodate(bh));
if (state != GFS2_BLKST_UNLINKED && rbm->bi->bi_clone) if (state != GFS2_BLKST_UNLINKED && rbm->bi->bi_clone)
buffer = rbm->bi->bi_clone + rbm->bi->bi_offset; buffer = rbm->bi->bi_clone + rbm->bi->bi_offset;
find_next:
initial_offset = rbm->offset; initial_offset = rbm->offset;
offset = gfs2_bitfit(buffer, rbm->bi->bi_len, rbm->offset, state); offset = gfs2_bitfit(buffer, rbm->bi->bi_len, rbm->offset, state);
if (offset == BFITNOENT) if (offset == BFITNOENT)
...@@ -1594,7 +1595,7 @@ static int gfs2_rbm_find(struct gfs2_rbm *rbm, u8 state, ...@@ -1594,7 +1595,7 @@ static int gfs2_rbm_find(struct gfs2_rbm *rbm, u8 state,
return 0; return 0;
if (ret > 0) { if (ret > 0) {
n += (rbm->bi - initial_bi); n += (rbm->bi - initial_bi);
goto find_next; goto next_iter;
} }
if (ret == -E2BIG) { if (ret == -E2BIG) {
index = 0; index = 0;
...@@ -1619,6 +1620,7 @@ static int gfs2_rbm_find(struct gfs2_rbm *rbm, u8 state, ...@@ -1619,6 +1620,7 @@ static int gfs2_rbm_find(struct gfs2_rbm *rbm, u8 state,
if ((index == 0) && nowrap) if ((index == 0) && nowrap)
break; break;
n++; n++;
next_iter:
if (n >= iters) if (n >= iters)
break; break;
} }
...@@ -2028,6 +2030,10 @@ int gfs2_alloc_blocks(struct gfs2_inode *ip, u64 *bn, unsigned int *nblocks, ...@@ -2028,6 +2030,10 @@ int gfs2_alloc_blocks(struct gfs2_inode *ip, u64 *bn, unsigned int *nblocks,
else else
goal = rbm.rgd->rd_last_alloc + rbm.rgd->rd_data0; goal = rbm.rgd->rd_last_alloc + rbm.rgd->rd_data0;
if ((goal < rbm.rgd->rd_data0) ||
(goal >= rbm.rgd->rd_data0 + rbm.rgd->rd_data))
rbm.rgd = gfs2_blk2rgrpd(sdp, goal, 1);
gfs2_rbm_from_block(&rbm, goal); gfs2_rbm_from_block(&rbm, goal);
error = gfs2_rbm_find(&rbm, GFS2_BLKST_FREE, ip, false); error = gfs2_rbm_find(&rbm, GFS2_BLKST_FREE, ip, false);
......
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