Rakesh Pandit
2014-Mar-12 13:43 UTC
[PATCH] Btrfs-progs: mkfs: let user known when forcing mixed metadata/data groups
While formatting multiple devics (and user doesn't specify -M) if one
of them has block count or size less then 1 GiB, mkfs doesn't tell
user, on which one mixed metadata/data was forced. This patch updates
message to print device name.
Signed-off-by: Rakesh Pandit <rakesh@tuxera.com>
---
mkfs.c | 3 ++-
utils.c | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/mkfs.c b/mkfs.c
index 2dc90c2..621c869 100644
--- a/mkfs.c
+++ b/mkfs.c
@@ -1372,7 +1372,8 @@ int main(int ac, char **av)
ssd = is_ssd(file);
if (is_vol_small(file)) {
- printf("SMALL VOLUME: forcing mixed metadata/data groups\n");
+ printf("SMALL VOLUME %s: forcing mixed metadata/data groups\n",
+ file);
mixed = 1;
}
diff --git a/utils.c b/utils.c
index 37ec6e5..00dde0f 100644
--- a/utils.c
+++ b/utils.c
@@ -597,7 +597,7 @@ int btrfs_prepare_device(int fd, char *file, int zero_end,
u64 *block_count_ret,
zero_end = 1;
if (block_count < 1024 * 1024 * 1024 && !(*mixed)) {
- printf("SMALL VOLUME: forcing mixed metadata/data groups\n");
+ printf("SMALL VOLUME %s: forcing mixed metadata/data groups\n",
file);
*mixed = 1;
}
--
1.8.5.3
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs"
in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html