Force 4K blocksize when testing ext2 on zvol.
authorEtienne Dechamps <etienne.dechamps@ovh.net>
Thu, 20 Sep 2012 10:00:50 +0000 (12:00 +0200)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 3 Oct 2012 17:52:51 +0000 (10:52 -0700)
commit2f342404c157f130129784f2592eaadf0930beab
tree477810c1de92f1dc7865b930157fab2a3192e5a8
parent393b44c7112854fc11dc97885a87f666780cc9fe
Force 4K blocksize when testing ext2 on zvol.

Currently, mkfs.ext2 on zconfig.sh zvols tries to use a 8K blocksize,
probably because by default zvol exposes an optimal I/O size of 8K.

Unfortunately, a ext2 blocksize of 8K is not supported by the kernel,
so the resulting filesystem is unmountable.

This patch fixes the issue by making sure the blocksize is 4K. We have
to use -F to force it else mkfs.ext2 won't allow us to use a blocksize
smaller than the optimal I/O size.

Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #979
scripts/common.sh.in