diff options
author | Jeff Mahoney <jeffm@suse.com> | 2014-04-23 10:00:41 -0400 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2014-05-06 23:18:09 +0200 |
commit | cf776a7a4dafa330dd371a6a301ddf9e38747d93 (patch) | |
tree | 838f741515d60b0a32439853e2e11292230b4879 /fs/reiserfs/bitmap.c | |
parent | 16da167c167529e466235414c9e06cf4726e2058 (diff) | |
download | linux-cf776a7a4dafa330dd371a6a301ddf9e38747d93.tar.bz2 |
reiserfs: cleanup, remove leading whitespace from labels
This patch moves reiserfs closer to adhering to the style rules by
removing leading whitespace from labels.
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/reiserfs/bitmap.c')
-rw-r--r-- | fs/reiserfs/bitmap.c | 4 |
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, return 0; while (1) { - cont: +cont: if (bi->free_count < min) { brelse(bh); return 0; /* No free blocks in this bitmap */ @@ -409,7 +409,7 @@ static int scan_bitmap(struct reiserfs_transaction_handle *th, nr_allocated = scan_bitmap_block(th, bm, &off, end_off + 1, min, max, unfm); - ret: +ret: *start = bm * off_max + off; return nr_allocated; |