]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - fs/nilfs2/recovery.c
nilfs2: fix gcc uninitialized-variable warnings in powerpc build
[karo-tx-linux.git] / fs / nilfs2 / recovery.c
index ff00a0b7acb927ee18a9dba898aac5cf55b2def5..9b4f205d11736dc4d109828260055c2af34c0e9d 100644 (file)
@@ -582,7 +582,7 @@ static int nilfs_do_roll_forward(struct the_nilfs *nilfs,
                                 struct nilfs_recovery_info *ri)
 {
        struct buffer_head *bh_sum = NULL;
-       struct nilfs_segment_summary *sum;
+       struct nilfs_segment_summary *sum = NULL;
        sector_t pseg_start;
        sector_t seg_start, seg_end;  /* Starting/ending DBN of full segment */
        unsigned long nsalvaged_blocks = 0;
@@ -814,7 +814,7 @@ int nilfs_search_super_root(struct the_nilfs *nilfs,
                            struct nilfs_recovery_info *ri)
 {
        struct buffer_head *bh_sum = NULL;
-       struct nilfs_segment_summary *sum;
+       struct nilfs_segment_summary *sum = NULL;
        sector_t pseg_start, pseg_end, sr_pseg_start = 0;
        sector_t seg_start, seg_end; /* range of full segment (block number) */
        sector_t b, end;