Revision tags: release/2.1.7_cvs, release/2.1.6_cvs, release/2.1.6.1, release/2.1.5_cvs, release/2.1.0_cvs |
|
#
373efd48 |
| 01-Oct-1995 |
Peter Wemm <peter@FreeBSD.org> |
Catch the case where the children can die too soon causing wait3() to return ECHILD, which causes the while loop to run forever. (eg: when accidently running nfsiod on a slow system with a kernel wi
Catch the case where the children can die too soon causing wait3() to return ECHILD, which causes the while loop to run forever. (eg: when accidently running nfsiod on a slow system with a kernel without NFS support...) Obtained from: NetBSD; Frank van den Linden <frank@struis.fwi.uva.nl>
show more ...
|
#
a62dc406 |
| 27-Jun-1995 |
Doug Rabson <dfr@FreeBSD.org> |
Changes to support version 3 of the NFS protocol. 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 supp
Changes to support version 3 of the NFS protocol. 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>
show more ...
|
Revision tags: release/2.0.5_cvs, release/2.0 |
|
#
d599144d |
| 23-Sep-1994 |
Garrett Wollman <wollman@FreeBSD.org> |
Automatically load NFS and a bevy of other filesystems.
|
Revision tags: release/1.1.5.1_cvs |
|
#
8fae3551 |
| 26-May-1994 |
Rodney W. Grimes <rgrimes@FreeBSD.org> |
BSD 4.4 Lite sbin Sources
Note: XNSrouted and routed NOT imported here, they shall be imported with usr.sbin.
|
#
9199c09a |
| 06-Jan-2010 |
Warner Losh <imp@FreeBSD.org> |
Merge from head at r201628.
# This hasn't been tested, and there are at least three bad commits # that need to be backed out before the branch will be stable again.
|
#
48660452 |
| 26-Dec-2009 |
Ruslan Ermilov <ru@FreeBSD.org> |
- Display current settings when run without options. - Revise a manpage to NOT sound confusing. [1]
In collaboration with: sat [1]
|
Revision tags: release/8.0.0_cvs, release/8.0.0, release/7.2.0_cvs, release/7.2.0, release/7.1.0_cvs, release/7.1.0, release/6.4.0_cvs, release/6.4.0, release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0, release/6.2.0_cvs, release/6.2.0, release/5.5.0_cvs, release/5.5.0, release/6.1.0_cvs, release/6.1.0, release/6.0.0_cvs, release/6.0.0, release/5.4.0_cvs, release/5.4.0 |
|
#
39947932 |
| 07-Apr-2005 |
Brooks Davis <brooks@FreeBSD.org> |
When accessing the sysctl vfs.nfs.iodmax, don't report errors as being from accessing vfs.nfs.iodmin.
|
Revision tags: release/4.11.0_cvs, release/4.11.0, release/5.3.0_cvs, release/5.3.0, release/4.10.0_cvs, release/4.10.0 |
|
#
4c723140 |
| 09-Apr-2004 |
Mark Murray <markm@FreeBSD.org> |
Remove advertising clause from University of California Regent's license, per letter dated July 22, 1999.
Approved by: core, imp
|
Revision tags: release/5.2.1_cvs, release/5.2.1, release/5.2.0_cvs, release/5.2.0, release/4.9.0_cvs, release/4.9.0, release/5.1.0_cvs, release/5.1.0 |
|
#
c69284ca |
| 03-May-2003 |
David E. O'Brien <obrien@FreeBSD.org> |
Use __FBSDID() to quiet GCC 3.3 warnings.
|
Revision tags: release/4.8.0_cvs, release/4.8.0, release/5.0.0_cvs, release/5.0.0, release/4.7.0_cvs |
|
#
ef6fc683 |
| 16-Aug-2002 |
Alfred Perlstein <alfred@FreeBSD.org> |
No need to include sys/time.h, this unbreaks a c89 warning about long long constants as well.
|
Revision tags: release/4.6.2_cvs, release/4.6.2 |
|
#
3dc42568 |
| 11-Aug-2002 |
Maxime Henrion <mux@FreeBSD.org> |
The kldload() system call doesn't return 0 when it succeeded, so compare the return value against -1 to see if it failed instead of simply doing if (kldload("nfs")).
|
#
5965373e |
| 10-Aug-2002 |
Maxime Henrion <mux@FreeBSD.org> |
- Introduce a new struct xvfsconf, the userland version of struct vfsconf. - Make getvfsbyname() take a struct xvfsconf *. - Convert several consumers of getvfsbyname() to use struct xvfsconf. - Corr
- Introduce a new struct xvfsconf, the userland version of struct vfsconf. - 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.
show more ...
|
#
d5dd87c3 |
| 25-Jul-2002 |
Peter Wemm <peter@FreeBSD.org> |
WARNS clean
|
Revision tags: release/4.6.1, release/4.6.0_cvs |
|
#
51c20097 |
| 19-May-2002 |
Peter Wemm <peter@FreeBSD.org> |
Turn nfsiod into a vfs loader and sysctl wrapper that controls the number of nfsiod kernel threads being run.
|
#
d476a036 |
| 21-Mar-2002 |
Warner Losh <imp@FreeBSD.org> |
o remove __P o remove main prototype
|
Revision tags: release/4.5.0_cvs, release/4.4.0_cvs, release/4.3.0_cvs, release/4.3.0, release/4.2.0, release/4.1.1_cvs, release/4.1.0, release/3.5.0_cvs, release/4.0.0_cvs, release/3.4.0_cvs, release/3.3.0_cvs |
|
#
7f3dea24 |
| 28-Aug-1999 |
Peter Wemm <peter@FreeBSD.org> |
$Id$ -> $FreeBSD$
|
Revision tags: release/3.2.0, release/3.1.0, release/3.0.0, release/2.2.8, release/2.2.7 |
|
#
6ca76744 |
| 15-Jul-1998 |
Philippe Charnier <charnier@FreeBSD.org> |
Correct use of .Nm. Do not dot terminate syslog() strings. Remove unused #includes. Add rcsid. -Wall.
|
Revision tags: release/2.2.6 |
|
#
a960972d |
| 18-Nov-1997 |
John Polstra <jdp@FreeBSD.org> |
Fix missing arguments detected by "-Wformat".
|
Revision tags: release/2.2.5_cvs, release/2.2.2_cvs |
|
#
8d64695c |
| 29-Mar-1997 |
Warner Losh <imp@FreeBSD.org> |
compare return value from getopt against -1 rather than EOF, per the final posix standard on the topic.
|
Revision tags: release/2.2.1_cvs, release/2.2.0 |
|
#
08966bd5 |
| 11-Mar-1997 |
Peter Wemm <peter@FreeBSD.org> |
Merge from Lite2 (use new getvfsbyname() interface)
|
#
1811bdf3 |
| 11-Mar-1997 |
Peter Wemm <peter@FreeBSD.org> |
Import some CSRG 4.4BSD-Lite2 components for sbin onto vendor branch. (note that some of these have already been imported, this is a no-op)
|
Revision tags: release/2.1.7_cvs, release/2.1.6_cvs, release/2.1.6.1, release/2.1.5_cvs, release/2.1.0_cvs |
|
#
373efd48 |
| 01-Oct-1995 |
Peter Wemm <peter@FreeBSD.org> |
Catch the case where the children can die too soon causing wait3() to return ECHILD, which causes the while loop to run forever. (eg: when accidently running nfsiod on a slow system with a kernel wi
Catch the case where the children can die too soon causing wait3() to return ECHILD, which causes the while loop to run forever. (eg: when accidently running nfsiod on a slow system with a kernel without NFS support...) Obtained from: NetBSD; Frank van den Linden <frank@struis.fwi.uva.nl>
show more ...
|
#
a62dc406 |
| 27-Jun-1995 |
Doug Rabson <dfr@FreeBSD.org> |
Changes to support version 3 of the NFS protocol. 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 supp
Changes to support version 3 of the NFS protocol. 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>
show more ...
|
Revision tags: release/2.0.5_cvs, release/2.0 |
|
#
d599144d |
| 23-Sep-1994 |
Garrett Wollman <wollman@FreeBSD.org> |
Automatically load NFS and a bevy of other filesystems.
|
Revision tags: release/1.1.5.1_cvs |
|
#
8fae3551 |
| 26-May-1994 |
Rodney W. Grimes <rgrimes@FreeBSD.org> |
BSD 4.4 Lite sbin Sources
Note: XNSrouted and routed NOT imported here, they shall be imported with usr.sbin.
|