diff options
author | Hugh Dickins <hugh@veritas.com> | 2006-12-06 23:41:28 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-07 11:39:48 -0500 |
commit | 2823b5535efad71e950ef50c2ce5f9e4dbaedc17 (patch) | |
tree | 181340cdda3b11a2bff6570615f926a804b71b70 /fs/ext3/balloc.c | |
parent | c56d2561f7189762c4fce854630d4f7f6d64ccee (diff) |
[PATCH] ext3 balloc: use io_error label
ext3_new_blocks has a nice io_error label for setting -EIO, so goto that in
the one place that doesn't already use it.
Signed-off-by: Mingming Cao <cmm@us.ibm.com>
Signed-off-by: Hugh Dickins <hugh@veritas.com>
Cc: <linux-ext4@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/ext3/balloc.c')
-rw-r--r-- | fs/ext3/balloc.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/ext3/balloc.c b/fs/ext3/balloc.c index 03d39b6fd305..5a2c198762f0 100644 --- a/fs/ext3/balloc.c +++ b/fs/ext3/balloc.c | |||
@@ -1515,10 +1515,8 @@ retry_alloc: | |||
1515 | if (group_no >= ngroups) | 1515 | if (group_no >= ngroups) |
1516 | group_no = 0; | 1516 | group_no = 0; |
1517 | gdp = ext3_get_group_desc(sb, group_no, &gdp_bh); | 1517 | gdp = ext3_get_group_desc(sb, group_no, &gdp_bh); |
1518 | if (!gdp) { | 1518 | if (!gdp) |
1519 | *errp = -EIO; | 1519 | goto io_error; |
1520 | goto out; | ||
1521 | } | ||
1522 | free_blocks = le16_to_cpu(gdp->bg_free_blocks_count); | 1520 | free_blocks = le16_to_cpu(gdp->bg_free_blocks_count); |
1523 | /* | 1521 | /* |
1524 | * skip this group if the number of | 1522 | * skip this group if the number of |