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:
parent
3384ede4bd
commit
7023aebf18
|
@ -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()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue