summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorPaul Dagnelie <[email protected]>2021-06-24 12:42:01 -0700
committerBrian Behlendorf <[email protected]>2021-06-24 13:14:04 -0700
commit620389d32f6bd5676fd0797f2e3314793db6f1e2 (patch)
tree70d9cdcb20eace6507760ed3c293fc4f52c2318a /lib
parent5d7f47d8280d7eb6a61f9b9721c8d30e84c6f683 (diff)
Fix flag copying in resume case
A couple flags weren't being copied in the case where we're doing size estimation on a resume. Reviewed-by: Brian Behlendorf <[email protected]> Reviewed-by: Matthew Ahrens <[email protected]> Signed-off-by: Paul Dagnelie <[email protected]> Closes: #12266
Diffstat (limited to 'lib')
-rw-r--r--lib/libzfs/libzfs_sendrecv.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libzfs/libzfs_sendrecv.c b/lib/libzfs/libzfs_sendrecv.c
index 410c34888..5e7d06465 100644
--- a/lib/libzfs/libzfs_sendrecv.c
+++ b/lib/libzfs/libzfs_sendrecv.c
@@ -1743,6 +1743,10 @@ zfs_send_resume_impl(libzfs_handle_t *hdl, sendflags_t *flags, int outfd,
tmpflags.compress = B_TRUE;
if (lzc_flags & LZC_SEND_FLAG_EMBED_DATA)
tmpflags.embed_data = B_TRUE;
+ if (lzc_flags & LZC_SEND_FLAG_RAW)
+ tmpflags.raw = B_TRUE;
+ if (lzc_flags & LZC_SEND_FLAG_SAVED)
+ tmpflags.saved = B_TRUE;
error = estimate_size(zhp, fromname, outfd, &tmpflags,
resumeobj, resumeoff, bytes, redact_book, errbuf);
}