| Commit message (Expand) | Author | Age | Files | Lines |
* | Alas, poor SPECFS! -- I knew him, Horatio; A filesystem of infinite | phk | 2004-10-22 | 1 | -598/+0 |
* | Remove devsw() call missed in last commit. | phk | 2004-09-24 | 1 | -1/+0 |
* | Use def_re[fl]thread(). | phk | 2004-09-24 | 1 | -95/+46 |
* | Eliminate DEV_STRATEGY() macro: call dev_strategy() directly. | phk | 2004-09-23 | 1 | -18/+2 |
* | Do not refcount the cdevsw, but rather maintain a cdev->si_threadcount | phk | 2004-09-23 | 1 | -18/+42 |
* | The getpages VOP was a good stab at getting scatter/gather I/O without | phk | 2004-09-19 | 1 | -181/+0 |
* | Remove the buffercache/vnode side of BIO_DELETE processing in | phk | 2004-09-13 | 1 | -33/+2 |
* | use bufdone() not biodone(). | phk | 2004-08-08 | 1 | -3/+3 |
* | Second half of the dev_t cleanup. | phk | 2004-06-17 | 1 | -1/+1 |
* | Do the dreaded s/dev_t/struct cdev */ | phk | 2004-06-16 | 1 | -13/+13 |
* | Nice, is a property of a process as a whole.. | julian | 2004-06-16 | 1 | -2/+2 |
* | Make vm_page's PG_ZERO flag immutable between the time of the page's | alc | 2004-05-06 | 1 | -2/+0 |
* | Do not drop Giant around the poll method yet, we're not ready for it. | phk | 2004-04-12 | 1 | -2/+2 |
* | Remove advertising clause from University of California Regent's | imp | 2004-04-07 | 1 | -4/+0 |
* | When I was a kid my work table was one cluttered mess an cleaning it up | phk | 2004-03-11 | 1 | -20/+0 |
* | Don't call devsw() more than we need to, and in particular do not expose | phk | 2004-03-10 | 1 | -4/+4 |
* | Do not attempt to open NODEV | phk | 2004-02-24 | 1 | -0/+3 |
* | Device megapatch 6/6: | phk | 2004-02-21 | 1 | -9/+30 |
* | Device megapatch 4/6: | phk | 2004-02-21 | 1 | -8/+8 |
* | Initialize b_iooffset correctly. | phk | 2003-11-13 | 1 | -0/+1 |
* | Initialize b_iooffset before calling strategy | phk | 2003-10-18 | 1 | -0/+1 |
* | Initialize b_offset before calling VOP_STRATEGY/VOP_SPECSTRATEGY. | phk | 2003-10-18 | 1 | -1/+0 |
* | Introduce a new optional memberfunction for cdevsw, fdopen() which | phk | 2003-10-15 | 1 | -2/+7 |
* | Synchronize access to a page's valid field by using the lock from its | alc | 2003-10-04 | 1 | -1/+2 |
* | 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 |