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.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/nilfs2/super.c b/fs/nilfs2/super.c
index 9da12211aac1..6a11243ebc51 100644
--- a/fs/nilfs2/super.c
+++ b/fs/nilfs2/super.c
@@ -521,20 +521,20 @@ static int nilfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
521 struct nilfs_sb_info *sbi = NILFS_SB(sb); 521 struct nilfs_sb_info *sbi = NILFS_SB(sb);
522 522
523 if (!nilfs_test_opt(sbi, BARRIER)) 523 if (!nilfs_test_opt(sbi, BARRIER))
524 seq_printf(seq, ",nobarrier"); 524 seq_puts(seq, ",nobarrier");
525 if (nilfs_test_opt(sbi, SNAPSHOT)) 525 if (nilfs_test_opt(sbi, SNAPSHOT))
526 seq_printf(seq, ",cp=%llu", 526 seq_printf(seq, ",cp=%llu",
527 (unsigned long long int)sbi->s_snapshot_cno); 527 (unsigned long long int)sbi->s_snapshot_cno);
528 if (nilfs_test_opt(sbi, ERRORS_PANIC)) 528 if (nilfs_test_opt(sbi, ERRORS_PANIC))
529 seq_printf(seq, ",errors=panic"); 529 seq_puts(seq, ",errors=panic");
530 if (nilfs_test_opt(sbi, ERRORS_CONT)) 530 if (nilfs_test_opt(sbi, ERRORS_CONT))
531 seq_printf(seq, ",errors=continue"); 531 seq_puts(seq, ",errors=continue");
532 if (nilfs_test_opt(sbi, STRICT_ORDER)) 532 if (nilfs_test_opt(sbi, STRICT_ORDER))
533 seq_printf(seq, ",order=strict"); 533 seq_puts(seq, ",order=strict");
534 if (nilfs_test_opt(sbi, NORECOVERY)) 534 if (nilfs_test_opt(sbi, NORECOVERY))
535 seq_printf(seq, ",norecovery"); 535 seq_puts(seq, ",norecovery");
536 if (nilfs_test_opt(sbi, DISCARD)) 536 if (nilfs_test_opt(sbi, DISCARD))
537 seq_printf(seq, ",discard"); 537 seq_puts(seq, ",discard");
538 538
539 return 0; 539 return 0;
540} 540}