| Commit message (Expand) | Author | Age | Files | Lines |
| * | Init timespec to zero fo quiesce warnings. | Matt Jacob | 2007-06-10 | 1 | -1/+1 |
| * | Remove MAC Framework access control check entry points made redundant with | Robert Watson | 2007-04-22 | 1 | -8/+0 |
| * | Attempt to rationalize NFS privileges: | Robert Watson | 2007-04-21 | 1 | -1/+1 |
| * | In nfsrv_rcv(), don't reacquire the nfs server lock until after | Robert Watson | 2007-04-15 | 1 | -1/+1 |
| * | - Split out the part of SYSCALL_MODULE_HELPER() that builds a 'struct | John Baldwin | 2007-04-02 | 1 | -9/+12 |
| * | Initialize vfslocked to 0 before nfsm_srvmtofh() so that the variable is | John Baldwin | 2007-03-26 | 1 | -0/+1 |
| * | - Turn all explicit giant acquires into conditional VFS_LOCK_GIANTs. | Jeff Roberson | 2007-03-17 | 7 | -644/+236 |
| * | Change these descriptions of memory types used in malloc(9), as their | Wojciech A. Koszek | 2007-03-05 | 1 | -4/+3 |
| * | Remove 'MPSAFE' annotations from the comments above most system calls: all | Robert Watson | 2007-03-04 | 1 | -3/+0 |
| * | Move vnode-to-file-handle translation from vfs_vptofh to vop_vptofh method. | Pawel Jakub Dawidek | 2007-02-15 | 1 | -6/+6 |
| * | Get the vfs giant lock before calling nfs_access. | Mike Pritchard | 2007-02-13 | 1 | -3/+9 |
| * | The nfsm_srvpathsiz() macro in nfsrv_symlink() in nfs_serv.c should | Hiroki Sato | 2007-01-02 | 2 | -1/+20 |
| * | MFp4: 92972, 98913 + one more change | Bjoern A. Zeeb | 2006-12-12 | 1 | -9/+13 |
| * | Push Giant a bit further off the NFS server in a number of straight | Robert Watson | 2006-11-24 | 3 | -224/+297 |
| * | Protect nfsm_srvpathsiz() call with the nfsd_mtx lock. | Pawel Jakub Dawidek | 2006-11-20 | 1 | -5/+6 |
| * | Sweep kernel replacing suser(9) calls with priv(9) calls, assigning | Robert Watson | 2006-11-06 | 1 | -1/+2 |
| * | Fix leak in NAMEI zone caused by nfs server when VOP_RENAME fails. | Konstantin Belousov | 2006-10-26 | 1 | -2/+2 |
| * | Complete break-out of sys/sys/mac.h into sys/security/mac/mac_framework.h | Robert Watson | 2006-10-22 | 2 | -2/+4 |
| * | - Add a new function nfsrv_destroycache() to tear down the server request | John Baldwin | 2006-08-01 | 3 | -3/+17 |
| * | Use TAILQ_FOREACH_SAFE() in a couple of places. | John Baldwin | 2006-08-01 | 2 | -5/+2 |
| * | Now that all system calls are MPSAFE, retire the SYF_MPSAFE flag used to | John Baldwin | 2006-07-28 | 1 | -1/+2 |
| * | soreceive_generic(), and sopoll_generic(). Add new functions sosend(), | Robert Watson | 2006-07-24 | 1 | -6/+3 |
| * | Size the NFS server dupreq cache on the basis of nmbclusters. On servers | Mohan Srinivasan | 2006-06-23 | 2 | -4/+22 |
| * | Temporary workaround to prevent leak of Giant from nfsd when calling | Konstantin Belousov | 2006-06-05 | 2 | -0/+20 |
| * | Bump up the NFS server dupreq cache limit to 2K (from 64). With a small | Mohan Srinivasan | 2006-04-25 | 1 | -1/+1 |
| * | Introduce a new MAC entry point for label initialization of the NFS daemon's | Christian S.J. Peron | 2006-04-06 | 1 | -0/+3 |
| * | rick says: | Chuck Lever | 2006-04-02 | 1 | -0/+6 |
| * | - Release the references acquired by VOP_GETWRITEMOUNT and vfs_getvfs(). | Jeff Roberson | 2006-03-31 | 2 | -2/+15 |
| * | - Reorder vrele calls after vput calls to prevent lock order reversals | Jeff Roberson | 2006-03-12 | 1 | -26/+17 |
| * | When parsing an RPC request in nfsrv_dorec(), KASSERT that there | Simon L. B. Nielsen | 2006-03-08 | 1 | -0/+1 |
| * | Correct a remote kernel panic when processing zero-length RPC records | Simon L. B. Nielsen | 2006-03-01 | 1 | -1/+1 |
| * | - Reorder calls to vrele() after calls to vput() when the vrele is a | Jeff Roberson | 2006-02-01 | 2 | -39/+38 |
| * | Manage the ucred for the NFS server using the crget/crfree API defined in | Christian S.J. Peron | 2006-01-28 | 4 | -39/+47 |
| * | Revert my previous commit. | Tom Rhodes | 2006-01-23 | 1 | -0/+11 |
| * | Fix indentation. | Tom Rhodes | 2006-01-23 | 1 | -7/+7 |
| * | Remove some dead code. | Tom Rhodes | 2006-01-21 | 1 | -18/+7 |
| * | Normalize a significant number of kernel malloc type names: | Robert Watson | 2005-10-31 | 1 | -3/+3 |
| * | Keep locks consistent before goto. | Gleb Smirnoff | 2005-10-27 | 1 | -0/+4 |
| * | Use the refcount API to manage the reference count for user credentials | John Baldwin | 2005-09-27 | 2 | -5/+6 |
| * | NFS write gathering defers execution of NFS server write requests to wait | Robert Watson | 2005-04-17 | 2 | -5/+23 |
| * | avoid potential null ptr deref by free'ing excess mbufs instead of | Sam Leffler | 2005-03-28 | 1 | -2/+4 |
| * | Do not do write gathering for NFSv3, since it makes no sense unless | Xin LI | 2005-03-26 | 1 | -1/+2 |
| * | Don't try to create vnode_pager objects on other filesystems vnodes, | Poul-Henning Kamp | 2005-01-24 | 3 | -18/+0 |
| * | Now that we have a non blocking version of nfsm_dissect(), change all the | Paul Saab | 2005-01-19 | 3 | -41/+41 |
| * | Ditch vfs_object_create() and make the callers call VOP_CREATEVOBJECT() | Poul-Henning Kamp | 2005-01-13 | 1 | -1/+1 |
| * | Remove the unused credential argument from VOP_FSYNC() and VFS_SYNC(). | Poul-Henning Kamp | 2005-01-11 | 1 | -1/+1 |
| * | /* -> /*- for license, minor formatting changes | Warner Losh | 2005-01-07 | 9 | -9/+9 |
| * | Correct a bug in nfsrv_create() where a call to nfsrv_access() might | Robert Watson | 2004-11-11 | 1 | -38/+52 |
| * | Add b_bufobj to struct buf which eventually will eliminate the need for b_vp. | Poul-Henning Kamp | 2004-10-22 | 1 | -1/+1 |
| * | Correct several instances where calls to vfs_getvfs() resulting in | Robert Watson | 2004-10-18 | 1 | -13/+61 |