diff options
author | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2011-02-27 19:41:40 +0000 |
---|---|---|
committer | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2011-02-27 19:41:40 +0000 |
commit | 10b9d77bf1ccf2f3affafa6261692cb92cf7e992 (patch) | |
tree | ef515cadc08bf427e4d3f1360199ec9827b1596b /cddl/compat/opensolaris/misc/fsshare.c | |
parent | e02dd14a548a89bee6657d9eacb0f992bf61b280 (diff) | |
download | src-10b9d77bf1ccf2f3affafa6261692cb92cf7e992.tar.gz src-10b9d77bf1ccf2f3affafa6261692cb92cf7e992.zip |
Finally... Import the latest open-source ZFS version - (SPA) 28.
Few new things available from now on:
- Data deduplication.
- Triple parity RAIDZ (RAIDZ3).
- zfs diff.
- zpool split.
- Snapshot holds.
- zpool import -F. Allows to rewind corrupted pool to earlier
transaction group.
- Possibility to import pool in read-only mode.
MFC after: 1 month
Notes
Notes:
svn path=/head/; revision=219089
Diffstat (limited to 'cddl/compat/opensolaris/misc/fsshare.c')
-rw-r--r-- | cddl/compat/opensolaris/misc/fsshare.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/cddl/compat/opensolaris/misc/fsshare.c b/cddl/compat/opensolaris/misc/fsshare.c index 10ed591d5bca..e8faa928d6fb 100644 --- a/cddl/compat/opensolaris/misc/fsshare.c +++ b/cddl/compat/opensolaris/misc/fsshare.c @@ -28,15 +28,17 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> -#include <stdio.h> -#include <unistd.h> -#include <fcntl.h> -#include <string.h> + +#include <assert.h> #include <errno.h> +#include <fcntl.h> +#include <fsshare.h> #include <libutil.h> -#include <assert.h> #include <pathnames.h> /* _PATH_MOUNTDPID */ -#include <fsshare.h> +#include <signal.h> +#include <stdio.h> +#include <string.h> +#include <unistd.h> #define FILE_HEADER "# !!! DO NOT EDIT THIS FILE MANUALLY !!!\n\n" #define OPTSSIZE 1024 |