mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 02:27:36 +03:00
Remove deduplicated send/receive code
Deduplicated send streams (i.e. `zfs send -D` and `zfs receive` of such streams) are deprecated. Deduplicated send streams can be received by first converting them to non-deduplicated with the `zstream redup` command. This commit removes the code for sending and receiving deduplicated send streams. `zfs send -D` will now print a warning, ignore the `-D` flag, and generate a regular (non-deduplicated) send stream. `zfs receive` of a deduplicated send stream will print an error message and fail. The resulting code simplification (especially in the kernel's support for receiving dedup streams) should help enable future performance enhancements. Several new tests are added which leverage `zstream redup`. Reviewed-by: Paul Dagnelie <pcd@delphix.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Matthew Ahrens <mahrens@delphix.com> Issue #7887 Issue #10117 Issue #10156 Closes #10212
This commit is contained in:
+7
-14
@@ -21,7 +21,7 @@
|
||||
|
||||
/*
|
||||
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2011, 2019 by Delphix. All rights reserved.
|
||||
* Copyright (c) 2011, 2020 by Delphix. All rights reserved.
|
||||
* Copyright 2012 Milan Jurik. All rights reserved.
|
||||
* Copyright (c) 2012, Joyent, Inc. All rights reserved.
|
||||
* Copyright (c) 2013 Steven Hartland. All rights reserved.
|
||||
@@ -4266,7 +4266,10 @@ zfs_do_send(int argc, char **argv)
|
||||
flags.progress = B_TRUE;
|
||||
break;
|
||||
case 'D':
|
||||
flags.dedup = B_TRUE;
|
||||
(void) fprintf(stderr,
|
||||
gettext("WARNING: deduplicated send is no "
|
||||
"longer supported. A regular,\n"
|
||||
"non-deduplicated stream will be generated.\n\n"));
|
||||
break;
|
||||
case 'n':
|
||||
flags.dryrun = B_TRUE;
|
||||
@@ -4333,16 +4336,6 @@ zfs_do_send(int argc, char **argv)
|
||||
}
|
||||
}
|
||||
|
||||
if (flags.dedup) {
|
||||
(void) fprintf(stderr,
|
||||
gettext("WARNING: deduplicated send is "
|
||||
"deprecated, and will be removed in a\n"
|
||||
"future release. (In the future, the flag will be "
|
||||
"accepted, but a\n"
|
||||
"regular, non-deduplicated stream will be "
|
||||
"generated.)\n\n"));
|
||||
}
|
||||
|
||||
if (flags.parsable && flags.verbosity == 0)
|
||||
flags.verbosity = 1;
|
||||
|
||||
@@ -4351,7 +4344,7 @@ zfs_do_send(int argc, char **argv)
|
||||
|
||||
if (resume_token != NULL) {
|
||||
if (fromname != NULL || flags.replicate || flags.props ||
|
||||
flags.backup || flags.dedup || flags.holds ||
|
||||
flags.backup || flags.holds ||
|
||||
flags.saved || redactbook != NULL) {
|
||||
(void) fprintf(stderr,
|
||||
gettext("invalid flags combined with -t\n"));
|
||||
@@ -4375,7 +4368,7 @@ zfs_do_send(int argc, char **argv)
|
||||
|
||||
if (flags.saved) {
|
||||
if (fromname != NULL || flags.replicate || flags.props ||
|
||||
flags.doall || flags.backup || flags.dedup ||
|
||||
flags.doall || flags.backup ||
|
||||
flags.holds || flags.largeblock || flags.embed_data ||
|
||||
flags.compress || flags.raw || redactbook != NULL) {
|
||||
(void) fprintf(stderr, gettext("incompatible flags "
|
||||
|
||||
Reference in New Issue
Block a user