diff options
Diffstat (limited to 'fs/btrfs/super.c')
-rw-r--r-- | fs/btrfs/super.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 3559d0b3518a..5746081199ee 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c | |||
@@ -721,6 +721,12 @@ static int btrfs_show_options(struct seq_file *seq, struct vfsmount *vfs) | |||
721 | seq_puts(seq, ",clear_cache"); | 721 | seq_puts(seq, ",clear_cache"); |
722 | if (btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED)) | 722 | if (btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED)) |
723 | seq_puts(seq, ",user_subvol_rm_allowed"); | 723 | seq_puts(seq, ",user_subvol_rm_allowed"); |
724 | if (btrfs_test_opt(root, ENOSPC_DEBUG)) | ||
725 | seq_puts(seq, ",enospc_debug"); | ||
726 | if (btrfs_test_opt(root, AUTO_DEFRAG)) | ||
727 | seq_puts(seq, ",autodefrag"); | ||
728 | if (btrfs_test_opt(root, INODE_MAP_CACHE)) | ||
729 | seq_puts(seq, ",inode_cache"); | ||
724 | return 0; | 730 | return 0; |
725 | } | 731 | } |
726 | 732 | ||