From: Robin Dong <robin.k.dong@gmail.com>
To: linux-btrfs@vger.kernel.org
Cc: Robin Dong <sanbai@taobao.com>
Subject: [PATCH v3 2/2] btrfs-progs: limit the min value of total_bytes
Date: Mon, 8 Oct 2012 17:31:20 +0800 [thread overview]
Message-ID: <1349688680-28470-1-git-send-email-robin.k.dong@gmail.com> (raw)
From: Robin Dong <sanbai@taobao.com>
Using mkfs.btrfs like:
mkfs.btrfs -b 1048576 /dev/sda
will report error:
mkfs.btrfs: volumes.c:796: btrfs_alloc_chunk: Assertion `!(ret)' failed.
Aborted
because the length of dev_extent is 4MB.
For the single/single case it's 5MB but
for the dup/dup it's 156MB. It's due to the known bug in the blockgroup
creation with multiple devices (applies on dup as well here) that leads to:
# btrfs fi df .
System, DUP: total=8.00MB, used=4.00KB
System: total=4.00MB, used=0.00
Data+Metadata, DUP: total=64.00MB, used=24.00KB
Data+Metadata: total=8.00MB, used=0.00
8*2 + 4 + 64*2 + 8 = 156
Signed-off-by: Robin Dong <sanbai@taobao.com>
Reviewed-by: David Sterba <dave@jikos.cz>
---
mkfs.c | 7 ++++++-
utils.h | 1 +
2 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/mkfs.c b/mkfs.c
index 93672b9..982a113 100644
--- a/mkfs.c
+++ b/mkfs.c
@@ -1345,7 +1345,12 @@ int main(int ac, char **av)
&dev_block_count, &mixed, nodiscard);
if (block_count == 0)
block_count = dev_block_count;
- else if (block_count > dev_block_count) {
+ else if (block_count < BTRFS_MKFS_SYSTEM_MAX_SIZE) {
+ fprintf(stderr, "Illegal total number of bytes %u "
+ "(smaller than %u)\n",
+ block_count, BTRFS_MKFS_SYSTEM_MAX_SIZE);
+ exit(1);
+ } else if (block_count > dev_block_count) {
fprintf(stderr, "%s is smaller than requested size\n", file);
exit(1);
}
diff --git a/utils.h b/utils.h
index c147c12..b63f69a 100644
--- a/utils.h
+++ b/utils.h
@@ -20,6 +20,7 @@
#define __UTILS__
#define BTRFS_MKFS_SYSTEM_GROUP_SIZE (4 * 1024 * 1024)
+#define BTRFS_MKFS_SYSTEM_MAX_SIZE (156 * 1024 * 1024)
int make_btrfs(int fd, const char *device, const char *label,
u64 blocks[6], u64 num_bytes, u32 nodesize,
--
1.7.3.2
next reply other threads:[~2012-10-08 9:31 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-08 9:31 Robin Dong [this message]
-- strict thread matches above, loose matches on Subject: below --
2012-10-10 1:52 [PATCH v3 1/2] btrfs-progs: limit the max value of leafsize and nodesize Robin Dong
2012-10-10 1:52 ` [PATCH v3 2/2] btrfs-progs: limit the min value of total_bytes Robin Dong
2012-10-08 8:10 [PATCH v3 1/2] btrfs-progs: limit the max value of leafsize and nodesize Robin Dong
2012-10-08 8:10 ` [PATCH v3 2/2] btrfs-progs: limit the min value of total_bytes Robin Dong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1349688680-28470-1-git-send-email-robin.k.dong@gmail.com \
--to=robin.k.dong@gmail.com \
--cc=linux-btrfs@vger.kernel.org \
--cc=sanbai@taobao.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).