aboutsummaryrefslogtreecommitdiff
path: root/sys/nfsserver
Commit message (Expand)AuthorAgeFilesLines
* Untangle the nfs send and receive queue locking a little. One lockPeter Wemm1999-02-254-61/+85
* Move the declaration of the vfs.nfs sysctl node outside an ifdef so thatDoug Rabson1999-02-181-3/+3
* Fixed bitrot in NFS_ACDEBUG option.Bruce Evans1999-02-171-1/+2
* * Change sysctl from using linker_set to construct its tree using SLISTs.Doug Rabson1999-02-162-2/+6
* Fix warnings in preparation for adding -Wall -Wcast-qual to theMatthew Dillon1999-01-272-5/+5
* This is a rather large commit that encompasses the new swapper,Matthew Dillon1999-01-211-1/+4
* Remove the 'waslocked' parameter to vfs_object_create().Eivind Eklund1999-01-051-2/+2
* Silence -Wtrigraph.Tim Vanderhoek1998-12-301-4/+4
* Fix for creating files on a Solaris 7 server with NFSv3 (the request wasDoug Rabson1998-12-251-11/+62
* Added 3 new errno values, requred by various standards: EOVERFLOW,Dmitrij Tejblum1998-12-141-2/+3
* Remove the if fixed in the last commit; bde quite correctly point outEivind Eklund1998-12-091-3/+2
* Fix typo (; in "if (vp == NULL);").Eivind Eklund1998-12-081-2/+2
* The "easy" fixes for compiling the kernel -Wunused: remove unreferenced staticArchie Cobbs1998-12-073-6/+3
* Fix a panic in nfsrv_dorec() where a NULL pointer could be passed toDoug Rabson1998-11-131-2/+4
* Remove [apparently] bogus casts to u_long for the vnode_pager_setsize()Peter Wemm1998-11-091-3/+3
* vm_object_page_clean() last arg changed from TRUE to OBJPC_SYNC. I'm notPeter Wemm1998-10-311-2/+2
* Use TAILQ macros for clean/dirty block list processing. Set b_xflagsPeter Wemm1998-10-311-3/+3
* The code checks each fragment mark to see if it's valid; if the fragmentKirk McKusick1998-09-291-2/+2
* Made unloading of the nfs LKM sort of work. This is mainly to testBruce Evans1998-09-074-7/+47
* Instantiate `nfs_mount_type' in a standard file so that it is presentBruce Evans1998-09-051-2/+1
* Check for NULL pointer before freeing a struct sockaddr. m_freem() can handleLuoqi Chen1998-09-011-2/+3
* Yow! Completely change the way socket options are handled, eliminatingGarrett Wollman1998-08-234-23/+47
* If we get an ENOBUFS from the network, it's normally transient networkPeter Wemm1998-08-011-1/+11
* Cast pointers to uintptr_t/intptr_t instead of to u_long/long,Bruce Evans1998-07-151-3/+3
* Moved `#ifndef NFS_NOSERVER' after including nfs.h.KATO Takenori1998-07-021-2/+2
* fix buildworld hopefully be3fore anyone complains...John-Mark Gurney1998-06-302-2/+6
* convert some nfs tunables to options, these are:John-Mark Gurney1998-06-302-2/+6
* Fixed typo in ifdefed code. (NFS_ACDEBUG is not in LINT. Therefore,Bruce Evans1998-06-211-2/+2
* Avoid an egcs pessimization for 64-bit signed division on i386's.Bruce Evans1998-06-141-4/+4
* This commit fixes various 64bit portability problems required forDoug Rabson1998-06-072-6/+6
* For the on-the-wire protocol, u_long -> u_int32_t; long -> int32_t;Peter Wemm1998-05-319-319/+322
* Support 'mount -u' remounts. This may require disconnecting and rebindingPeter Wemm1998-05-313-3/+18
* Cut-n-paste glitchPeter Wemm1998-05-311-2/+2
* Prototype support for selectively allowing non-reserved ports on a perPeter Wemm1998-05-311-1/+14
* Hide whiteouts from NFS, since the protocol doesn't support them.Peter Wemm1998-05-311-5/+7
* NetBSD has a comment that Solaris 2.5 doesn't do verifiers correctly,Peter Wemm1998-05-311-1/+7
* Don't pass a second copy of the uid/gid in with the v2/v3 sattr structures,Peter Wemm1998-05-312-11/+7
* Use the new SB_UPCALL flag,Peter Wemm1998-05-311-1/+4
* Don't try and free mrep twice on some error conditions.Peter Wemm1998-05-311-2/+5
* #ifdef a diagnostic panic, plus another missed costmetic change.Peter Wemm1998-05-311-2/+4
* We have gained 2 more errno's, add them to the NFSv2 mapping table.Peter Wemm1998-05-311-2/+2
* Missed a cosmetic change that the other BSD's have.Peter Wemm1998-05-311-2/+2
* oops, nfs_msg() is called from client code too.Peter Wemm1998-05-311-1/+4
* When we can't reconnect a socket, don't forget to unlock before retryingPeter Wemm1998-05-311-1/+4
* Don't log zero length reads, this can happen during normal operation.Peter Wemm1998-05-311-1/+9
* Consider for readdir chunk sizes when tuning socket buffer reservations.Peter Wemm1998-05-311-3/+5
* Refuse READDIR / READDIRPLUS rpc's for non-directoriesPeter Wemm1998-05-311-1/+9
* Some const'sPeter Wemm1998-05-314-8/+8
* NFS Jumbo commit part 1. Cosmetic and structural changes only. The aimPeter Wemm1998-05-318-545/+561
* When using NFSv3, use the remote server's idea of the maximum file sizePeter Wemm1998-05-301-6/+12