simple-test: create journal with 4k block size

This must avoid next error:
[    6.694339] Journal device is: unknown-block(7,0)
[    6.695620] JBD2: no valid journal superblock found
This commit is contained in:
Azat Khuzhin 2014-09-18 02:37:38 +04:00
parent 3384ede4bd
commit 7023aebf18
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ test_journal_dev=""
function create_journal()
{
dd bs=1M count=10 if=/dev/zero of="$1"
mke2fs -O journal_dev "$1"
mke2fs -b 4096 -O journal_dev "$1"
}
function create_test_image()
{