aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/lsvfs
Commit message (Collapse)AuthorAgeFilesLines
* lsvfs(1): Add EXAMPLES sectionFernando Apesteguía2020-12-291-1/+17
| | | | | | | | | | | | | | | | | Add one simple exapmle and contrast some of the information using mount(8) PR: Submitted by: Reported by: Reviewed by: gbe@, yuripv@ Approved by: manpages (bcr@) Obtained from: MFC after: MFH: Relnotes: Security: Sponsored by: Differential Revision: https://reviews.freebsd.org/D27544
* DIRDEPS_BUILD: Update dependencies.Bryan Drewery2017-10-311-1/+0
| | | | | | | Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=325188
* Add META_MODE support.Simon J. Gerraty2015-06-131-0/+18
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp Notes: svn path=/head/; revision=284345
| * dirdeps.mk now sets DEP_RELDIRSimon J. Gerraty2015-06-081-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=284172
| * Updated dependenciesSimon J. Gerraty2014-05-161-1/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=266219
| * Updated dependenciesSimon J. Gerraty2014-05-101-0/+2
| | | | | | | | Notes: svn path=/projects/bmake/; revision=265802
| * Merge from headSimon J. Gerraty2013-09-052-37/+38
| |\ | |/ |/| | | Notes: svn path=/projects/bmake/; revision=255263
| * Updated dependenciesSimon J. Gerraty2013-03-111-0/+1
| | | | | | | | Notes: svn path=/projects/bmake/; revision=248169
| * Updated dependenciesSimon J. Gerraty2013-02-161-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=246868
| * Sync FreeBSD's bmake branch with Juniper's internal bmake branch.Marcel Moolenaar2012-08-221-0/+19
| | | | | | | | | | | | | | Requested by: Simon Gerraty <sjg@juniper.net> Notes: svn path=/projects/bmake/; revision=239572
* | - Add file system type number (vfc_typenum) in the list. This is usefulHiroki Sato2013-06-092-37/+38
|/ | | | | | | | | | for debugging when changing vfs.typenumhash configuration. - Refactor fmt_flags(). MFC after: 1 week Notes: svn path=/head/; revision=251580
* Build usr.bin/ with WARNS=6 by default.Ed Schouten2010-01-021-1/+0
| | | | | | | Also add some missing $FreeBSD$ to keep svn happy. Notes: svn path=/head/; revision=201386
* Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.Pawel Jakub Dawidek2008-11-171-35/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This bring huge amount of changes, I'll enumerate only user-visible changes: - Delegated Administration Allows regular users to perform ZFS operations, like file system creation, snapshot creation, etc. - L2ARC Level 2 cache for ZFS - allows to use additional disks for cache. Huge performance improvements mostly for random read of mostly static content. - slog Allow to use additional disks for ZFS Intent Log to speed up operations like fsync(2). - vfs.zfs.super_owner Allows regular users to perform privileged operations on files stored on ZFS file systems owned by him. Very careful with this one. - chflags(2) Not all the flags are supported. This still needs work. - ZFSBoot Support to boot off of ZFS pool. Not finished, AFAIK. Submitted by: dfr - Snapshot properties - New failure modes Before if write requested failed, system paniced. Now one can select from one of three failure modes: - panic - panic on write error - wait - wait for disk to reappear - continue - serve read requests if possible, block write requests - Refquota, refreservation properties Just quota and reservation properties, but don't count space consumed by children file systems, clones and snapshots. - Sparse volumes ZVOLs that don't reserve space in the pool. - External attributes Compatible with extattr(2). - NFSv4-ACLs Not sure about the status, might not be complete yet. Submitted by: trasz - Creation-time properties - Regression tests for zpool(8) command. Obtained from: OpenSolaris Notes: svn path=/head/; revision=185029
* Fix (uncritical) potential buffer overflow: the length of "buf" was notStefan Eßer2007-11-151-1/+1
| | | | | | | | extended when "jaiL" was added to fmt_flags(). MFC after: 1 week Notes: svn path=/head/; revision=173627
* Add security.jail.mount_allowed sysctl, which allows to mount andPawel Jakub Dawidek2007-04-051-0/+5
| | | | | | | | | | | | | | | | | | | | | unmount jail-friendly file systems from within a jail. Precisely it grants PRIV_VFS_MOUNT, PRIV_VFS_UNMOUNT and PRIV_VFS_MOUNT_NONUSER privileges for a jailed super-user. It is turned off by default. A jail-friendly file system is a file system which driver registers itself with VFCF_JAIL flag via VFS_SET(9) API. The lsvfs(1) command can be used to see which file systems are jail-friendly ones. There currently no jail-friendly file systems, ZFS will be the first one. In the future we may consider marking file systems like nullfs as jail-friendly. Reviewed by: rwatson Notes: svn path=/head/; revision=168396
* spell "file system" correctlyPhilippe Charnier2005-01-241-1/+1
| | | | | | | Approved by: ru Notes: svn path=/head/; revision=140760
* Mechanically kill hard sentence breaks.Ruslan Ermilov2004-07-021-2/+4
| | | | Notes: svn path=/head/; revision=131491
* Uniformly refer to a file system as "file system".Ruslan Ermilov2002-12-121-3/+3
| | | | | | | Approved by: re Notes: svn path=/head/; revision=107788
* Add #include <sys/sysctl.h>. In my tree, mount.h includesMaxime Henrion2002-08-111-0/+1
| | | | | | | | | sysctl.h and I was depending on this namespace pollution. Submitted by: jake Notes: svn path=/head/; revision=101661
* - Introduce a new struct xvfsconf, the userland version of struct vfsconf.Maxime Henrion2002-08-102-11/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | - Make getvfsbyname() take a struct xvfsconf *. - Convert several consumers of getvfsbyname() to use struct xvfsconf. - Correct the getvfsbyname.3 manpage. - Create a new vfs.conflist sysctl to dump all the struct xvfsconf in the kernel, and rewrite getvfsbyname() to use this instead of the weird existing API. - Convert some {set,get,end}vfsent() consumers to use the new vfs.conflist sysctl. - Convert a vfsload() call in nfsiod.c to kldload() and remove the useless vfsisloadable() and endvfsent() calls. - Add a warning printf() in vfs_sysctl() to tell people they are using an old userland. After these changes, it's possible to modify struct vfsconf without breaking the binary compatibility. Please note that these changes don't break this compatibility either. When bp will have updated mount_smbfs(8) with the patch I sent him, there will be no more consumers of the {set,get,end}vfsent(), vfsisloadable() and vfsload() API, and I will promptly delete it. Notes: svn path=/head/; revision=101651
* Consistently use FBSDIDDavid E. O'Brien2002-06-301-1/+3
| | | | Notes: svn path=/head/; revision=99112
* More consistancy. file system > filesystemTom Rhodes2002-05-161-1/+1
| | | | Notes: svn path=/head/; revision=96704
* Very minor whitespace nit.Mark Murray2002-04-281-0/+1
| | | | Notes: svn path=/head/; revision=95645
* Remove leaf node WARNS?=2 (that mainly I added). This shouldMark Murray2002-02-081-1/+0
| | | | | | | help the GCC3 transition and CURRENT in general. Notes: svn path=/head/; revision=90415
* Silence warning and set WARNS=2.Dima Dorfman2001-06-242-1/+2
| | | | | | | | Submitted by: Mike Barcroft <mike@q9media.com> Reviewed by: md5(1) Notes: svn path=/head/; revision=78716
* mdoc(7) police: use the new features of the Nm macro.Ruslan Ermilov2000-11-201-1/+1
| | | | Notes: svn path=/head/; revision=68963
* .Nm changesPhilippe Charnier2000-03-261-5/+4
| | | | Notes: svn path=/head/; revision=58611
* $Id$ -> $FreeBSD$Peter Wemm1999-08-283-3/+3
| | | | Notes: svn path=/head/; revision=50477
* getvfsbyname() returns zero on success.Ruslan Ermilov1999-06-031-2/+2
| | | | | | | | PR: 12000 Submitted by: Anatoly A. Orehovsky <tolik@mpeks.tomsk.su> Notes: svn path=/head/; revision=47701
* Fixed anachronisms (nuked vfs type number; don't give a 1/6-baked listBruce Evans1998-08-292-18/+13
| | | | | | | of vfs flags in the man page). Notes: svn path=/head/; revision=38619
* Started getting rid of the compatibility cruft for the Lite1 mount()Bruce Evans1998-01-171-9/+11
| | | | | | | | | | | and the pre-Lite2 vfsconf interfaces. For lsvfs, use the new interface for getvfsbyname(), and use the old interface for getvfsent() explicitly instead of depending on macro hacks in <sys/mount.h>. This is an intermediate step. Notes: svn path=/head/; revision=32593
* Typo.Philippe Charnier1997-07-231-2/+2
| | | | Notes: svn path=/head/; revision=27624
* Added missing #include, cleaned up #includes.Bruce Evans1997-03-031-5/+11
| | | | | | | Print VFCF_UNICODE flag in the unlikely event that it is set. Notes: svn path=/head/; revision=23350
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-223-3/+3
| | | | Notes: svn path=/head/; revision=23012
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-143-3/+3
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* Fix a bunch of spelling errors in a bunch of man pages.Mike Pritchard1996-01-301-2/+2
| | | | Notes: svn path=/head/; revision=13744
* Fix bonehead formatting error.Garrett Wollman1995-03-161-2/+2
| | | | Notes: svn path=/head/; revision=7097
* Print out the new flags.Garrett Wollman1995-03-161-2/+35
| | | | Notes: svn path=/head/; revision=7096
* Print out flags as text rather than a number.Garrett Wollman1995-03-162-7/+19
| | | | Notes: svn path=/head/; revision=7094
* Fix compilation error and formatting mistake.Garrett Wollman1994-09-221-2/+2
| | | | Notes: svn path=/head/; revision=2984
* Added lsvfs command to show loaded VFS modules (including statically-linkedGarrett Wollman1994-09-223-0/+107
ones). Notes: svn path=/head/; revision=2965