2 * recovery.c - NILFS recovery logic
4 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * Written by Ryusuke Konishi <ryusuke@osrg.net>
23 #include <linux/buffer_head.h>
24 #include <linux/blkdev.h>
25 #include <linux/swap.h>
26 #include <linux/crc32.h>
35 * Segment check result
39 NILFS_SEG_NO_SUPER_ROOT,
43 NILFS_SEG_FAIL_CHECKSUM_SEGSUM,
44 NILFS_SEG_FAIL_CHECKSUM_SUPER_ROOT,
45 NILFS_SEG_FAIL_CHECKSUM_FULL,
46 NILFS_SEG_FAIL_CONSISTENCY,
49 /* work structure for recovery */
50 struct nilfs_recovery_block {
51 ino_t ino; /* Inode number of the file that this block
53 sector_t blocknr; /* block number */
54 __u64 vblocknr; /* virtual block number */
55 unsigned long blkoff; /* File offset of the data block (per block) */
56 struct list_head list;
60 static int nilfs_warn_segment_error(int err)
63 case NILFS_SEG_FAIL_IO:
65 "NILFS warning: I/O error on loading last segment\n");
67 case NILFS_SEG_FAIL_MAGIC:
69 "NILFS warning: Segment magic number invalid\n");
71 case NILFS_SEG_FAIL_SEQ:
73 "NILFS warning: Sequence number mismatch\n");
75 case NILFS_SEG_FAIL_CHECKSUM_SEGSUM:
77 "NILFS warning: Checksum error in segment summary\n");
79 case NILFS_SEG_FAIL_CHECKSUM_SUPER_ROOT:
81 "NILFS warning: Checksum error in super root\n");
83 case NILFS_SEG_FAIL_CHECKSUM_FULL:
85 "NILFS warning: Checksum error in segment payload\n");
87 case NILFS_SEG_FAIL_CONSISTENCY:
89 "NILFS warning: Inconsistent segment\n");
91 case NILFS_SEG_NO_SUPER_ROOT:
93 "NILFS warning: No super root in the last segment\n");
99 static void store_segsum_info(struct nilfs_segsum_info *ssi,
100 struct nilfs_segment_summary *sum,
101 unsigned int blocksize)
103 ssi->flags = le16_to_cpu(sum->ss_flags);
104 ssi->seg_seq = le64_to_cpu(sum->ss_seq);
105 ssi->ctime = le64_to_cpu(sum->ss_create);
106 ssi->next = le64_to_cpu(sum->ss_next);
107 ssi->nblocks = le32_to_cpu(sum->ss_nblocks);
108 ssi->nfinfo = le32_to_cpu(sum->ss_nfinfo);
109 ssi->sumbytes = le32_to_cpu(sum->ss_sumbytes);
111 ssi->nsumblk = DIV_ROUND_UP(ssi->sumbytes, blocksize);
112 ssi->nfileblk = ssi->nblocks - ssi->nsumblk - !!NILFS_SEG_HAS_SR(ssi);
116 * calc_crc_cont - check CRC of blocks continuously
117 * @sbi: nilfs_sb_info
118 * @bhs: buffer head of start block
119 * @sum: place to store result
120 * @offset: offset bytes in the first block
121 * @check_bytes: number of bytes to be checked
122 * @start: DBN of start block
123 * @nblock: number of blocks to be checked
125 static int calc_crc_cont(struct nilfs_sb_info *sbi, struct buffer_head *bhs,
126 u32 *sum, unsigned long offset, u64 check_bytes,
127 sector_t start, unsigned long nblock)
129 unsigned long blocksize = sbi->s_super->s_blocksize;
133 BUG_ON(offset >= blocksize);
134 check_bytes -= offset;
135 size = min_t(u64, check_bytes, blocksize - offset);
136 crc = crc32_le(sbi->s_nilfs->ns_crc_seed,
137 (unsigned char *)bhs->b_data + offset, size);
140 struct buffer_head *bh
141 = sb_bread(sbi->s_super, ++start);
145 size = min_t(u64, check_bytes, blocksize);
146 crc = crc32_le(crc, bh->b_data, size);
148 } while (--nblock > 0);
155 * nilfs_read_super_root_block - read super root block
157 * @sr_block: disk block number of the super root block
158 * @pbh: address of a buffer_head pointer to return super root buffer
159 * @check: CRC check flag
161 int nilfs_read_super_root_block(struct super_block *sb, sector_t sr_block,
162 struct buffer_head **pbh, int check)
164 struct buffer_head *bh_sr;
165 struct nilfs_super_root *sr;
170 bh_sr = sb_bread(sb, sr_block);
171 if (unlikely(!bh_sr)) {
172 ret = NILFS_SEG_FAIL_IO;
176 sr = (struct nilfs_super_root *)bh_sr->b_data;
178 unsigned bytes = le16_to_cpu(sr->sr_bytes);
180 if (bytes == 0 || bytes > sb->s_blocksize) {
181 ret = NILFS_SEG_FAIL_CHECKSUM_SUPER_ROOT;
184 if (calc_crc_cont(NILFS_SB(sb), bh_sr, &crc,
185 sizeof(sr->sr_sum), bytes, sr_block, 1)) {
186 ret = NILFS_SEG_FAIL_IO;
189 if (crc != le32_to_cpu(sr->sr_sum)) {
190 ret = NILFS_SEG_FAIL_CHECKSUM_SUPER_ROOT;
201 return nilfs_warn_segment_error(ret);
205 * load_segment_summary - read segment summary of the specified partial segment
206 * @sbi: nilfs_sb_info
207 * @pseg_start: start disk block number of partial segment
208 * @seg_seq: sequence number requested
209 * @ssi: pointer to nilfs_segsum_info struct to store information
210 * @full_check: full check flag
211 * (0: only checks segment summary CRC, 1: data CRC)
214 load_segment_summary(struct nilfs_sb_info *sbi, sector_t pseg_start,
215 u64 seg_seq, struct nilfs_segsum_info *ssi,
218 struct buffer_head *bh_sum;
219 struct nilfs_segment_summary *sum;
220 unsigned long offset, nblock;
223 int ret = NILFS_SEG_FAIL_IO;
225 bh_sum = sb_bread(sbi->s_super, pseg_start);
229 sum = (struct nilfs_segment_summary *)bh_sum->b_data;
231 /* Check consistency of segment summary */
232 if (le32_to_cpu(sum->ss_magic) != NILFS_SEGSUM_MAGIC) {
233 ret = NILFS_SEG_FAIL_MAGIC;
236 store_segsum_info(ssi, sum, sbi->s_super->s_blocksize);
237 if (seg_seq != ssi->seg_seq) {
238 ret = NILFS_SEG_FAIL_SEQ;
242 offset = sizeof(sum->ss_datasum);
244 ((u64)ssi->nblocks << sbi->s_super->s_blocksize_bits);
245 nblock = ssi->nblocks;
246 crc_sum = le32_to_cpu(sum->ss_datasum);
247 ret = NILFS_SEG_FAIL_CHECKSUM_FULL;
248 } else { /* only checks segment summary */
249 offset = sizeof(sum->ss_datasum) + sizeof(sum->ss_sumsum);
250 check_bytes = ssi->sumbytes;
251 nblock = ssi->nsumblk;
252 crc_sum = le32_to_cpu(sum->ss_sumsum);
253 ret = NILFS_SEG_FAIL_CHECKSUM_SEGSUM;
256 if (unlikely(nblock == 0 ||
257 nblock > sbi->s_nilfs->ns_blocks_per_segment)) {
258 /* This limits the number of blocks read in the CRC check */
259 ret = NILFS_SEG_FAIL_CONSISTENCY;
262 if (calc_crc_cont(sbi, bh_sum, &crc, offset, check_bytes,
263 pseg_start, nblock)) {
264 ret = NILFS_SEG_FAIL_IO;
275 static void *segsum_get(struct super_block *sb, struct buffer_head **pbh,
276 unsigned int *offset, unsigned int bytes)
281 BUG_ON((*pbh)->b_size < *offset);
282 if (bytes > (*pbh)->b_size - *offset) {
283 blocknr = (*pbh)->b_blocknr;
285 *pbh = sb_bread(sb, blocknr + 1);
290 ptr = (*pbh)->b_data + *offset;
295 static void segsum_skip(struct super_block *sb, struct buffer_head **pbh,
296 unsigned int *offset, unsigned int bytes,
299 unsigned int rest_item_in_current_block
300 = ((*pbh)->b_size - *offset) / bytes;
302 if (count <= rest_item_in_current_block) {
303 *offset += bytes * count;
305 sector_t blocknr = (*pbh)->b_blocknr;
306 unsigned int nitem_per_block = (*pbh)->b_size / bytes;
309 count -= rest_item_in_current_block;
310 bcnt = DIV_ROUND_UP(count, nitem_per_block);
311 *offset = bytes * (count - (bcnt - 1) * nitem_per_block);
314 *pbh = sb_bread(sb, blocknr + bcnt);
319 collect_blocks_from_segsum(struct nilfs_sb_info *sbi, sector_t sum_blocknr,
320 struct nilfs_segsum_info *ssi,
321 struct list_head *head)
323 struct buffer_head *bh;
325 unsigned long nfinfo = ssi->nfinfo;
326 sector_t blocknr = sum_blocknr + ssi->nsumblk;
333 bh = sb_bread(sbi->s_super, sum_blocknr);
337 offset = le16_to_cpu(
338 ((struct nilfs_segment_summary *)bh->b_data)->ss_bytes);
340 unsigned long nblocks, ndatablk, nnodeblk;
341 struct nilfs_finfo *finfo;
343 finfo = segsum_get(sbi->s_super, &bh, &offset, sizeof(*finfo));
344 if (unlikely(!finfo))
347 ino = le64_to_cpu(finfo->fi_ino);
348 nblocks = le32_to_cpu(finfo->fi_nblocks);
349 ndatablk = le32_to_cpu(finfo->fi_ndatablk);
350 nnodeblk = nblocks - ndatablk;
352 while (ndatablk-- > 0) {
353 struct nilfs_recovery_block *rb;
354 struct nilfs_binfo_v *binfo;
356 binfo = segsum_get(sbi->s_super, &bh, &offset,
358 if (unlikely(!binfo))
361 rb = kmalloc(sizeof(*rb), GFP_NOFS);
367 rb->blocknr = blocknr++;
368 rb->vblocknr = le64_to_cpu(binfo->bi_vblocknr);
369 rb->blkoff = le64_to_cpu(binfo->bi_blkoff);
370 /* INIT_LIST_HEAD(&rb->list); */
371 list_add_tail(&rb->list, head);
375 blocknr += nnodeblk; /* always 0 for the data sync segments */
376 segsum_skip(sbi->s_super, &bh, &offset, sizeof(__le64),
383 brelse(bh); /* brelse(NULL) is just ignored */
387 static void dispose_recovery_list(struct list_head *head)
389 while (!list_empty(head)) {
390 struct nilfs_recovery_block *rb
391 = list_entry(head->next,
392 struct nilfs_recovery_block, list);
398 void nilfs_dispose_segment_list(struct list_head *head)
400 while (!list_empty(head)) {
401 struct nilfs_segment_entry *ent
402 = list_entry(head->next,
403 struct nilfs_segment_entry, list);
404 list_del(&ent->list);
405 nilfs_free_segment_entry(ent);
409 static int nilfs_prepare_segment_for_recovery(struct the_nilfs *nilfs,
410 struct nilfs_sb_info *sbi,
411 struct nilfs_recovery_info *ri)
413 struct list_head *head = &ri->ri_used_segments;
414 struct nilfs_segment_entry *ent, *n;
415 struct inode *sufile = nilfs->ns_sufile;
420 segnum[0] = nilfs->ns_segnum;
421 segnum[1] = nilfs->ns_nextnum;
422 segnum[2] = ri->ri_segnum;
423 segnum[3] = ri->ri_nextnum;
425 nilfs_attach_writer(nilfs, sbi);
427 * Releasing the next segment of the latest super root.
428 * The next segment is invalidated by this recovery.
430 err = nilfs_sufile_free(sufile, segnum[1]);
435 for (i = 1; i < 4; i++) {
436 ent = nilfs_alloc_segment_entry(segnum[i]);
439 list_add_tail(&ent->list, head);
443 * Collecting segments written after the latest super root.
444 * These are marked dirty to avoid being reallocated in the next write.
446 list_for_each_entry_safe(ent, n, head, list) {
447 if (ent->segnum != segnum[0]) {
448 err = nilfs_sufile_scrap(sufile, ent->segnum);
452 list_del(&ent->list);
453 nilfs_free_segment_entry(ent);
456 /* Allocate new segments for recovery */
457 err = nilfs_sufile_alloc(sufile, &segnum[0]);
461 nilfs->ns_pseg_offset = 0;
462 nilfs->ns_seg_seq = ri->ri_seq + 2;
463 nilfs->ns_nextnum = nilfs->ns_segnum = segnum[0];
466 /* No need to recover sufile because it will be destroyed on error */
467 nilfs_detach_writer(nilfs, sbi);
471 static int nilfs_recovery_copy_block(struct nilfs_sb_info *sbi,
472 struct nilfs_recovery_block *rb,
475 struct buffer_head *bh_org;
478 bh_org = sb_bread(sbi->s_super, rb->blocknr);
479 if (unlikely(!bh_org))
482 kaddr = kmap_atomic(page, KM_USER0);
483 memcpy(kaddr + bh_offset(bh_org), bh_org->b_data, bh_org->b_size);
484 kunmap_atomic(kaddr, KM_USER0);
489 static int recover_dsync_blocks(struct nilfs_sb_info *sbi,
490 struct list_head *head,
491 unsigned long *nr_salvaged_blocks)
494 struct nilfs_recovery_block *rb, *n;
495 unsigned blocksize = sbi->s_super->s_blocksize;
498 int err = 0, err2 = 0;
500 list_for_each_entry_safe(rb, n, head, list) {
501 inode = nilfs_iget(sbi->s_super, rb->ino);
503 err = PTR_ERR(inode);
508 pos = rb->blkoff << inode->i_blkbits;
510 err = block_write_begin(NULL, inode->i_mapping, pos, blocksize,
511 0, &page, NULL, nilfs_get_block);
515 err = nilfs_recovery_copy_block(sbi, rb, page);
519 err = nilfs_set_file_dirty(sbi, inode, 1);
523 block_write_end(NULL, inode->i_mapping, pos, blocksize,
524 blocksize, page, NULL);
527 page_cache_release(page);
529 (*nr_salvaged_blocks)++;
534 page_cache_release(page);
538 "NILFS warning: error recovering data block "
539 "(err=%d, ino=%lu, block-offset=%llu)\n",
540 err, rb->ino, (unsigned long long)rb->blkoff);
544 iput(inode); /* iput(NULL) is just ignored */
545 list_del_init(&rb->list);
552 * nilfs_do_roll_forward - salvage logical segments newer than the latest
554 * @sbi: nilfs_sb_info
556 * @ri: pointer to a nilfs_recovery_info
558 static int nilfs_do_roll_forward(struct the_nilfs *nilfs,
559 struct nilfs_sb_info *sbi,
560 struct nilfs_recovery_info *ri)
562 struct nilfs_segsum_info ssi;
564 sector_t seg_start, seg_end; /* Starting/ending DBN of full segment */
565 unsigned long nsalvaged_blocks = 0;
567 __u64 segnum, nextnum = 0;
570 LIST_HEAD(dsync_blocks); /* list of data blocks to be recovered */
573 RF_DSYNC_ST, /* scanning data-sync segments */
575 int state = RF_INIT_ST;
577 nilfs_attach_writer(nilfs, sbi);
578 pseg_start = ri->ri_lsegs_start;
579 seg_seq = ri->ri_lsegs_start_seq;
580 segnum = nilfs_get_segnum_of_block(nilfs, pseg_start);
581 nilfs_get_segment_range(nilfs, segnum, &seg_start, &seg_end);
583 while (segnum != ri->ri_segnum || pseg_start <= ri->ri_pseg_start) {
585 ret = load_segment_summary(sbi, pseg_start, seg_seq, &ssi, 1);
587 if (ret == NILFS_SEG_FAIL_IO) {
593 if (unlikely(NILFS_SEG_HAS_SR(&ssi)))
596 /* Found a valid partial segment; do recovery actions */
597 nextnum = nilfs_get_segnum_of_block(nilfs, ssi.next);
599 nilfs->ns_ctime = ssi.ctime;
600 if (!(ssi.flags & NILFS_SS_GC))
601 nilfs->ns_nongc_ctime = ssi.ctime;
605 if (!NILFS_SEG_LOGBGN(&ssi) || !NILFS_SEG_DSYNC(&ssi))
610 if (!NILFS_SEG_DSYNC(&ssi))
613 err = collect_blocks_from_segsum(
614 sbi, pseg_start, &ssi, &dsync_blocks);
617 if (NILFS_SEG_LOGEND(&ssi)) {
618 err = recover_dsync_blocks(
619 sbi, &dsync_blocks, &nsalvaged_blocks);
624 break; /* Fall through to try_next_pseg */
628 if (pseg_start == ri->ri_lsegs_end)
630 pseg_start += ssi.nblocks;
631 if (pseg_start < seg_end)
636 if (pseg_start == ri->ri_lsegs_end)
640 /* Looking to the next full segment */
645 nilfs_get_segment_range(nilfs, segnum, &seg_start, &seg_end);
646 pseg_start = seg_start;
649 if (nsalvaged_blocks) {
650 printk(KERN_INFO "NILFS (device %s): salvaged %lu blocks\n",
651 sbi->s_super->s_id, nsalvaged_blocks);
652 ri->ri_need_recovery = NILFS_RECOVERY_ROLLFORWARD_DONE;
655 dispose_recovery_list(&dsync_blocks);
656 nilfs_detach_writer(sbi->s_nilfs, sbi);
663 "NILFS (device %s): Error roll-forwarding "
664 "(err=%d, pseg block=%llu). ",
665 sbi->s_super->s_id, err, (unsigned long long)pseg_start);
669 static void nilfs_finish_roll_forward(struct the_nilfs *nilfs,
670 struct nilfs_sb_info *sbi,
671 struct nilfs_recovery_info *ri)
673 struct buffer_head *bh;
676 if (nilfs_get_segnum_of_block(nilfs, ri->ri_lsegs_start) !=
677 nilfs_get_segnum_of_block(nilfs, ri->ri_super_root))
680 bh = sb_getblk(sbi->s_super, ri->ri_lsegs_start);
682 memset(bh->b_data, 0, bh->b_size);
683 set_buffer_dirty(bh);
684 err = sync_dirty_buffer(bh);
687 "NILFS warning: buffer sync write failed during "
688 "post-cleaning of recovery.\n");
693 * nilfs_recover_logical_segments - salvage logical segments written after
694 * the latest super root
696 * @sbi: nilfs_sb_info
697 * @ri: pointer to a nilfs_recovery_info struct to store search results.
699 * Return Value: On success, 0 is returned. On error, one of the following
700 * negative error code is returned.
702 * %-EINVAL - Inconsistent filesystem state.
706 * %-ENOSPC - No space left on device (only in a panic state).
708 * %-ERESTARTSYS - Interrupted.
710 * %-ENOMEM - Insufficient memory available.
712 int nilfs_recover_logical_segments(struct the_nilfs *nilfs,
713 struct nilfs_sb_info *sbi,
714 struct nilfs_recovery_info *ri)
718 if (ri->ri_lsegs_start == 0 || ri->ri_lsegs_end == 0)
721 err = nilfs_attach_checkpoint(sbi, ri->ri_cno);
724 "NILFS: error loading the latest checkpoint.\n");
728 err = nilfs_do_roll_forward(nilfs, sbi, ri);
732 if (ri->ri_need_recovery == NILFS_RECOVERY_ROLLFORWARD_DONE) {
733 err = nilfs_prepare_segment_for_recovery(nilfs, sbi, ri);
735 printk(KERN_ERR "NILFS: Error preparing segments for "
740 err = nilfs_attach_segment_constructor(sbi);
744 set_nilfs_discontinued(nilfs);
745 err = nilfs_construct_segment(sbi->s_super);
746 nilfs_detach_segment_constructor(sbi);
749 printk(KERN_ERR "NILFS: Oops! recovery failed. "
754 nilfs_finish_roll_forward(nilfs, sbi, ri);
757 nilfs_detach_checkpoint(sbi);
761 nilfs_detach_checkpoint(sbi);
762 nilfs_mdt_clear(nilfs->ns_cpfile);
763 nilfs_mdt_clear(nilfs->ns_sufile);
764 nilfs_mdt_clear(nilfs->ns_dat);
769 * nilfs_search_super_root - search the latest valid super root
771 * @sbi: nilfs_sb_info
772 * @ri: pointer to a nilfs_recovery_info struct to store search results.
774 * nilfs_search_super_root() looks for the latest super-root from a partial
775 * segment pointed by the superblock. It sets up struct the_nilfs through
776 * this search. It fills nilfs_recovery_info (ri) required for recovery.
778 * Return Value: On success, 0 is returned. On error, one of the following
779 * negative error code is returned.
781 * %-EINVAL - No valid segment found
785 int nilfs_search_super_root(struct the_nilfs *nilfs, struct nilfs_sb_info *sbi,
786 struct nilfs_recovery_info *ri)
788 struct nilfs_segsum_info ssi;
789 sector_t pseg_start, pseg_end, sr_pseg_start = 0;
790 sector_t seg_start, seg_end; /* range of full segment (block number) */
792 __u64 segnum, nextnum = 0;
794 struct nilfs_segment_entry *ent;
796 int empty_seg = 0, scan_newer = 0;
799 pseg_start = nilfs->ns_last_pseg;
800 seg_seq = nilfs->ns_last_seq;
801 cno = nilfs->ns_last_cno;
802 segnum = nilfs_get_segnum_of_block(nilfs, pseg_start);
804 /* Calculate range of segment */
805 nilfs_get_segment_range(nilfs, segnum, &seg_start, &seg_end);
808 /* Load segment summary */
809 ret = load_segment_summary(sbi, pseg_start, seg_seq, &ssi, 1);
811 if (ret == NILFS_SEG_FAIL_IO)
815 pseg_end = pseg_start + ssi.nblocks - 1;
816 if (unlikely(pseg_end > seg_end)) {
817 ret = NILFS_SEG_FAIL_CONSISTENCY;
821 /* A valid partial segment */
822 ri->ri_pseg_start = pseg_start;
823 ri->ri_seq = seg_seq;
824 ri->ri_segnum = segnum;
825 nextnum = nilfs_get_segnum_of_block(nilfs, ssi.next);
826 ri->ri_nextnum = nextnum;
829 if (!NILFS_SEG_HAS_SR(&ssi)) {
831 /* This will never happen because a superblock
832 (last_segment) always points to a pseg
833 having a super root. */
834 ret = NILFS_SEG_FAIL_CONSISTENCY;
837 if (!ri->ri_lsegs_start && NILFS_SEG_LOGBGN(&ssi)) {
838 ri->ri_lsegs_start = pseg_start;
839 ri->ri_lsegs_start_seq = seg_seq;
841 if (NILFS_SEG_LOGEND(&ssi))
842 ri->ri_lsegs_end = pseg_start;
846 /* A valid super root was found. */
848 ri->ri_super_root = pseg_end;
849 ri->ri_lsegs_start = ri->ri_lsegs_end = 0;
851 nilfs_dispose_segment_list(&segments);
852 nilfs->ns_pseg_offset = (sr_pseg_start = pseg_start)
853 + ssi.nblocks - seg_start;
854 nilfs->ns_seg_seq = seg_seq;
855 nilfs->ns_segnum = segnum;
856 nilfs->ns_cno = cno; /* nilfs->ns_cno = ri->ri_cno + 1 */
857 nilfs->ns_ctime = ssi.ctime;
858 nilfs->ns_nextnum = nextnum;
861 ri->ri_need_recovery = NILFS_RECOVERY_SR_UPDATED;
863 if (nilfs->ns_mount_state & NILFS_VALID_FS)
864 goto super_root_found;
868 /* reset region for roll-forward */
869 pseg_start += ssi.nblocks;
870 if (pseg_start < seg_end)
875 /* Standing on a course, or met an inconsistent state */
876 pseg_start += ssi.nblocks;
877 if (pseg_start < seg_end)
885 * This can happen if a checkpoint was written without
886 * barriers, or as a result of an I/O failure.
891 /* Looking to the next full segment */
893 goto super_root_found; /* found a valid super root */
895 ent = nilfs_alloc_segment_entry(segnum);
896 if (unlikely(!ent)) {
900 list_add_tail(&ent->list, &segments);
904 nilfs_get_segment_range(nilfs, segnum, &seg_start, &seg_end);
905 pseg_start = seg_start;
909 /* Updating pointers relating to the latest checkpoint */
910 list_splice(&segments, ri->ri_used_segments.prev);
911 nilfs->ns_last_pseg = sr_pseg_start;
912 nilfs->ns_last_seq = nilfs->ns_seg_seq;
913 nilfs->ns_last_cno = ri->ri_cno;
917 nilfs_dispose_segment_list(&segments);
918 return (ret < 0) ? ret : nilfs_warn_segment_error(ret);