diff options
author | Matthew Ahrens <[email protected]> | 2016-07-13 16:48:01 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-02-09 10:27:02 -0800 |
commit | d7958b4cda27b82bd24dd4d4b2a539e26c62a409 (patch) | |
tree | 7c18081445f41c5ade05f99c5c2479486da48d3e /scripts | |
parent | df7eeccc7597980efd3cb1efd9377ad5e0483042 (diff) |
OpenZFS 7104 - increase indirect block size
Authored by: Matthew Ahrens <[email protected]>
Reviewed by: George Wilson <[email protected]>
Reviewed by: Paul Dagnelie <[email protected]>
Reviewed by: Dan McDonald <[email protected]>
Approved by: Robert Mustacchi <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Ported-by: George Melikov <[email protected]>
OpenZFS-issue: https://www.illumos.org/issues/7104
OpenZFS-commit: https://github.com/openzfs/openzfs/commit/4b5c8e9
Closes #5679
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/zconfig.sh | 2 | ||||
-rwxr-xr-x | scripts/zfs-tests.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/scripts/zconfig.sh b/scripts/zconfig.sh index 45b66447f..e78c80d54 100755 --- a/scripts/zconfig.sh +++ b/scripts/zconfig.sh @@ -360,7 +360,7 @@ test_6() { # Create a pool and volume. ${ZFS_SH} zfs="spa_config_path=${TMP_CACHE}" || fail 1 ${ZPOOL_CREATE_SH} -p ${POOL_NAME} -c lo-raid0 || fail 2 - ${ZFS} create -V 800M ${FULL_ZVOL_NAME} || fail 3 + ${ZFS} create -s -V 800M ${FULL_ZVOL_NAME} || fail 3 ${ZFS} set snapdev=visible ${FULL_ZVOL_NAME} || fail 3 label /dev/zvol/${FULL_ZVOL_NAME} msdos || fail 4 partition /dev/zvol/${FULL_ZVOL_NAME} primary 1 -1 || fail 4 diff --git a/scripts/zfs-tests.sh b/scripts/zfs-tests.sh index 2e27c0a1c..00a7ceabc 100755 --- a/scripts/zfs-tests.sh +++ b/scripts/zfs-tests.sh @@ -39,7 +39,7 @@ QUIET= CLEANUP=1 CLEANUPALL=0 LOOPBACK=1 -FILESIZE="2G" +FILESIZE="4G" RUNFILE=${RUNFILE:-"linux.run"} FILEDIR=${FILEDIR:-/var/tmp} DISKS=${DISKS:-""} @@ -165,7 +165,7 @@ OPTIONS: -k Disable cleanup after test failure -f Use files only, disables block device tests -d DIR Use DIR for files and loopback devices - -s SIZE Use vdevs of SIZE (default: 2G) + -s SIZE Use vdevs of SIZE (default: 4G) -r RUNFILE Run tests in RUNFILE (default: linux.run) EXAMPLES: |