| Commit message (Expand) | Author | Age | Files | Lines |
| * | Don't include sys/user.h merely for its side-effect of recursively | David Schultz | 2004-11-27 | 1 | -2/+0 |
| * | Remove useless casts. | Olivier Houchard | 2004-11-26 | 1 | -2/+2 |
| * | Try to close a potential, but serious race in our VM subsystem. | Xin LI | 2004-11-24 | 1 | -2/+15 |
| * | Disable U area swapping and remove the routines that create, destroy, | David Schultz | 2004-11-20 | 4 | -206/+0 |
| * | Make VOP_BMAP return a struct bufobj for the underlying storage device | Poul-Henning Kamp | 2004-11-15 | 1 | -10/+13 |
| * | Add pbgetbo()/pbrelbo() lighter weight versions of pbgetvp()/pbrelvp(). | Poul-Henning Kamp | 2004-11-15 | 1 | -0/+42 |
| * | More kasserts. | Poul-Henning Kamp | 2004-11-15 | 1 | -1/+6 |
| * | style polishing. | Poul-Henning Kamp | 2004-11-15 | 1 | -7/+3 |
| * | Move pbgetvp() and pbrelvp() to vm_pager.c with the rest of the pbuf stuff. | Poul-Henning Kamp | 2004-11-15 | 1 | -0/+44 |
| * | expect the caller to have called pbrelvp() if necessary. | Poul-Henning Kamp | 2004-11-15 | 1 | -3/+0 |
| * | Explicitly call pbrelvp() | Poul-Henning Kamp | 2004-11-15 | 1 | -0/+2 |
| * | Improve readability with a bunch of typedefs for the pager ops. | Poul-Henning Kamp | 2004-11-09 | 1 | -7/+15 |
| * | #include <vm/vm_param.h> instead of <machine/vmparam.h> (the former | Dag-Erling Smørgrav | 2004-11-08 | 1 | -6/+6 |
| * | Eliminate an unnecessary atomic operation. Articulate the rationale in | Alan Cox | 2004-11-06 | 1 | -4/+11 |
| * | Abstract the logic to look up the uma_bucket_zone given a desired | Robert Watson | 2004-11-06 | 1 | -7/+23 |
| * | Remove dangling variable | Poul-Henning Kamp | 2004-11-06 | 1 | -1/+0 |
| * | Annotate what bucket_size[] array does; staticize since it's used only | Robert Watson | 2004-11-06 | 1 | -1/+5 |
| * | Fix the last known race in swapoff(), which could lead to a spurious panic: | David Schultz | 2004-11-06 | 1 | -21/+14 |
| * | Move a call to wakeup() from vm_object_terminate() to vnode_pager_dealloc() | Alan Cox | 2004-11-06 | 3 | -2/+6 |
| * | - Set the priority of the page zeroing thread using sched_prio() when the | John Baldwin | 2004-11-05 | 1 | -14/+5 |
| * | During traversal of the inactive queue, try locking the page's containing | Alan Cox | 2004-11-05 | 1 | -4/+9 |
| * | Eliminate another unnecessary call to vm_page_busy() that immediately | Alan Cox | 2004-11-05 | 1 | -1/+0 |
| * | Close a race in swapoff(). Here are the gory details: | David Schultz | 2004-11-05 | 1 | -70/+53 |
| * | Retire b_magic now, we have the bufobj containing the same hint. | Poul-Henning Kamp | 2004-11-04 | 1 | -1/+0 |
| * | De-couple our I/O bio request from the embedded bio in buf by explicitly | Poul-Henning Kamp | 2004-11-04 | 1 | -1/+6 |
| * | Remove buf->b_dev field. | Poul-Henning Kamp | 2004-11-04 | 1 | -4/+2 |
| * | The synchronization provided by vm object locking has eliminated the | Alan Cox | 2004-11-03 | 5 | -23/+5 |
| * | Introduce a Boolean variable wakeup_needed to avoid repeated, unnecessary | Alan Cox | 2004-10-31 | 1 | -2/+9 |
| * | During traversal of the active queue by vm_pageout_page_stats(), try | Alan Cox | 2004-10-30 | 1 | -1/+10 |
| * | Eliminate an unused but initialized variable. | Alan Cox | 2004-10-30 | 1 | -2/+0 |
| * | Add an assignment statement that I omitted from the previous revision. | Alan Cox | 2004-10-30 | 1 | -0/+1 |
| * | Assert that the containing vm object is locked in vm_page_cache() and | Alan Cox | 2004-10-28 | 1 | -0/+2 |
| * | Fix a INVARIANTS-only bug introduced in Revision 1.104: | Bosko Milekic | 2004-10-27 | 1 | -1/+5 |
| * | During traversal of the active queue, try locking the page's containing | Alan Cox | 2004-10-27 | 1 | -4/+12 |
| * | Also check that the sectormask is bigger than zero. | Poul-Henning Kamp | 2004-10-26 | 1 | -1/+3 |
| * | Put the I/O block size in bufobj->bo_bsize. | Poul-Henning Kamp | 2004-10-26 | 1 | -1/+1 |
| * | Don't clear flags we just checked were not set. | Poul-Henning Kamp | 2004-10-26 | 1 | -1/+0 |
| * | Assert that the containing vm object is locked in vm_page_flash(). | Alan Cox | 2004-10-25 | 1 | -0/+2 |
| * | Assert that the containing vm object is locked in vm_page_busy() and | Alan Cox | 2004-10-24 | 1 | -0/+4 |
| * | Move the buffer method vector (buf->b_op) to the bufobj. | Poul-Henning Kamp | 2004-10-24 | 3 | -10/+3 |
| * | Acquire the vm object lock before rather than after calling | Alan Cox | 2004-10-24 | 1 | -4/+5 |
| * | Use VM_ALLOC_NOBUSY instead of calling vm_page_wakeup(). | Alan Cox | 2004-10-24 | 2 | -11/+3 |
| * | Introduce VM_ALLOC_NOBUSY, an option to vm_page_alloc() and vm_page_grab() | Alan Cox | 2004-10-24 | 2 | -2/+4 |
| * | Add b_bufobj to struct buf which eventually will eliminate the need for b_vp. | Poul-Henning Kamp | 2004-10-22 | 1 | -4/+3 |
| * | Move the VI_BWAIT flag into no bo_flag element of bufobj and call it BO_WWAIT | Poul-Henning Kamp | 2004-10-21 | 1 | -12/+3 |
| * | Correct two errors in PG_BUSY management by vm_page_cowfault(). Both | Alan Cox | 2004-10-18 | 1 | -2/+1 |
| * | Assert that the containing object is locked in vm_page_io_start() and | Alan Cox | 2004-10-17 | 1 | -0/+2 |
| * | Remove unnecessary check for curthread == NULL. | Alan Cox | 2004-10-17 | 1 | -1/+1 |
| * | Put on my peril sensitive sunglasses and add a flags field to the internal | Peter Wemm | 2004-10-11 | 1 | -2/+18 |
| * | In the previous revision, I did not intend to change the default value | Brian Feldman | 2004-10-09 | 1 | -1/+1 |