aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/nfsstat
Commit message (Collapse)AuthorAgeFilesLines
* Replace /kernel with /boot/kernel/kernel.Josef Karthauser2002-05-091-3/+3
| | | | | | | | PR: docs/37757 Submitted by: Hiten Pandya <hiten@uk.FreeBSD.org> Notes: svn path=/head/; revision=96247
* remove __PWarner Losh2002-03-221-6/+6
| | | | Notes: svn path=/head/; revision=92921
* Style improvements recommended by Bruce as a follow up to someDavid Malone2001-12-101-1/+1
| | | | | | | | | | | of the recent WARNS commits. The idea is: 1) FreeBSD id tags should follow vendor tags. 2) Vendor tags should not be compiled (though copyrights probably should). 3) There should be no blank line between including cdefs and __FBSDIF. Notes: svn path=/head/; revision=87628
* Userland part of nfs client/server split and cleanup.Peter Wemm2001-09-181-87/+106
| | | | Notes: svn path=/head/; revision=83653
* mdoc(7) police: removed HISTORY info from the .Os call.Ruslan Ermilov2001-07-101-1/+1
| | | | Notes: svn path=/head/; revision=79535
* Fix the error buffer passed to kvm_openfiles to have a correct lengthThomas Moestl2001-05-251-1/+2
| | | | | | | | | of _POSIX2_LINE_MAX. MFC after: 3 days Notes: svn path=/head/; revision=77207
* Take setgid kmem away from nfsstat, it has not needed it for some timeThomas Moestl2001-03-222-7/+1
| | | | | | | | | now. Approved by: rwatson Notes: svn path=/head/; revision=74655
* getopt and friends are declared in <unistd.h>Warner Losh2000-09-041-2/+0
| | | | | | | getopt returns -1 not EOF. Notes: svn path=/head/; revision=65428
* Rev 1.9 did not follow style(9) in ordering.David E. O'Brien1999-12-161-7/+5
| | | | Notes: svn path=/head/; revision=54675
* Options added in rev 1.14 were not documented in usage().David E. O'Brien1999-12-161-1/+1
| | | | Notes: svn path=/head/; revision=54674
* Add -c, -s, and -W options to nfsstat. Improve interval output and addMatthew Dillon1999-10-252-192/+276
| | | | | | | | | | | | | | wide-format option to get client-side ops and cache statistics on a single line. Change client side ops to the number of attempted ops, whether cached or not, rather then just the number of rpc's that went through to the server. This brings nfsstat inline with systat -vm and vmstat and reduces confusion. The combined cache percentage stats now available via 'nfsstat -cW 1' becomes very useful. Notes: svn path=/head/; revision=52493
* $Id$ -> $FreeBSD$Peter Wemm1999-08-282-2/+2
| | | | Notes: svn path=/head/; revision=50477
* Backout out previous commit. The bug was in the kernel.Bruce Evans1998-10-251-2/+9
| | | | Notes: svn path=/head/; revision=40638
* Use sysctlbyname() to locate the vfs.nfs.nfsstats node.Mike Smith1998-10-241-9/+2
| | | | | | | Submitted by: Daniel Rock <rock@cs.uni-sb.de> Notes: svn path=/head/; revision=40627
* Merged from Lite2. This was mostly already done, mostly indirectlyBruce Evans1998-01-201-5/+9
| | | | | | | | | | via wollman's changes in rev.1.2 being adopted by Lite2 and the nfsv3 changes in rev.1.3 being adopted by both FreeBSD and Lite2. We were only missing lookup of the type number for nfs (MOUNT_NFS doesn't exist in Lite2). Notes: svn path=/head/; revision=32649
* ``appears'' -> ``appeared'' (closes PR#3393, Submitted-by: Josh Gilliam)John-Mark Gurney1997-04-271-6/+7
| | | | | | | | add missing Id's other minor clean ups Notes: svn path=/head/; revision=25189
* compare return value from getopt against -1 rather than EOF, per the finalWarner Losh1997-03-291-2/+2
| | | | | | | posix standard on the topic. Notes: svn path=/head/; revision=24360
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-222-2/+2
| | | | Notes: svn path=/head/; revision=23012
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-142-2/+2
| | | | | | | | | | | 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
* From Lite2: rename fs to vfs.Jeffrey Hsu1996-03-111-2/+2
| | | | Notes: svn path=/head/; revision=14516
* Fix a variety of minor typos and cross references in a bunch ofMike Pritchard1996-01-201-2/+2
| | | | | | | | | | | man pages. Masanobu Saitoh <msaitoh@spa.is.uec.ac.jp> Giles Lean <giles@nemeton.com.au> <soda@sra.co.jp> Notes: svn path=/head/; revision=13511
* <sys/user.h> -> <sys/time.h>Poul-Henning Kamp1995-10-301-2/+2
| | | | | | | Spotted by: bde Notes: svn path=/head/; revision=11936
* #include <sys/user.h>Poul-Henning Kamp1995-10-291-1/+2
| | | | Notes: svn path=/head/; revision=11914
* Changes to support version 3 of the NFS protocol.Doug Rabson1995-06-271-32/+58
| | | | | | | | | | | | | | | | | | | | | The version 2 support has been tested (client+server) against FreeBSD-2.0, IRIX 5.3 and FreeBSD-current (using a loopback mount). The version 2 support is stable AFAIK. The version 3 support has been tested with a loopback mount and minimally against an IRIX 5.3 server. It needs more testing and may have problems. I have patched amd to support the new variable length filehandles although it will still only use version 2 of the protocol. Before booting a kernel with these changes, nfs clients will need to at least build and install /usr/sbin/mount_nfs. Servers will need to build and install /usr/sbin/mountd. NFS diskless support is untested. Obtained from: Rick Macklem <rick@snowhite.cis.uoguelph.ca> Notes: svn path=/head/; revision=9336
* Use new NFS sysctl interface to get statistics rather than reading /dev/kmem,Garrett Wollman1994-10-232-33/+53
| | | | | | | unless the user specifies a dead kernel to operate on. Notes: svn path=/head/; revision=3819
* Converted 'vmunix' to 'kernel'.David Greenman1994-08-051-2/+2
| | | | Notes: svn path=/head/; revision=1856
* BSD 4.4 Lite Usr.bin SourcesRodney W. Grimes1994-05-273-0/+458
Notes: svn path=/cvs2svn/branches/CHRISTOS/; revision=1590