From 0758da29a6f0d41dd7243f329882252b8c6f7286 Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Sun, 9 Oct 2011 00:09:19 +0300 Subject: [PATCH] Btrfs-progs: make btrfs df report profiles for mixed block groups Profiles other than SINGLE for mixed chunks might sound a bit strange, but there is nothing in the filesystem that prevents a crazy user from doing it. So make "btrfs fi df" report them properly. Signed-off-by: Ilya Dryomov --- btrfs_cmds.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/btrfs_cmds.c b/btrfs_cmds.c index ecdae16..f2b6355 100644 --- a/btrfs_cmds.c +++ b/btrfs_cmds.c @@ -1083,9 +1083,9 @@ int do_df_filesystem(int nargs, char **argv) if (flags & BTRFS_BLOCK_GROUP_DATA) { if (flags & BTRFS_BLOCK_GROUP_METADATA) { - snprintf(description, 15, "%s", + snprintf(description, 14, "%s", "Data+Metadata"); - written += 14; + written += 13; } else { snprintf(description, 5, "%s", "Data"); written += 4; -- 2.7.4