aboutsummaryrefslogtreecommitdiffstats
path: root/fs/reiserfs/bitmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/reiserfs/bitmap.c')
-rw-r--r--fs/reiserfs/bitmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/reiserfs/bitmap.c b/fs/reiserfs/bitmap.c
index 46359bf3e9e5..543a2a23a293 100644
--- a/fs/reiserfs/bitmap.c
+++ b/fs/reiserfs/bitmap.c
@@ -167,7 +167,7 @@ static int scan_bitmap_block(struct reiserfs_transaction_handle *th,
167 return 0; 167 return 0;
168 168
169 while (1) { 169 while (1) {
170 cont: 170cont:
171 if (bi->free_count < min) { 171 if (bi->free_count < min) {
172 brelse(bh); 172 brelse(bh);
173 return 0; /* No free blocks in this bitmap */ 173 return 0; /* No free blocks in this bitmap */
@@ -409,7 +409,7 @@ static int scan_bitmap(struct reiserfs_transaction_handle *th,
409 nr_allocated = 409 nr_allocated =
410 scan_bitmap_block(th, bm, &off, end_off + 1, min, max, unfm); 410 scan_bitmap_block(th, bm, &off, end_off + 1, min, max, unfm);
411 411
412 ret: 412ret:
413 *start = bm * off_max + off; 413 *start = bm * off_max + off;
414 return nr_allocated; 414 return nr_allocated;
415 415