diff options
author | Jerry Jelinek <jerry.jelinek@joyent.com> | 2013-06-24 19:43:25 +0000 |
---|---|---|
committer | Robert Mustacchi <rm@joyent.com> | 2014-03-28 14:59:49 -0700 |
commit | 8cd81a20c40b49e1fad4022a2774ec6ad5066532 (patch) | |
tree | 58f2d934d415c60ca40418b7d582b510fe287fda /usr/src/uts/common/fs/nfs/nfs_common.c | |
parent | 3878843a57bae7ad8da31ef4aaeed8388d2f534c (diff) | |
download | illumos-gate-8cd81a20c40b49e1fad4022a2774ec6ad5066532.tar.gz |
4662 need a way to disable default file systems in zones
Reviewed by: Dan McDonald <danmcd@omniti.com>
Reviewed by: Richard Lowe <richlowe@richlowe.net>
Approved by: Richard Lowe <richlowe@richlowe.net>
Diffstat (limited to 'usr/src/uts/common/fs/nfs/nfs_common.c')
-rw-r--r-- | usr/src/uts/common/fs/nfs/nfs_common.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr/src/uts/common/fs/nfs/nfs_common.c b/usr/src/uts/common/fs/nfs/nfs_common.c index 16a467e64c..6a3cb3d695 100644 --- a/usr/src/uts/common/fs/nfs/nfs_common.c +++ b/usr/src/uts/common/fs/nfs/nfs_common.c @@ -21,6 +21,7 @@ /* * Copyright (c) 1990, 2010, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2011 Bayard G. Bell. All rights reserved. + * Copyright 2013 Joyent, Inc. All rights reserved. */ /* @@ -123,7 +124,7 @@ static vfsdef_t vfw = { VFSDEF_VERSION, "nfsdyn", nfsdyninit, - VSW_ZMOUNT, + 0, NULL }; @@ -140,7 +141,7 @@ static vfsdef_t vfw2 = { VFSDEF_VERSION, "nfs", nfsinit, - VSW_CANREMOUNT|VSW_NOTZONESAFE|VSW_STATS|VSW_ZMOUNT, + VSW_CANREMOUNT|VSW_NOTZONESAFE|VSW_STATS, NULL }; @@ -157,7 +158,7 @@ static vfsdef_t vfw3 = { VFSDEF_VERSION, "nfs3", nfs3init, - VSW_CANREMOUNT|VSW_NOTZONESAFE|VSW_STATS|VSW_ZMOUNT, + VSW_CANREMOUNT|VSW_NOTZONESAFE|VSW_STATS, NULL }; |