Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 206347
b: refs/heads/master
c: c6b4d57
h: refs/heads/master
i:
  206345: 3591d4f
  206343: 0f83054
v: v3
  • Loading branch information
Ryusuke Konishi committed Jul 23, 2010
1 parent 1860682 commit e928fa3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 802d31775404ee335ca1e97a82e1e706a4c843be
refs/heads/master: c6b4d57ddf12f3fd4d41d7b3b9181de46748418d
12 changes: 6 additions & 6 deletions trunk/fs/nilfs2/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -521,20 +521,20 @@ static int nilfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
struct nilfs_sb_info *sbi = NILFS_SB(sb);

if (!nilfs_test_opt(sbi, BARRIER))
seq_printf(seq, ",nobarrier");
seq_puts(seq, ",nobarrier");
if (nilfs_test_opt(sbi, SNAPSHOT))
seq_printf(seq, ",cp=%llu",
(unsigned long long int)sbi->s_snapshot_cno);
if (nilfs_test_opt(sbi, ERRORS_PANIC))
seq_printf(seq, ",errors=panic");
seq_puts(seq, ",errors=panic");
if (nilfs_test_opt(sbi, ERRORS_CONT))
seq_printf(seq, ",errors=continue");
seq_puts(seq, ",errors=continue");
if (nilfs_test_opt(sbi, STRICT_ORDER))
seq_printf(seq, ",order=strict");
seq_puts(seq, ",order=strict");
if (nilfs_test_opt(sbi, NORECOVERY))
seq_printf(seq, ",norecovery");
seq_puts(seq, ",norecovery");
if (nilfs_test_opt(sbi, DISCARD))
seq_printf(seq, ",discard");
seq_puts(seq, ",discard");

return 0;
}
Expand Down

0 comments on commit e928fa3

Please sign in to comment.