aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nilfs2/super.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/nilfs2/super.c')
-rw-r--r--fs/nilfs2/super.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/fs/nilfs2/super.c b/fs/nilfs2/super.c
index 2f0e9f7bf152..d0639a6aae9e 100644
--- a/fs/nilfs2/super.c
+++ b/fs/nilfs2/super.c
@@ -841,8 +841,11 @@ nilfs_fill_super(struct super_block *sb, void *data, int silent,
841 841
842 if (sb->s_flags & MS_RDONLY) { 842 if (sb->s_flags & MS_RDONLY) {
843 if (nilfs_test_opt(sbi, SNAPSHOT)) { 843 if (nilfs_test_opt(sbi, SNAPSHOT)) {
844 if (!nilfs_cpfile_is_snapshot(nilfs->ns_cpfile, 844 err = nilfs_cpfile_is_snapshot(nilfs->ns_cpfile,
845 sbi->s_snapshot_cno)) { 845 sbi->s_snapshot_cno);
846 if (err < 0)
847 goto failed_sbi;
848 if (!err) {
846 printk(KERN_ERR 849 printk(KERN_ERR
847 "NILFS: The specified checkpoint is " 850 "NILFS: The specified checkpoint is "
848 "not a snapshot " 851 "not a snapshot "
@@ -1163,7 +1166,6 @@ nilfs_get_sb(struct file_system_type *fs_type, int flags,
1163 } else { 1166 } else {
1164 struct nilfs_sb_info *sbi = NILFS_SB(s); 1167 struct nilfs_sb_info *sbi = NILFS_SB(s);
1165 1168
1166 BUG_ON(!sbi || !sbi->s_nilfs);
1167 /* 1169 /*
1168 * s_umount protects super_block from unmount process; 1170 * s_umount protects super_block from unmount process;
1169 * It covers pointers of nilfs_sb_info and the_nilfs. 1171 * It covers pointers of nilfs_sb_info and the_nilfs.