Deleted Added
full compact
zfeature_common.c (246586) zfeature_common.c (255750)
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 8 unchanged lines hidden (view full) ---

17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
22/*
23 * Copyright (c) 2012 by Delphix. All rights reserved.
24 * Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 8 unchanged lines hidden (view full) ---

17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
22/*
23 * Copyright (c) 2012 by Delphix. All rights reserved.
24 * Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
25 * Copyright (c) 2013, Joyent, Inc. All rights reserved.
25 */
26
27#ifdef _KERNEL
28#include <sys/systm.h>
29#else
30#include <errno.h>
31#include <string.h>
32#endif

--- 121 unchanged lines hidden (view full) ---

154 "com.delphix:async_destroy", "async_destroy",
155 "Destroy filesystems asynchronously.", B_TRUE, B_FALSE, NULL);
156 zfeature_register(SPA_FEATURE_EMPTY_BPOBJ,
157 "com.delphix:empty_bpobj", "empty_bpobj",
158 "Snapshots use less space.", B_TRUE, B_FALSE, NULL);
159 zfeature_register(SPA_FEATURE_LZ4_COMPRESS,
160 "org.illumos:lz4_compress", "lz4_compress",
161 "LZ4 compression algorithm support.", B_FALSE, B_FALSE, NULL);
26 */
27
28#ifdef _KERNEL
29#include <sys/systm.h>
30#else
31#include <errno.h>
32#include <string.h>
33#endif

--- 121 unchanged lines hidden (view full) ---

155 "com.delphix:async_destroy", "async_destroy",
156 "Destroy filesystems asynchronously.", B_TRUE, B_FALSE, NULL);
157 zfeature_register(SPA_FEATURE_EMPTY_BPOBJ,
158 "com.delphix:empty_bpobj", "empty_bpobj",
159 "Snapshots use less space.", B_TRUE, B_FALSE, NULL);
160 zfeature_register(SPA_FEATURE_LZ4_COMPRESS,
161 "org.illumos:lz4_compress", "lz4_compress",
162 "LZ4 compression algorithm support.", B_FALSE, B_FALSE, NULL);
163 zfeature_register(SPA_FEATURE_MULTI_VDEV_CRASH_DUMP,
164 "com.joyent:multi_vdev_crash_dump", "multi_vdev_crash_dump",
165 "Crash dumps to multiple vdev pools.", B_FALSE, B_FALSE, NULL);
162}
166}