summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/super.c
diff options
context:
space:
mode:
authorOmar Sandoval2015-05-18 11:16:31 +0200
committerChris Mason2015-06-03 13:03:02 +0200
commitc8d3fe028f64054d75c72566efb9ecf3c75ee161 (patch)
tree1803c740b33b7b14234235b4f142476d2df9bf10 /fs/btrfs/super.c
parentBtrfs: unify subvol= and subvolid= mounting (diff)
downloadkernel-qcow2-linux-c8d3fe028f64054d75c72566efb9ecf3c75ee161.tar.gz
kernel-qcow2-linux-c8d3fe028f64054d75c72566efb9ecf3c75ee161.tar.xz
kernel-qcow2-linux-c8d3fe028f64054d75c72566efb9ecf3c75ee161.zip
Btrfs: show subvol= and subvolid= in /proc/mounts
Now that we're guaranteed to have a meaningful root dentry, we can just export seq_dentry() and use it in btrfs_show_options(). The subvolume ID is easy to get and can also be useful, so put that in there, too. Reviewed-by: David Sterba <dsterba@suse.cz> Signed-off-by: Omar Sandoval <osandov@osandov.com> Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'fs/btrfs/super.c')
-rw-r--r--fs/btrfs/super.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c
index 6fa4aaf0543a..cd7ef34d2dce 100644
--- a/fs/btrfs/super.c
+++ b/fs/btrfs/super.c
@@ -1188,6 +1188,10 @@ static int btrfs_show_options(struct seq_file *seq, struct dentry *dentry)
seq_puts(seq, ",fatal_errors=panic");
if (info->commit_interval != BTRFS_DEFAULT_COMMIT_INTERVAL)
seq_printf(seq, ",commit=%d", info->commit_interval);
+ seq_printf(seq, ",subvolid=%llu",
+ BTRFS_I(d_inode(dentry))->root->root_key.objectid);
+ seq_puts(seq, ",subvol=");
+ seq_dentry(seq, dentry, " \t\n\\");
return 0;
}