aboutsummaryrefslogtreecommitdiff
path: root/sys/nfsclient/nfs_vnops.c
Commit message (Expand)AuthorAgeFilesLines
* Separate the struct bio related stuff out of <sys/buf.h> intoPoul-Henning Kamp2000-05-051-0/+1
* Remove unneeded #include <vm/vm_zone.h>Poul-Henning Kamp2000-04-301-1/+0
* s/biowait/bufwait/gPoul-Henning Kamp2000-04-291-1/+1
* Remove ~25 unneeded #include <sys/conf.h>Poul-Henning Kamp2000-04-191-1/+0
* Complete the bio/buf divorce for all code below devfs::strategyPoul-Henning Kamp2000-04-151-1/+1
* Move B_ERROR flag to b_ioflags and call it BIO_ERROR.Poul-Henning Kamp2000-04-021-2/+4
* Rename the existing BUF_STRATEGY() to DEV_STRATEGY()Poul-Henning Kamp2000-03-201-2/+2
* Remove B_READ, B_WRITE and B_FREEBUF and replace them with a newPoul-Henning Kamp2000-03-201-3/+4
* Fix at least one source of the continued 'NFS append race'. close()Matthew Dillon2000-01-051-3/+21
* Introduce NDFREE (and remove VOP_ABORTOP)Eivind Eklund1999-12-151-22/+0
* Synopsis of problem being fixed: Dan Nelson originally reported thatMatthew Dillon1999-12-121-26/+2
* The symlink implementation could improperly return a NULL vp along withMatthew Dillon1999-11-301-3/+33
* Remap the error EEXISTS => 0 *before* using error to determine if we shouldEivind Eklund1999-11-271-7/+9
* Fix VOP_MKNOD for loss of WILLRELE. I don't know how I could have missedEivind Eklund1999-11-201-7/+1
* Remove WILLRELE from VOP_SYMLINKEivind Eklund1999-11-131-1/+3
* Move NFS access cache hits/misses into nfsstats structure soMatthew Dillon1999-10-251-6/+7
* Before we start to mess with the VFS name-cache clean things up a little bit:Poul-Henning Kamp1999-10-031-4/+0
* Asynchronized client-side nfs_commit. NFS commit operations wereMatthew Dillon1999-09-171-11/+14
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
* Decommision miscfs/specfs/specdev.h. Most of it goes into <sys/conf.h>,Poul-Henning Kamp1999-08-081-2/+2
* As described by the submitter:Mike Smith1999-07-311-34/+55
* Close PR #12651: the hash calculation routine has changed in otherBill Paul1999-07-301-2/+2
* Fix two bugs in nfs_readdirplus(). The first is that in some cases,Bill Paul1999-07-301-3/+6
* Fix warning. va_fsid is udev_t, which is int32_t. No need to use %lx.Peter Wemm1999-07-011-2/+2
* Submitted by: Conrad Minshall <conrad@apple.com>Julian Elischer1999-06-301-1/+6
* Fix a KASSERT() that was negated and lead to:Peter Wemm1999-06-281-2/+2
* Convert buffer locking from using the B_BUSY and B_WANTED flags to usingKirk McKusick1999-06-261-22/+28
* Add a vnode argument to VOP_BWRITE to get rid of the last vnodeKirk McKusick1999-06-161-2/+2
* Various changes lifted from the OpenBSD cvs tree:Peter Wemm1999-06-051-6/+6
* Divorce "dev_t" from the "major|minor" bitmap, which is now calledPoul-Henning Kamp1999-05-111-3/+3
* remove b_proc from struct buf, it's (now) unused.Poul-Henning Kamp1999-05-061-5/+6
* Add sufficient braces to keep egcs happy about potentially ambiguousPeter Wemm1999-05-061-2/+3
* All directory accesses must be made with NFS_DIRBLKSIZE chunks to avoidAlan Cox1999-05-031-3/+3
* The VFS/BIO subsystem contained a number of hacks in order to optimizeAlan Cox1999-05-021-19/+19
* Reviewed by: Many at differnt times in differnt parts,Julian Elischer1999-03-121-30/+51
* * Change sysctl from using linker_set to construct its tree using SLISTs.Doug Rabson1999-02-161-1/+3
* General additional cleanup of VOP API for NFS ops - mainly NFS ignoringMatthew Dillon1999-02-131-4/+13
* PR: kern/9970Matthew Dillon1999-02-131-2/+1
* Flush delayed-write data out prior to issuing a rename rpc. This appearsMatthew Dillon1999-02-061-1/+14
* Fix nasty bug in nfs_access(). A conditional was if (a = b) instead ofMatthew Dillon1999-01-271-2/+2
* Fix warnings in preparation for adding -Wall -Wcast-qual to theMatthew Dillon1999-01-271-6/+6
* This is a rather large commit that encompasses the new swapper,Matthew Dillon1999-01-211-1/+4
* Remove two cases of unused variable sp3.Eivind Eklund1999-01-121-3/+1
* Fix for creating files on a Solaris 7 server with NFSv3 (the request wasDoug Rabson1998-12-251-79/+15
* Reimplement the NFS ACCESS RPC cache as an "accelerator" rather than a trueMike Smith1998-11-151-42/+12
* Avoid a null pointer reference if the target of an NFS rename has beenMike Smith1998-11-131-7/+10
* Implement NFS ACCESS RPC result caching.Mike Smith1998-11-131-23/+94
* Remove [apparently] bogus casts to u_long for the vnode_pager_setsize()Peter Wemm1998-11-091-4/+4
* Use TAILQ macros for clean/dirty block list processing. Set b_xflagsPeter Wemm1998-10-311-8/+8
* In nfs_link(), check for a cross-device mount *before* lookingKirk McKusick1998-09-291-2/+3