diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2011-05-26 01:36:52 -0400 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2011-06-01 05:29:06 -0400 |
commit | efcfde54ca68091b164f9aec544c7233a9760aff (patch) | |
tree | f94cd590448a23c2ba7c6566dcbeb72eb3f3dd1d /fs/ubifs/recovery.c | |
parent | 1a0b06997ceca96db9259e537eb935f9fe59a3de (diff) |
UBIFS: amend ubifs_recover_leb interface
Instead of passing "grouped" parameter to 'ubifs_recover_leb()' which tells
whether the nodes are grouped in the LEB to recover, pass the journal head
number and let 'ubifs_recover_leb()' look at the journal head's 'grouped' flag.
This patch is a preparation to a further fix where we'll need to know the
journal head number for other purposes.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs/ubifs/recovery.c')
-rw-r--r-- | fs/ubifs/recovery.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/fs/ubifs/recovery.c b/fs/ubifs/recovery.c index 95e24183b710..6adb5328a016 100644 --- a/fs/ubifs/recovery.c +++ b/fs/ubifs/recovery.c | |||
@@ -604,7 +604,8 @@ static int drop_last_node(struct ubifs_scan_leb *sleb, int *offs, int grouped) | |||
604 | * @lnum: LEB number | 604 | * @lnum: LEB number |
605 | * @offs: offset | 605 | * @offs: offset |
606 | * @sbuf: LEB-sized buffer to use | 606 | * @sbuf: LEB-sized buffer to use |
607 | * @grouped: nodes may be grouped for recovery | 607 | * @jhead: journal head number this LEB belongs to (%-1 if the LEB does not |
608 | * belong to any journal head) | ||
608 | * | 609 | * |
609 | * This function does a scan of a LEB, but caters for errors that might have | 610 | * This function does a scan of a LEB, but caters for errors that might have |
610 | * been caused by the unclean unmount from which we are attempting to recover. | 611 | * been caused by the unclean unmount from which we are attempting to recover. |
@@ -612,13 +613,14 @@ static int drop_last_node(struct ubifs_scan_leb *sleb, int *offs, int grouped) | |||
612 | * found, and a negative error code in case of failure. | 613 | * found, and a negative error code in case of failure. |
613 | */ | 614 | */ |
614 | struct ubifs_scan_leb *ubifs_recover_leb(struct ubifs_info *c, int lnum, | 615 | struct ubifs_scan_leb *ubifs_recover_leb(struct ubifs_info *c, int lnum, |
615 | int offs, void *sbuf, int grouped) | 616 | int offs, void *sbuf, int jhead) |
616 | { | 617 | { |
617 | int ret = 0, err, len = c->leb_size - offs, start = offs, min_io_unit; | 618 | int ret = 0, err, len = c->leb_size - offs, start = offs, min_io_unit; |
619 | int grouped = jhead == -1 ? 0 : c->jheads[jhead].grouped; | ||
618 | struct ubifs_scan_leb *sleb; | 620 | struct ubifs_scan_leb *sleb; |
619 | void *buf = sbuf + offs; | 621 | void *buf = sbuf + offs; |
620 | 622 | ||
621 | dbg_rcvry("%d:%d", lnum, offs); | 623 | dbg_rcvry("%d:%d, jhead %d, grouped %d", lnum, offs, jhead, grouped); |
622 | 624 | ||
623 | sleb = ubifs_start_scan(c, lnum, offs, sbuf); | 625 | sleb = ubifs_start_scan(c, lnum, offs, sbuf); |
624 | if (IS_ERR(sleb)) | 626 | if (IS_ERR(sleb)) |
@@ -881,7 +883,7 @@ struct ubifs_scan_leb *ubifs_recover_log_leb(struct ubifs_info *c, int lnum, | |||
881 | } | 883 | } |
882 | ubifs_scan_destroy(sleb); | 884 | ubifs_scan_destroy(sleb); |
883 | } | 885 | } |
884 | return ubifs_recover_leb(c, lnum, offs, sbuf, 0); | 886 | return ubifs_recover_leb(c, lnum, offs, sbuf, -1); |
885 | } | 887 | } |
886 | 888 | ||
887 | /** | 889 | /** |