diff options
author | LOLi <[email protected]> | 2017-10-27 01:58:38 +0200 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-10-26 16:58:38 -0700 |
commit | ee45fbd89465f12b39e97173a088175d4b712b5f (patch) | |
tree | 811bc8bc132c6aef42e6d18f2a6ffde9abe20f7b /tests/runfiles | |
parent | 88f9c9396bcce596db56dc880260f95c49a51d67 (diff) |
ZFS send fails to dump objects larger than 128PiB
When dumping objects larger than 128PiB it's possible for do_dump() to
miscalculate the FREE_RECORD offset due to an integer overflow
condition: this prevents the receiving end from correctly restoring
the dumped object.
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Fabian Grünbichler <[email protected]>
Signed-off-by: loli10K <[email protected]>
Closes #6760
Diffstat (limited to 'tests/runfiles')
-rw-r--r-- | tests/runfiles/linux.run | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/runfiles/linux.run b/tests/runfiles/linux.run index 6edb2e1a0..19b093a7c 100644 --- a/tests/runfiles/linux.run +++ b/tests/runfiles/linux.run @@ -167,7 +167,8 @@ tests = ['zfs_rollback_001_pos', 'zfs_rollback_002_pos', [tests/functional/cli_root/zfs_send] tests = ['zfs_send_001_pos', 'zfs_send_002_pos', 'zfs_send_003_pos', 'zfs_send_004_neg', 'zfs_send_005_pos', 'zfs_send_006_pos', - 'zfs_send_007_pos', 'zfs_send_encrypted', 'zfs_send_raw'] + 'zfs_send_007_pos', 'zfs_send_encrypted', 'zfs_send_raw', + 'zfs_send_sparse'] [tests/functional/cli_root/zfs_set] tests = ['cache_001_pos', 'cache_002_neg', 'canmount_001_pos', |