mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-05-05 16:32:44 +03:00

OpenZFS 7252 - compressed zfs send / receive OpenZFS 7628 - create long versions of ZFS send / receive options Authored by: Dan Kimmel <dan.kimmel@delphix.com> Reviewed by: George Wilson <george.wilson@delphix.com> Reviewed by: John Kennedy <john.kennedy@delphix.com> Reviewed by: Matthew Ahrens <mahrens@delphix.com> Reviewed by: Paul Dagnelie <pcd@delphix.com> Reviewed by: Pavel Zakharov <pavel.zakharov@delphix.com> Reviewed by: Sebastien Roy <sebastien.roy@delphix.com> Reviewed by: David Quigley <dpquigl@davequigley.com> Reviewed by: Thomas Caputi <tcaputi@datto.com> Approved by: Dan McDonald <danmcd@omniti.com> Reviewed by: David Quigley <dpquigl@davequigley.com> Reviewed-by: loli10K <ezomori.nozomu@gmail.com> Ported-by: bunder2015 <omfgbunder@gmail.com> Ported-by: Don Brady <don.brady@intel.com> Ported-by: Brian Behlendorf <behlendorf1@llnl.gov> Porting Notes: - Most of 7252 was already picked up during ABD work. This commit represents the gap from the final commit to openzfs. - Fixed split_large_blocks check in do_dump() - An alternate version of the write_compressible() function was implemented for Linux which does not depend on fio. The behavior of fio differs significantly based on the exact version. - mkholes was replaced with truncate for Linux. OpenZFS-issue: https://www.illumos.org/issues/7252 OpenZFS-commit: https://github.com/openzfs/openzfs/commit/5602294 Closes #6067
68 lines
1.8 KiB
Bash
Executable File
68 lines
1.8 KiB
Bash
Executable File
#!/bin/ksh -p
|
|
|
|
#
|
|
# This file and its contents are supplied under the terms of the
|
|
# Common Development and Distribution License ("CDDL"), version 1.0.
|
|
# You may only use this file in accordance with the terms of version
|
|
# 1.0 of the CDDL.
|
|
#
|
|
# A full copy of the text of the CDDL should have accompanied this
|
|
# source. A copy of the CDDL is also available via the Internet at
|
|
# http://www.illumos.org/license/CDDL.
|
|
#
|
|
|
|
#
|
|
# Copyright (c) 2015 by Delphix. All rights reserved.
|
|
#
|
|
|
|
. $STF_SUITE/tests/functional/rsend/rsend.kshlib
|
|
. $STF_SUITE/include/properties.shlib
|
|
|
|
#
|
|
# Description:
|
|
# Verify compressed send streams can still preserve properties
|
|
#
|
|
# Strategy:
|
|
# 1. Randomly modify the properties in the src pool
|
|
# 2. Send a full compressed stream with -p to preserve properties
|
|
# 3. Verify all the received properties match the source datasets
|
|
# 4. Repeat the process with -R instead of -p
|
|
#
|
|
|
|
verify_runnable "global"
|
|
|
|
function cleanup
|
|
{
|
|
destroy_pool $POOL
|
|
destroy_pool $POOL2
|
|
log_must zpool create $POOL $DISK1
|
|
log_must zpool create $POOL2 $DISK2
|
|
log_must setup_test_model $POOL
|
|
}
|
|
|
|
log_assert "Compressed send doesn't interfere with preservation of properties"
|
|
log_onexit cleanup
|
|
|
|
typeset -a datasets=("" "/pclone" "/$FS" "/$FS/fs1" "/$FS/fs1/fs2"
|
|
"/$FS/fs1/fclone" "/vol" "/$FS/vol")
|
|
|
|
typeset ds
|
|
for opt in "-p" "-R"; do
|
|
for ds in ${datasets[@]}; do
|
|
randomize_ds_props $POOL$ds
|
|
done
|
|
|
|
log_must eval "zfs send -c $opt $POOL@final > $BACKDIR/pool-final$opt"
|
|
log_must eval "zfs receive -d -F $POOL2 < $BACKDIR/pool-final$opt"
|
|
|
|
for ds in ${datasets[@]}; do
|
|
log_must cmp_ds_prop $POOL$ds $POOL2$ds
|
|
log_must cmp_ds_prop $POOL$ds@final $POOL2$ds@final
|
|
done
|
|
|
|
# Don't cleanup the second time, since we do that on exit anyway.
|
|
[[ $opt = "-p" ]] && cleanup
|
|
done
|
|
|
|
log_pass "Compressed send doesn't interfere with preservation of properties"
|