| Commit message (Expand) | Author | Age | Files | Lines |
* | - My last commit to this file is still not safe, I believe that it may be | jeff | 2003-10-06 | 1 | -0/+6 |
* | - Reinstate 1.142 this was fixed by 1.144. | jeff | 2003-10-06 | 1 | -3/+5 |
* | - The VCHR case in ffs_sync() is an unneccsary optimization especially | jeff | 2003-10-05 | 1 | -5/+2 |
* | - Further simplify ffs_sync(). The vnode lock is required for UFS_UPDATE() | jeff | 2003-10-05 | 1 | -16/+12 |
* | - In ffs_update() assert that either the vnode lock or the XLOCK is held. | jeff | 2003-10-05 | 1 | -0/+4 |
* | - Check the XLOCK before inspecting v_data. | jeff | 2003-10-05 | 1 | -9/+25 |
* | - Skip over xvp if XLOCK is set. | jeff | 2003-10-05 | 1 | -1/+2 |
* | - Don't cache_purge() in ufs_reclaim. 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 | -3/+4 |
* | - The VI assert in getdirtybuf() is only valid if we're not on a VCHR | jeff | 2003-10-04 | 1 | -1/+4 |
* | - Increase the scope of the interlock in ffs_reload(). Acquire it before | jeff | 2003-10-04 | 1 | -9/+6 |
* | - Fix an unlocked call to GETATTR by slightly shuffling the code in | jeff | 2003-10-04 | 1 | -6/+14 |
* | - Use the VI_LOCK macro in two places where we directly called mtx_lock() | jeff | 2003-10-04 | 1 | -2/+2 |
* | - Properly acquire the vnode interlock before releasing the | jeff | 2003-10-04 | 1 | -11/+23 |
* | - Remove a mp_fixme() and some locks that weren't necessary. I now | jeff | 2003-10-04 | 1 | -6/+1 |
* | - Several of the callers to getdirtybuf() were erroneously changed to pass | jeff | 2003-09-03 | 1 | -9/+16 |
* | - Backout rev 1.142. This caused a deadlock that I do not understand. More | jeff | 2003-08-31 | 1 | -5/+3 |
* | - Define a new flag for getblk(): GB_NOCREAT. This flag causes getblk() to | jeff | 2003-08-31 | 1 | -3/+5 |
* | - Don't acquire the vnode interlock in drain_output(). Instead, require the | jeff | 2003-08-31 | 1 | -53/+77 |
* | - Move BX_BKGRDWAIT and BX_BKGRDINPROG to BV_ and the b_vflags field. | jeff | 2003-08-28 | 1 | -12/+20 |
* | The previous change necessitates the addition of a new #include. Otherwise, | alc | 2003-08-18 | 1 | -0/+1 |
* | Don't use a VOP_*() function on our own vnodes, go directly to the | phk | 2003-08-17 | 1 | -4/+8 |
* | Revision 1.44 of ufs/ufs/inode.h has made it necessary to add two new | alc | 2003-08-16 | 1 | -0/+2 |
* | Eliminate the i_devvp field from the incore UFS inodes, we can | phk | 2003-08-15 | 4 | -7/+5 |
* | Consistently use the BSD u_int and u_short instead of the SYSV uint and | jhb | 2003-08-07 | 1 | -1/+1 |
* | Now that the central POSIX.1e ACL code implements functions to | rwatson | 2003-08-04 | 3 | -88/+13 |
* | In ufs_chmod(), use privilege only when required in the following | rwatson | 2003-08-04 | 1 | -5/+9 |
* | Rename VOP_RMEXTATTR() to VOP_DELETEEXTATTR() for consistency with the | rwatson | 2003-07-28 | 4 | -51/+169 |
* | Add fdidx argument to vn_open() and vn_open_cred() and pass -1 throughout. | phk | 2003-07-27 | 1 | -1/+1 |
* | Add a "int fd" argument to VOP_OPEN() which in the future will | phk | 2003-07-26 | 2 | -3/+3 |
* | We just cached the inode pointer, no need to call VTOI() again. | phk | 2003-07-04 | 1 | -2/+2 |
* | Lock the vm object when freeing pages. | alc | 2003-06-15 | 1 | -0/+8 |
* | Add the same KASSERT to all VOP_STRATEGY and VOP_SPECSTRATEGY implementations | phk | 2003-06-15 | 2 | -0/+4 |
* | Re-implement kernel access control for quotactl() as found in the | rwatson | 2003-06-15 | 3 | -23/+58 |
* | Initialize struct vfsops C99-sparsely. | phk | 2003-06-12 | 1 | -14/+13 |
* | Use __FBSDID(). | obrien | 2003-06-11 | 20 | -26/+63 |
* | Implement ffs_listextattr() by breaking out that logic and special-cased | rwatson | 2003-06-05 | 1 | -32/+88 |
* | Don't special-case handling of the empty string in the UFS1 | rwatson | 2003-06-05 | 1 | -4/+1 |
* | Return EOPNOTSUPP for attempted EA operations on VCHR vnodes in UFS2; | rwatson | 2003-06-01 | 1 | -0/+14 |
* | Remove unused variable. | phk | 2003-05-31 | 1 | -2/+0 |
* | Remove unused local variables. | phk | 2003-05-31 | 3 | -33/+7 |
* | The IO_NOWDRAIN and B_NOWDRAIN hacks are no longer needed to prevent | phk | 2003-05-31 | 1 | -4/+0 |
* | Lock the vm object when performing vm_object_page_clean(). | alc | 2003-05-18 | 1 | -1/+4 |
* | Jeff added locking assertions that the VV_ flags on vnodes were modified | rwatson | 2003-05-15 | 1 | -5/+11 |
* | Lock the vm_object on entry to vm_object_vndeallocate(). | alc | 2003-05-03 | 1 | -0/+5 |
* | Do not attempt to free NULL dinodes (i_din1 or i_din2) in ffs_ifree(). | tjr | 2003-05-01 | 1 | -2/+2 |
* | Free i_din2 instead of i_din1 in ffs_ifree() on UFS2 filesystems. | tjr | 2003-05-01 | 1 | -1/+1 |
* | Fix some easy, global, lint warnings. In most cases, this means | markm | 2003-04-30 | 2 | -3/+3 |
* | Deprecate machine/limits.h in favor of new sys/limits.h. | kan | 2003-04-29 | 2 | -3/+2 |
* | Lock both the proc lock and sched_lock when calling sched_nice since | jhb | 2003-04-22 | 1 | -1/+10 |