mirror of
https://github.com/kdave/btrfs-progs
synced 2025-01-21 13:03:02 +00:00
cb10f56cb6
Mixed mode needs equal sectorsize and nodesize. This was fixed by "Btrfs-progs: Prevent creation of filesystem with 'mixed bgs' and having differing sectorsize and nodesize" Signed-off-by: David Sterba <dsterba@suse.com>
13 lines
226 B
Bash
Executable File
13 lines
226 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Mixed mode needs equal sectorsize and nodesize
|
|
|
|
source $TOP/tests/common
|
|
|
|
check_prereq mkfs.btrfs
|
|
|
|
run_check truncate -s 512M $IMAGE
|
|
run_mayfail $TOP/mkfs.btrfs -f -M -s 4096 -n 16384 "$IMAGE" && _fail
|
|
|
|
exit 0
|