diff options
author | Giuseppe Di Natale <[email protected]> | 2017-04-06 08:25:47 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-04-10 10:24:17 -0700 |
commit | 42db43e982a243342a38e13f513513bb164d45e3 (patch) | |
tree | 9e7ca999d5cdbd30dbf04f4f610d7ee4c7c37cb8 /module | |
parent | a8d6ae1e16b253ac2bdb362b9a76945627faa7db (diff) |
OpenZFS 2932 - support crash dumps to raidz, etc. pools
Authored by: Bill Pijewski <[email protected]>
Reviewed by: Jerry Jelinek <[email protected]>
Reviewed by: Matthew Ahrens <[email protected]>
Approved by: Dan McDonald <[email protected]>
Reviewed-by: George Melikov <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Ported-by: Giuseppe Di Natale <[email protected]>
OpenZFS-issue: https://www.illumos.org/issues/2932
OpenZFS-commit: https://github.com/openzfs/openzfs/commit/810e43b
Closes #5984
Closes #5216
Diffstat (limited to 'module')
-rw-r--r-- | module/zfs/zfeature_common.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/module/zfs/zfeature_common.c b/module/zfs/zfeature_common.c index 768b77843..73abcb236 100644 --- a/module/zfs/zfeature_common.c +++ b/module/zfs/zfeature_common.c @@ -22,6 +22,7 @@ /* * Copyright (c) 2011, 2015 by Delphix. All rights reserved. * Copyright (c) 2013 by Saso Kiselkov. All rights reserved. + * Copyright (c) 2013, Joyent, Inc. All rights reserved. * Copyright (c) 2014, Nexenta Systems, Inc. All rights reserved. */ @@ -192,6 +193,11 @@ zpool_feature_init(void) "LZ4 compression algorithm support.", ZFEATURE_FLAG_ACTIVATE_ON_ENABLE, NULL); + zfeature_register(SPA_FEATURE_MULTI_VDEV_CRASH_DUMP, + "com.joyent:multi_vdev_crash_dump", "multi_vdev_crash_dump", + "Crash dumps to multiple vdev pools.", + 0, NULL); + zfeature_register(SPA_FEATURE_SPACEMAP_HISTOGRAM, "com.delphix:spacemap_histogram", "spacemap_histogram", "Spacemaps maintain space histograms.", |