diff options
author | Jerry Jelinek <jerry.jelinek@joyent.com> | 2015-01-07 13:03:45 +0000 |
---|---|---|
committer | Jerry Jelinek <jerry.jelinek@joyent.com> | 2015-01-07 13:03:45 +0000 |
commit | 360d81ba7f68f05c3c7101fce818b638a62ce8ad (patch) | |
tree | 518f5a42c0126cfe6a350da1c056fccd793b86a5 /usr/src/man | |
parent | eb9873bb7b9650b2e1eb9db5b52eb6d2345c9392 (diff) | |
parent | 5ff8cfa92ec8ea0f8593ad21aa2a04829b0ef5ea (diff) | |
download | illumos-joyent-release-20150108.tar.gz |
[illumos-gate merge]20150108release-20150108
commit 5ff8cfa92ec8ea0f8593ad21aa2a04829b0ef5ea
5410 Document -S option to zfs inherit
5412 Mention -S option when zfs inherit fails on quota
commit bc9014e6a81272073b9854d9f65dd59e18d18c35
5056 ZFS deadlock on db_mtx and dn_holds
Diffstat (limited to 'usr/src/man')
-rw-r--r-- | usr/src/man/man1m/zfs.1m | 40 |
1 files changed, 31 insertions, 9 deletions
diff --git a/usr/src/man/man1m/zfs.1m b/usr/src/man/man1m/zfs.1m index 4e486bfb2b..07ba0224e8 100644 --- a/usr/src/man/man1m/zfs.1m +++ b/usr/src/man/man1m/zfs.1m @@ -119,7 +119,7 @@ zfs \- configures ZFS file systems .LP .nf -\fBzfs\fR \fBinherit\fR [\fB-r\fR] \fIproperty\fR \fIfilesystem\fR|\fIvolume|snapshot\fR... +\fBzfs\fR \fBinherit\fR [\fB-rS\fR] \fIproperty\fR \fIfilesystem\fR|\fIvolume|snapshot\fR... .fi .LP @@ -2429,7 +2429,7 @@ property, the following columns are displayed: property Property name value Property value source Property source. Can either be local, default, - temporary, inherited, or none (-). + temporary, inherited, received, or none (-). .fi .in -2 .sp @@ -2494,8 +2494,8 @@ is the default value. .RS 4n A comma-separated list of sources to display. Those properties coming from a source other than those in this list are ignored. Each source must be one of -the following: \fBlocal,default,inherited,temporary,none\fR. The default value -is all sources. +the following: \fBlocal,default,inherited,received,temporary,none\fR. The +default value is all sources. .RE .sp @@ -2526,15 +2526,16 @@ volume's size and block size. .sp .ne 2 .na -\fB\fBzfs inherit\fR [\fB-r\fR] \fIproperty\fR +\fB\fBzfs inherit\fR [\fB-rS\fR] \fIproperty\fR \fIfilesystem\fR|\fIvolume\fR|\fIsnapshot\fR...\fR .ad .sp .6 .RS 4n -Clears the specified property, causing it to be inherited from an ancestor. If -no ancestor has the property set, then the default value is used. See the -"Properties" section for a listing of default values, and details on which -properties can be inherited. +Clears the specified property, causing it to be inherited from an ancestor, +restored to default if no ancestor has the property set, or with the \fB-S\fR +option reverted to the received value if one exists. See the "Properties" +section for a listing of default values, and details on which properties can be +inherited. .sp .ne 2 .na @@ -2544,6 +2545,16 @@ properties can be inherited. .RS 4n Recursively inherit the given property for all children. .RE +.sp +.ne 2 +.na +\fB\fB-S\fR\fR +.ad +.sp .6 +.RS 4n +Revert the property to the received value if one exists; otherwise operate as +if the \fB-S\fR option was not specified. +.RE .RE @@ -3931,6 +3942,17 @@ inherit the \fBchecksum\fR property from their parent. .fi .in -2 .sp +.LP +The following command causes \fBpool/home/bob\fR to revert to the received +value for the \fBquota\fR property if it exists. + +.sp +.in +2 +.nf +# \fBzfs inherit -S quota pool/home/bob +.fi +.in -2 +.sp .LP \fBExample 12 \fRRemotely Replicating ZFS Data |