diff options
author | attilio <attilio@FreeBSD.org> | 2012-10-16 09:59:10 +0000 |
---|---|---|
committer | attilio <attilio@FreeBSD.org> | 2012-10-16 09:59:10 +0000 |
commit | efcca33ac515c354e18135425794400ea32406a8 (patch) | |
tree | ade9f2ab0575d064e4d0632c53650470ddc16396 /sbin/mount | |
parent | 86c40ddfb934443151016d054ccb33321d4c11c5 (diff) | |
download | FreeBSD-src-efcca33ac515c354e18135425794400ea32406a8.zip FreeBSD-src-efcca33ac515c354e18135425794400ea32406a8.tar.gz |
Disconnect non-MPSAFE PORTALFS from the build in preparation for dropping
GIANT from VFS.
This is not targeted for MFC.
Diffstat (limited to 'sbin/mount')
-rw-r--r-- | sbin/mount/mount.8 | 2 | ||||
-rw-r--r-- | sbin/mount/mount.c | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/sbin/mount/mount.8 b/sbin/mount/mount.8 index c1ce669..fea0171 100644 --- a/sbin/mount/mount.8 +++ b/sbin/mount/mount.8 @@ -450,7 +450,6 @@ However, for the following file system types: .Cm nwfs , .Cm nullfs , .Cm oldnfs , -.Cm portalfs , .Cm smbfs , .Cm udf , and @@ -548,7 +547,6 @@ support for a particular file system might be provided either on a static .Xr mount_ntfs 8 , .Xr mount_nullfs 8 , .Xr mount_nwfs 8 , -.Xr mount_portalfs 8 , .Xr mount_smbfs 8 , .Xr mount_udf 8 , .Xr mount_unionfs 8 , diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index ca81795..63d53b0 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -143,7 +143,7 @@ use_mountprog(const char *vfstype) unsigned int i; const char *fs[] = { "cd9660", "mfs", "msdosfs", "nfs", "ntfs", - "nwfs", "nullfs", "oldnfs", "portalfs", "smbfs", "udf", "unionfs", + "nwfs", "nullfs", "oldnfs", "smbfs", "udf", "unionfs", NULL }; |