diff options
Diffstat (limited to 'fs/nilfs2/super.c')
| -rw-r--r-- | fs/nilfs2/super.c | 19 | 
1 files changed, 11 insertions, 8 deletions
diff --git a/fs/nilfs2/super.c b/fs/nilfs2/super.c index 8173faee31e6..0cdbc5e7655a 100644 --- a/fs/nilfs2/super.c +++ b/fs/nilfs2/super.c  | |||
| @@ -96,9 +96,6 @@ void nilfs_error(struct super_block *sb, const char *function, | |||
| 96 | if (!(sb->s_flags & MS_RDONLY)) { | 96 | if (!(sb->s_flags & MS_RDONLY)) { | 
| 97 | struct the_nilfs *nilfs = sbi->s_nilfs; | 97 | struct the_nilfs *nilfs = sbi->s_nilfs; | 
| 98 | 98 | ||
| 99 | if (!nilfs_test_opt(sbi, ERRORS_CONT)) | ||
| 100 | nilfs_detach_segment_constructor(sbi); | ||
| 101 | |||
| 102 | down_write(&nilfs->ns_sem); | 99 | down_write(&nilfs->ns_sem); | 
| 103 | if (!(nilfs->ns_mount_state & NILFS_ERROR_FS)) { | 100 | if (!(nilfs->ns_mount_state & NILFS_ERROR_FS)) { | 
| 104 | nilfs->ns_mount_state |= NILFS_ERROR_FS; | 101 | nilfs->ns_mount_state |= NILFS_ERROR_FS; | 
| @@ -301,7 +298,7 @@ int nilfs_commit_super(struct nilfs_sb_info *sbi, int dupsb) | |||
| 301 | memcpy(sbp[1], sbp[0], nilfs->ns_sbsize); | 298 | memcpy(sbp[1], sbp[0], nilfs->ns_sbsize); | 
| 302 | nilfs->ns_sbwtime[1] = t; | 299 | nilfs->ns_sbwtime[1] = t; | 
| 303 | } | 300 | } | 
| 304 | sbi->s_super->s_dirt = 0; | 301 | clear_nilfs_sb_dirty(nilfs); | 
| 305 | return nilfs_sync_super(sbi, dupsb); | 302 | return nilfs_sync_super(sbi, dupsb); | 
| 306 | } | 303 | } | 
| 307 | 304 | ||
| @@ -345,7 +342,7 @@ static int nilfs_sync_fs(struct super_block *sb, int wait) | |||
| 345 | err = nilfs_construct_segment(sb); | 342 | err = nilfs_construct_segment(sb); | 
| 346 | 343 | ||
| 347 | down_write(&nilfs->ns_sem); | 344 | down_write(&nilfs->ns_sem); | 
| 348 | if (sb->s_dirt) | 345 | if (nilfs_sb_dirty(nilfs)) | 
| 349 | nilfs_commit_super(sbi, 1); | 346 | nilfs_commit_super(sbi, 1); | 
| 350 | up_write(&nilfs->ns_sem); | 347 | up_write(&nilfs->ns_sem); | 
| 351 | 348 | ||
| @@ -439,7 +436,7 @@ static int nilfs_statfs(struct dentry *dentry, struct kstatfs *buf) | |||
| 439 | /* | 436 | /* | 
| 440 | * Compute the overhead | 437 | * Compute the overhead | 
| 441 | * | 438 | * | 
| 442 | * When distributing meta data blocks outside semgent structure, | 439 | * When distributing meta data blocks outside segment structure, | 
| 443 | * We must count them as the overhead. | 440 | * We must count them as the overhead. | 
| 444 | */ | 441 | */ | 
| 445 | overhead = 0; | 442 | overhead = 0; | 
| @@ -481,6 +478,8 @@ static int nilfs_show_options(struct seq_file *seq, struct vfsmount *vfs) | |||
| 481 | seq_printf(seq, ",order=strict"); | 478 | seq_printf(seq, ",order=strict"); | 
| 482 | if (nilfs_test_opt(sbi, NORECOVERY)) | 479 | if (nilfs_test_opt(sbi, NORECOVERY)) | 
| 483 | seq_printf(seq, ",norecovery"); | 480 | seq_printf(seq, ",norecovery"); | 
| 481 | if (nilfs_test_opt(sbi, DISCARD)) | ||
| 482 | seq_printf(seq, ",discard"); | ||
| 484 | 483 | ||
| 485 | return 0; | 484 | return 0; | 
| 486 | } | 485 | } | 
| @@ -550,7 +549,7 @@ static const struct export_operations nilfs_export_ops = { | |||
| 550 | enum { | 549 | enum { | 
| 551 | Opt_err_cont, Opt_err_panic, Opt_err_ro, | 550 | Opt_err_cont, Opt_err_panic, Opt_err_ro, | 
| 552 | Opt_nobarrier, Opt_snapshot, Opt_order, Opt_norecovery, | 551 | Opt_nobarrier, Opt_snapshot, Opt_order, Opt_norecovery, | 
| 553 | Opt_err, | 552 | Opt_discard, Opt_err, | 
| 554 | }; | 553 | }; | 
| 555 | 554 | ||
| 556 | static match_table_t tokens = { | 555 | static match_table_t tokens = { | 
| @@ -561,6 +560,7 @@ static match_table_t tokens = { | |||
| 561 | {Opt_snapshot, "cp=%u"}, | 560 | {Opt_snapshot, "cp=%u"}, | 
| 562 | {Opt_order, "order=%s"}, | 561 | {Opt_order, "order=%s"}, | 
| 563 | {Opt_norecovery, "norecovery"}, | 562 | {Opt_norecovery, "norecovery"}, | 
| 563 | {Opt_discard, "discard"}, | ||
| 564 | {Opt_err, NULL} | 564 | {Opt_err, NULL} | 
| 565 | }; | 565 | }; | 
| 566 | 566 | ||
| @@ -614,6 +614,9 @@ static int parse_options(char *options, struct super_block *sb) | |||
| 614 | case Opt_norecovery: | 614 | case Opt_norecovery: | 
| 615 | nilfs_set_opt(sbi, NORECOVERY); | 615 | nilfs_set_opt(sbi, NORECOVERY); | 
| 616 | break; | 616 | break; | 
| 617 | case Opt_discard: | ||
| 618 | nilfs_set_opt(sbi, DISCARD); | ||
| 619 | break; | ||
| 617 | default: | 620 | default: | 
| 618 | printk(KERN_ERR | 621 | printk(KERN_ERR | 
| 619 | "NILFS: Unrecognized mount option \"%s\"\n", p); | 622 | "NILFS: Unrecognized mount option \"%s\"\n", p); | 
| @@ -863,7 +866,7 @@ static int nilfs_remount(struct super_block *sb, int *flags, char *data) | |||
| 863 | if ((*flags & MS_RDONLY) && | 866 | if ((*flags & MS_RDONLY) && | 
| 864 | sbi->s_snapshot_cno != old_opts.snapshot_cno) { | 867 | sbi->s_snapshot_cno != old_opts.snapshot_cno) { | 
| 865 | printk(KERN_WARNING "NILFS (device %s): couldn't " | 868 | printk(KERN_WARNING "NILFS (device %s): couldn't " | 
| 866 | "remount to a different snapshot. \n", | 869 | "remount to a different snapshot.\n", | 
| 867 | sb->s_id); | 870 | sb->s_id); | 
| 868 | err = -EINVAL; | 871 | err = -EINVAL; | 
| 869 | goto restore_opts; | 872 | goto restore_opts; | 
