| Commit message (Expand) | Author | Age | Files | Lines |
* | Locking for the per-process resource limits structure. | jhb | 2004-02-04 | 1 | -4/+7 |
* | Remove useless SMP check code. | des | 2003-12-07 | 1 | -10/+0 |
* | Don't mess around with spare fields of public structures. | phk | 2003-11-12 | 1 | -1/+0 |
* | Initialize b_offset before calling VOP_STRATEGY/VOP_SPECSTRATEGY. | phk | 2003-10-18 | 1 | -1/+0 |
* | Convert some if(bla) panic("foo") to KASSERTS to improve grep-ability. | phk | 2003-10-18 | 1 | -2/+1 |
* | - Don't cache_purge() in *_reclaim routines. vclean() does it for us so | jeff | 2003-10-05 | 1 | -1/+0 |
* | Synchronize access to a vm page's valid field using the containing | alc | 2003-10-04 | 1 | -4/+2 |
* | - Remove the backtrace() call from the *_vinvalbuf() functions. Thanks to a | jeff | 2003-10-04 | 1 | -5/+1 |
* | - Remove interlock protection around VI_XLOCK. The interlock is not | jeff | 2003-09-19 | 1 | -3/+3 |
* | Add a "int fd" argument to VOP_OPEN() which in the future will | phk | 2003-07-26 | 1 | -2/+2 |
* | Lock the vm object when freeing a vm page. | alc | 2003-06-19 | 1 | -1/+7 |
* | Add the same KASSERT to all VOP_STRATEGY and VOP_SPECSTRATEGY implementations | phk | 2003-06-15 | 1 | -0/+2 |
* | Initialize struct vfsops C99-sparsely. | phk | 2003-06-12 | 1 | -23/+17 |
* | Specify the M_WAITOK flag explicitly in the MALLOC call to silence a | tjr | 2003-04-01 | 1 | -1/+2 |
* | Rename vfs_stdsync function to vfs_stdnosync which matches more | kan | 2003-03-11 | 1 | -52/+1 |
* | Finish cleanup of vprint() which was begun with changing v_tag to a string. | njl | 2003-03-03 | 1 | -1/+1 |
* | More low-hanging fruit: kill caddr_t in calls to wakeup(9) / [mt]sleep(9). | des | 2003-03-02 | 1 | -3/+3 |
* | Clean up whitespace, s/register //, refrain from strong urge to ANSIfy. | des | 2003-03-02 | 1 | -5/+5 |
* | uiomove-related caddr_t -> void * (just the low-hanging fruit) | des | 2003-03-02 | 1 | -1/+1 |
* | Copy some VM changes from smbfs_putpages() to nwfs_putpages(): lock | tjr | 2003-02-27 | 1 | -1/+3 |
* | Fix vnode corruption bug when trying to rename files across filesystems. | tjr | 2003-02-27 | 1 | -10/+13 |
* | Sync nwfs_access() with smbfs_access(): use vaccess() instead of checking | tjr | 2003-02-27 | 1 | -13/+5 |
* | Catch up with recent netncp changes: ncp_chkintr() takes a thread, not | tjr | 2003-02-27 | 1 | -1/+1 |
* | Back out M_* changes, per decision of the TRB. | imp | 2003-02-19 | 2 | -2/+2 |
* | Split the global timezone structure into two integer fields to | phk | 2003-02-03 | 1 | -2/+2 |
* | Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0. | alfred | 2003-01-21 | 2 | -2/+2 |
* | Since Jeffr made the std* functions the default in rev 1.63 of | phk | 2003-01-04 | 1 | -3/+0 |
* | Regularize the vop_stdlock'ing protocol across all the filesystems | mckusick | 2002-10-14 | 1 | -1/+1 |
* | Return ENOTTY on unrecognized ioctls. | phk | 2002-09-26 | 1 | -1/+1 |
* | - Use vrefcnt() where it is safe to do so instead of doing direct and | jeff | 2002-09-25 | 3 | -9/+9 |
* | Remove all use of vnode->v_tag, replacing with appropriate substitutes. | njl | 2002-09-14 | 1 | -1/+1 |
* | Add a missing #include <sys/lockmgr.h>. | iedowse | 2002-09-01 | 1 | -0/+1 |
* | - Replace v_flag with v_iflag and v_vflag | jeff | 2002-08-04 | 4 | -7/+12 |
* | o Lock page queue accesses in nwfs and smbfs. | alc | 2002-08-02 | 1 | -0/+4 |
* | More s/file system/filesystem/g | trhodes | 2002-05-16 | 2 | -6/+6 |
* | Simple p_ucred -> td_ucred changes to start using the per-thread ucred | jhb | 2002-02-27 | 3 | -9/+9 |
* | Fix a BUF_TIMELOCK race against BUF_LOCK and fix a deadlock in vget() | dillon | 2001-12-20 | 1 | -1/+1 |
* | Update to C99, s/__FUNCTION__/__func__/, | obrien | 2001-12-10 | 2 | -3/+3 |
* | Change the vnode list under the mount point from a LIST to a TAILQ | dillon | 2001-10-23 | 1 | -2/+2 |
* | KSE Milestone 2 | julian | 2001-09-12 | 9 | -215/+218 |
* | Protect the mnt_vnode list with the mntvnode lock. | jhb | 2001-06-28 | 1 | -4/+15 |
* | With this commit, I hereby pronounce gensetdefs past its use-by date. | peter | 2001-06-13 | 2 | -4/+0 |
* | - sys/n[tw]fs moved to sys/fs/n[tw]fs | ru | 2001-05-26 | 7 | -20/+20 |
* | Change the second argument of vflush() to an integer that specifies | iedowse | 2001-05-16 | 1 | -22/+3 |
* | Implement vop_std{get|put}pages() and add them to the default vop[]. | phk | 2001-05-01 | 1 | -4/+2 |
* | Undo part of the tangle of having sys/lock.h and sys/mutex.h included in | markm | 2001-05-01 | 1 | -5/+8 |
* | Add a vop_stdbmap(), and make it part of the default vop vector. | phk | 2001-04-29 | 1 | -25/+0 |
* | vnode_pager_freepage() is really vm_page_free() in disguise, | alfred | 2001-04-19 | 1 | -2/+2 |
* | Add dependancy on libmchain module. | bp | 2001-03-22 | 1 | -0/+1 |
* | Do not kill vnodes after rename. This can cause deadlocks in the deadfs. | bp | 2001-03-11 | 1 | -6/+2 |