From: Eric Sandeen <sandeen@redhat.com>
To: Adam Huffman <bloch@verdurin.com>
Cc: linux-ext4@vger.kernel.org
Subject: Re: Problem with 15TB logical volume
Date: Thu, 12 Aug 2010 09:43:29 -0400 [thread overview]
Message-ID: <4C63FA81.8060306@redhat.com> (raw)
In-Reply-To: <20100812091635.GC2699@asrockhome.verdurin.salon>
Adam Huffman wrote:
> Hope it's okay to send "user problems" here.
Sure, that's fine.
> I've made a 15TB logical volume on a 21TB RAID6 iSCSI array.
>
> When I try to make an ext4 filesystem I see the following error:
>
> mke4fs -E stride=32 stripe-width=384 -i 65536 -j -v \
> /dev/mapper/vg2md3000isata-homes2
>
> mke4fs 1.41.9 (22-Aug-2009)
> mke4fs: invalid blocks count - /dev/mapper/vg2md3000isata-homes2
You're not specifying the -E options correctly:
[root@host e2fsprogs]# misc/mke2fs.static -t ext4 -E stride=32 stripe-width=384 /mnt/test2/testdir/bigfile
mke2fs 1.41.12 (17-May-2010)
mke2fs.static: invalid blocks count - /mnt/test2/testdir/bigfile
This works - you need comma-separated -E options:
[root@host e2fsprogs]# mke4fs -E stride=32,stripe-width=384 /mnt/test2/testdir/bigfile
mke4fs 1.41.12 (17-May-2010)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=32 blocks, Stripe width=384 blocks
1006632960 inodes, 4026531840 blocks
...
Without the comma, mkfs thinks you are trying to mkfs a device called
"stripe-width=384" with a block count of "<devicename>"
Odd eh ;)
Perhaps echoing back the blocks count which it found to be invalid
(in this case the devicename string) would make the failure more
obvious...
> When i searched briefly yesterday, some documentation stated that the
> filesystem limit was now 16TB, and some that the limit was much higher.
Yep that should work.
-Eric
> The system is running Centos 5.5, e4fsprogs-1.41.9-3.el5.
next prev parent reply other threads:[~2010-08-12 13:43 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-12 9:16 Problem with 15TB logical volume Adam Huffman
2010-08-12 13:43 ` Eric Sandeen [this message]
2010-08-12 13:59 ` Eric Sandeen
2010-08-12 14:51 ` Adam Huffman
2010-08-12 15:14 ` Eric Sandeen
2010-08-12 17:44 ` Andreas Dilger
2010-08-12 18:24 ` Eric Sandeen
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=4C63FA81.8060306@redhat.com \
--to=sandeen@redhat.com \
--cc=bloch@verdurin.com \
--cc=linux-ext4@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.