| Commit message (Expand) | Author | Age | Files | Lines |
* | Clean up proc locking in procfs: make sure the proc lock is held before | rwatson | 2003-05-05 | 3 | -5/+12 |
* | Eliminate the separate malloc type for the sparing table. | scottl | 2003-05-04 | 1 | -3/+2 |
* | Add a missing __inline. Strange that gcc never complained about it. | scottl | 2003-05-04 | 1 | -3/+3 |
* | Correctly calculate the size of the extent that should be read in | scottl | 2003-05-04 | 1 | -3/+3 |
* | Implement the node cache as a hash table. | scottl | 2003-05-04 | 3 | -6/+26 |
* | Instead of recording the Unix time in a process when it starts, record the | des | 2003-05-01 | 1 | -4/+6 |
* | Deprecate machine/limits.h in favor of new sys/limits.h. | kan | 2003-04-29 | 2 | -4/+2 |
* | Fail to mount a device if the bytes per sector in the BPB is less than | jhb | 2003-04-24 | 1 | -0/+6 |
* | - Always call faultin() in _PHOLD() if PS_INMEM is clear. This closes a | jhb | 2003-04-22 | 1 | -2/+0 |
* | - Use a local variable to close a minor race when determining if the wmesg | jhb | 2003-04-17 | 1 | -9/+15 |
* | Protect p_flag with the proc lock. The sched_lock is not needed to turn | jhb | 2003-04-17 | 1 | -2/+2 |
* | - P_SHOULDSTOP just needs proc lock now, so don't acquire sched_lock unless | jhb | 2003-04-17 | 1 | -6/+4 |
* | Add a proc lock assertion and move another assertion up to the top of the | jhb | 2003-04-17 | 1 | -2/+4 |
* | It appears that msdosfs_init() is called multiple times. This happens | imp | 2003-04-10 | 1 | -0/+13 |
* | - smb_td_intr takes a thread as an argument not a proc. | jeff | 2003-04-01 | 1 | -1/+1 |
* | - smb_proc_intr is now spelled smb_td_intr. | jeff | 2003-04-01 | 1 | -1/+1 |
* | Specify the M_WAITOK flag explicitly in the MALLOC call to silence a | tjr | 2003-04-01 | 1 | -1/+2 |
* | Give the M_WAITOK flag explicitly to the MALLOC call to silence a runtime | tjr | 2003-04-01 | 1 | -1/+2 |
* | - Move p->p_sigmask to td->td_sigmask. Signal masks will be per thread with | jeff | 2003-03-31 | 1 | -14/+14 |
* | Deregister the dev_clone event handler we registered - don't touch the | tjr | 2003-03-27 | 1 | -2/+4 |
* | Replace the at_fork, at_exec, and at_exit functions with the slightly more | jhb | 2003-03-24 | 1 | -5/+7 |
* | Better fix for the problem addressed by rev.1.79: don't loop in | bde | 2003-03-24 | 1 | -8/+13 |
* | Make udf_allocv() return an unlocked vnode instead of a locked one | tjr | 2003-03-16 | 1 | -2/+1 |
* | - Add a lock for protecting against msleep(bp, ...) wakeup(bp) races. | jeff | 2003-03-13 | 1 | -17/+2 |
* | Rename vfs_stdsync function to vfs_stdnosync which matches more | kan | 2003-03-11 | 12 | -107/+12 |
* | Set f_fstypename in coda_nb_statfs(). | tjr | 2003-03-07 | 1 | -0/+1 |
* | Add a temporary workaround for a deadlock in Coda venus 5.3.19 that | tjr | 2003-03-06 | 2 | -2/+28 |
* | Remove fragments of support for the FreeBSD 3.x and 4.x branches. | tjr | 2003-03-06 | 3 | -20/+0 |
* | VOP_PATHCONF returns a register_t, not an int. Noticed by phk. | tjr | 2003-03-05 | 1 | -1/+1 |
* | Add prototype for coda_pathconf() that I missed in the previous commit. | tjr | 2003-03-05 | 1 | -0/+1 |
* | Add a minimal implementation of VOP_PATHCONF to silence warning | tjr | 2003-03-05 | 1 | -1/+29 |
* | Handle the case where a_uio->uio_td == NULL properly in coda_readlink(). | tjr | 2003-03-05 | 1 | -1/+2 |
* | - Add a new 'flags' parameter to getblk(). | jeff | 2003-03-04 | 6 | -12/+15 |
* | Finish cleanup of vprint() which was begun with changing v_tag to a string. | njl | 2003-03-03 | 15 | -30/+9 |
* | Make nokqfilter() return the correct return value. | phk | 2003-03-03 | 1 | -2/+0 |
* | Gigacommit to improve device-driver source compatibility between | phk | 2003-03-03 | 1 | -13/+8 |
* | Get rid of caddr_t. | des | 2003-03-02 | 2 | -2/+2 |
* | More low-hanging fruit: kill caddr_t in calls to wakeup(9) / [mt]sleep(9). | des | 2003-03-02 | 5 | -14/+14 |
* | Clean up whitespace, s/register //, refrain from strong urge to ANSIfy. | des | 2003-03-02 | 7 | -70/+70 |
* | uiomove-related caddr_t -> void * (just the low-hanging fruit) | des | 2003-03-02 | 7 | -12/+10 |
* | wakeup(9) and msleep(9) take void * arguments, not caddr_t. | des | 2003-03-02 | 1 | -3/+3 |
* | NODEVFS cleanup: | phk | 2003-03-02 | 1 | -4/+3 |
* | 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 |
* | Change the process flags P_KSES to be P_THREADED. | julian | 2003-02-27 | 1 | -1/+1 |
* | msg | phk | 2003-02-26 | 1 | -2/+0 |
* | Do not call smbfs_attr_cacheremove() in the EXDEV case in smbfs_rename(). | tjr | 2003-02-19 | 1 | -5/+9 |
* | Back out M_* changes, per decision of the TRB. | imp | 2003-02-19 | 36 | -93/+93 |