| Commit message (Expand) | Author | Age | Files | Lines |
* | The valid field in struct vm_page can be of type unsigned long when | marcel | 2003-08-28 | 1 | -2/+2 |
* | Use the requested page's object field instead of the vnode's. In some | alc | 2003-08-22 | 1 | -2/+5 |
* | Don't drop giant around ->d_strategy(), too much code explodes. | phk | 2003-08-06 | 1 | -3/+3 |
* | Only drop Giant around the drivers ->d_strategy() if the buffer is not | phk | 2003-08-05 | 1 | -1/+1 |
* | Lock the vm object when freeing a vm page. | alc | 2003-06-19 | 1 | -0/+2 |
* | In specfs::vop_specstratey(), assert that the vnode and buffer agree about | phk | 2003-06-15 | 1 | -0/+4 |
* | I have not had any reports of trouble for a long time, so remove the | phk | 2003-06-15 | 1 | -26/+1 |
* | Take 2: Remove _both_ KASSERTS. | phk | 2003-06-15 | 1 | -2/+0 |
* | Duh! I misread my handwritte notes: We do _not_ want to asser that | phk | 2003-06-15 | 1 | -2/+0 |
* | Add the same KASSERT to all VOP_STRATEGY and VOP_SPECSTRATEGY implementations | phk | 2003-06-15 | 1 | -0/+4 |
* | - Add a lock for protecting against msleep(bp, ...) wakeup(bp) races. | jeff | 2003-03-13 | 1 | -17/+2 |
* | Finish cleanup of vprint() which was begun with changing v_tag to a string. | njl | 2003-03-03 | 1 | -3/+2 |
* | Make nokqfilter() return the correct return value. | phk | 2003-03-03 | 1 | -2/+0 |
* | Use the SI_CANDELETE flag on the dev_t rather than the D_CANFREE flag | phk | 2003-02-11 | 1 | -3/+1 |
* | - Cleanup unlocked accesses to buf flags by introducing a new b_vflag member | jeff | 2003-02-09 | 1 | -81/+2 |
* | Don't override the vop_lock, vop_unlock and vop_isunlocked methods. | phk | 2003-01-05 | 1 | -3/+0 |
* | Don't take the detour over VOP_STRATEGY from spec_getpages, call our | phk | 2003-01-05 | 1 | -1/+1 |
* | Split out the vnode and buf arguments to the internal strategy worker | phk | 2003-01-05 | 1 | -13/+3 |
* | Temporarily introduce a new VOP_SPECSTRATEGY operation while I try | phk | 2003-01-04 | 1 | -2/+39 |
* | resort vnode ops list | phk | 2003-01-04 | 1 | -3/+3 |
* | Replace spec_bmap() with vop_panic: We should never BMAP a device backed | phk | 2003-01-04 | 1 | -35/+1 |
* | Convert calls to BUF_STRATEGY to VOP_STRATEGY calls. This is a no-op since | phk | 2003-01-03 | 1 | -1/+1 |
* | Remove unused second argument from DEV_STRATEGY(). | phk | 2003-01-03 | 1 | -3/+3 |
* | Add debug.doslowdown to enable/disable niced slowdown on I/O. Default | mckusick | 2002-11-04 | 1 | -1/+5 |
* | Put a KASSERT in specfs::strategy() to check that the incoming buffer | phk | 2002-11-01 | 1 | -2/+8 |
* | Within ufs, the ffs_sync and ffs_fsync functions did not always | mckusick | 2002-10-25 | 1 | -4/+14 |
* | This checkin reimplements the io-request priority hack in a way | mckusick | 2002-10-22 | 1 | -1/+24 |
* | Fix comments and one resulting code confusion about the type of the | phk | 2002-10-16 | 1 | -1/+1 |
* | Be consistent about "static" functions: if the function is marked | phk | 2002-09-28 | 1 | -1/+1 |
* | I misplaced a local variable yesterday. | phk | 2002-09-28 | 1 | -1/+1 |
* | Add a D_NOGIANT flag which can be set in a struct cdevsw to indicate | phk | 2002-09-27 | 1 | -13/+76 |
* | I hate it when patch gives me .rej files. | phk | 2002-09-26 | 1 | -0/+1 |
* | Return ENOTTY on unhandled ioctls. | phk | 2002-09-26 | 1 | -2/+5 |
* | - Fix a botch in previous commit; oldvp should not be unconditionally | jeff | 2002-09-26 | 1 | -2/+3 |
* | - Lock access to the buf lists in spec_sync() | jeff | 2002-09-25 | 1 | -7/+15 |
* | Remove all use of vnode->v_tag, replacing with appropriate substitutes. | njl | 2002-09-14 | 1 | -1/+2 |
* | - Replace v_flag with v_iflag and v_vflag | jeff | 2002-08-04 | 1 | -8/+19 |
* | - Explicitly state that specfs does not support locking by using | jeff | 2002-07-27 | 1 | -0/+3 |
* | o Lock page queue accesses by vm_page_activate() and vm_page_deactivate(). | alc | 2002-07-27 | 1 | -1/+2 |
* | Remove a check of blocknumbers/offsets which will be pointless with | phk | 2002-05-18 | 1 | -12/+0 |
* | Lock proctree_lock instead of pgrpsess_lock. | jhb | 2002-04-16 | 1 | -2/+2 |
* | Remove __P. | alfred | 2002-03-19 | 1 | -15/+15 |
* | If in strategy we find that we have no devsw on the device anymore we | phk | 2002-03-05 | 1 | -3/+6 |
* | Simple p_ucred -> td_ucred changes to start using the per-thread ucred | jhb | 2002-02-27 | 1 | -4/+4 |
* | Lock struct pgrp, session and sigio. | tanimura | 2002-02-23 | 1 | -2/+11 |
* | Various nit-picking, mostly of style(9) character. | phk | 2002-02-10 | 1 | -43/+41 |
* | Change the kernel's ucred API as follows: | jhb | 2001-10-11 | 1 | -5/+4 |
* | o Modify generic specfs device open access control checks to use | rwatson | 2001-09-26 | 1 | -4/+8 |
* | KSE Milestone 2 | julian | 2001-09-12 | 1 | -25/+25 |
* | With Alfred's permission, remove vm_mtx in favor of a fine-grained approach | dillon | 2001-07-04 | 1 | -3/+2 |