aboutsummaryrefslogtreecommitdiff
path: root/sys/nfsclient
Commit message (Expand)AuthorAgeFilesLines
* Fix a long line touched in previous commit (but not caused by previousPeter Wemm2002-02-071-1/+2
* Pre-KSE/M3 commit.Julian Elischer2002-02-071-2/+2
* Revise the nfsiod auto tuning code. Now both the upper and lower limitsPeter Wemm2002-01-153-22/+87
* Implement vfs.nfs.iodmin (minimum number of nfsiod's) andPeter Wemm2002-01-143-60/+92
* Terminate requests in nfs_sigintr() if the filesystem is in theIan Dowse2002-01-101-1/+4
* Permit NFS filesystems to be forcibly unmounted when the server isIan Dowse2002-01-023-7/+52
* o Remove an errant ';' introduced in the last revision.Alan Cox2002-01-011-2/+1
* o Remove premature use of nmp->nm_cred, it hasn't been initialized yet.Robert Watson2002-01-011-1/+1
* o Pass td into nfs_mountroot() to eliminate an XXX'd curthread use.Robert Watson2001-12-312-4/+3
* o Remove premature leakage of use of td_ucred from base source tree:Robert Watson2001-12-311-3/+3
* o Add missing #include's of sys/proc.h, missed in merge, required toRobert Watson2001-12-312-0/+2
* o Make the credential used by socreate() an explicit argument toRobert Watson2001-12-315-9/+20
* Add a #define for the size of the nfs_backoff[] array, and use thisIan Dowse2001-12-301-3/+4
* Increase the buffer size to hold a bootp/DHCP reply from 256 bytes toDoug Ambrisko2001-12-301-1/+1
* nfs_nget() does no locking whatsoever when looking up a vnode. If theMatthew Dillon2001-12-271-1/+4
* Avoid passing the variable `tl' to functions that just use it forIan Dowse2001-12-184-113/+105
* This fixes a large number of bugs in our NFS client side code. A recentMatthew Dillon2001-12-143-9/+75
* o Modify nfslockdans() to accept a thread reference instead of a procRobert Watson2001-11-143-14/+16
* Allow users to use the 'nolockd' or -L options with mount_nfs in orderAlfred Perlstein2001-11-123-3/+9
* turn vn_open() into a wrapper around vn_open_cred() which allowsAlfred Perlstein2001-11-111-15/+1
* Implement IO_NOWDRAIN and B_NOWDRAIN - prevents the buffer cache from blockingMatthew Dillon2001-11-051-0/+6
* o Note an additional potential problem here: LOCKD_MSG directly exportsRobert Watson2001-10-241-0/+4
* o Add two comments identifying problems with the current nfs_lock.cRobert Watson2001-10-231-0/+7
* Change the vnode list under the mount point from a LIST to a TAILQMatthew Dillon2001-10-232-4/+4
* Change the kernel's ucred API as follows:John Baldwin2001-10-112-14/+7
* Use crhold() instead of crdup() since we aren't modifying the cred butJohn Baldwin2001-10-091-1/+2
* Make this compile after last commit. It should be:Peter Wemm2001-10-091-1/+1
* Don't dereference td if it's NULL.Julian Elischer2001-10-081-1/+2
* Unwind some more macros. NFSMADV() was kinda silly since it was rightPeter Wemm2001-09-281-77/+63
* Make nfsm_dissect() have an obvious return value.Peter Wemm2001-09-274-50/+52
* Tidy up nfsm_build usage. This is only partially finished.Peter Wemm2001-09-272-38/+38
* Add a missing dereference level. This caused nfsm_postop_attr_xx()Ian Dowse2001-09-251-1/+1
* Add the magic marker so that loader and kldload(2) can find this inPeter Wemm2001-09-201-0/+4
* Oops. Fix a missing indirection level. gcc didn't complain about it onPeter Wemm2001-09-201-1/+1
* Sigh, Last minute pre-merge typo. (missing quotes)Peter Wemm2001-09-181-1/+1
* Cleanup and split of nfs client and server code.Peter Wemm2001-09-1820-7282/+1497
* nfs_strategy calls nfs_asyncio with td as NULL. So add a bandaid thatWarner Losh2001-09-181-1/+1
* Sync some differences that were different between the copies of the filesPeter Wemm2001-09-153-9/+9
* KSE Milestone 2Julian Elischer2001-09-1215-481/+490
* Fix some signed/unsigned integer confusion, and add bounds checking ofKris Kennaway2001-09-103-12/+12
* Pushdown Giant for nfs syscalls (nfssvc())Matthew Dillon2001-08-311-12/+23
* Stupid error from my side in prev. commit: || -> &&Andrey A. Chernov2001-08-231-1/+1
* Implement l_len<0 per POSIX check.Andrey A. Chernov2001-08-231-4/+6
* Even better move: suppose that server is able to handle SEEK_END,Andrey A. Chernov2001-08-231-6/+6
* Apparently SEEK_END locking not supported by NFS. Previous variantAndrey A. Chernov2001-08-231-1/+5
* Move <machine/*> after <sys/*>Andrey A. Chernov2001-08-231-1/+2
* adv. lock:Andrey A. Chernov2001-08-231-5/+5
* Fix a client-side memory leak in nfs_flush(). The code allocatesIan Dowse2001-08-011-2/+2
* Check the filehandle size when mounting.Peter Wemm2001-07-301-0/+2
* - Sort includes.John Baldwin2001-07-041-5/+10