| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix printing of KASSERT message missed in r163604. | Robert Noland | 2008-12-21 | 1 | -1/+1 |
| * | Remove the struct thread unuseful argument from bufobj interface. | Attilio Rao | 2008-10-10 | 1 | -1/+1 |
| * | Fill in a few sysctl descriptions. | Tom Rhodes | 2008-08-03 | 1 | -2/+2 |
| * | One more whitespace nit. | John Baldwin | 2008-07-30 | 1 | -2/+0 |
| * | A few more whitespace fixes. | John Baldwin | 2008-07-30 | 1 | -1/+0 |
| * | Allow VM object creation in ufs_lookup. (If vfs.vmiodirenable is set) | Stephan Uphoff | 2008-05-20 | 1 | -11/+25 |
| * | - Use vm_object_reference_locked() directly from | Jeff Roberson | 2008-03-29 | 1 | -15/+2 |
| * | Correct a long-standing error in vm_object_page_remove(). Specifically, | Alan Cox | 2008-02-26 | 1 | -6/+25 |
| * | Correct a long-standing error in vm_object_deallocate(). Specifically, | Alan Cox | 2008-02-24 | 1 | -1/+4 |
| * | VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used in | Attilio Rao | 2008-01-13 | 1 | -1/+1 |
| * | vn_lock() is currently only used with the 'curthread' passed as argument. | Attilio Rao | 2008-01-10 | 1 | -1/+1 |
| * | Add the superpage reservation system. This is "part 2 of 2" of the | Alan Cox | 2007-12-29 | 1 | -0/+45 |
| * | Prevent the leakage of wired pages in the following circumstances: | Alan Cox | 2007-11-17 | 1 | -1/+13 |
| * | The previous revision, updating vm_object_page_remove() for the new page | Alan Cox | 2007-10-18 | 1 | -1/+2 |
| * | Correct an error of omission in the reimplementation of the page | Alan Cox | 2007-09-27 | 1 | -2/+4 |
| * | Correct an error in the previous revision, specifically, | Alan Cox | 2007-09-25 | 1 | -1/+2 |
| * | Change the management of cached pages (PQ_CACHE) in two fundamental | Alan Cox | 2007-09-25 | 1 | -14/+30 |
| * | Enable the new physical memory allocator. | Alan Cox | 2007-06-16 | 1 | -33/+3 |
| * | Optimize vmmeter locking. | Attilio Rao | 2007-06-10 | 1 | -1/+1 |
| * | Do proper "locking" for missing vmmeters part. | Attilio Rao | 2007-06-04 | 1 | -1/+1 |
| * | Revert VMCNT_* operations introduction. | Attilio Rao | 2007-05-31 | 1 | -1/+1 |
| * | - define and use VMCNT_{GET,SET,ADD,SUB,PTR} macros for manipulating | Jeff Roberson | 2007-05-18 | 1 | -1/+1 |
| * | Prevent a race between vm_object_collapse() and vm_object_split() from | Alan Cox | 2007-03-27 | 1 | -0/+8 |
| * | Change the order of lock reacquisition in vm_object_split() in order to | Alan Cox | 2007-03-22 | 1 | -2/+5 |
| * | Use pause() in vm_object_deallocate() to yield the CPU to the lock holder | John Baldwin | 2007-02-27 | 1 | -1/+1 |
| * | Change the way that unmanaged pages are created. Specifically, | Alan Cox | 2007-02-25 | 1 | -3/+4 |
| * | Change the page's CLEANCHK flag from being a page queue mutex synchronized | Alan Cox | 2007-02-22 | 1 | -15/+15 |
| * | Use FOREACH_PROC_IN_SYSTEM instead of using its unrolled form. | Xin LI | 2007-01-17 | 1 | -1/+1 |
| * | Optimize vm_object_split(). Specifically, make the number of iterations | Alan Cox | 2006-12-17 | 1 | -9/+14 |
| * | Simplify the computation of the new object's size in vm_object_split(). | Alan Cox | 2006-12-16 | 1 | -3/+2 |
| * | The page queues lock is no longer required by vm_page_busy() or | Alan Cox | 2006-10-22 | 1 | -2/+0 |
| * | Replace PG_BUSY with VPO_BUSY. In other words, changes to the page's | Alan Cox | 2006-10-22 | 1 | -7/+7 |
| * | Add _vm_stats and _vm_stats_misc to the sysctl declarations in sysctl.h and | Alan Cox | 2006-08-21 | 1 | -1/+0 |
| * | Reimplement the page's NOSYNC flag as an object-synchronized instead of a | Alan Cox | 2006-08-13 | 1 | -4/+4 |
| * | Introduce a field to struct vm_page for storing flags that are | Alan Cox | 2006-08-09 | 1 | -4/+6 |
| * | When sleeping on a busy page, use the lock from the containing object | Alan Cox | 2006-08-03 | 1 | -6/+6 |
| * | Complete the transition from pmap_page_protect() to pmap_remove_write(). | Alan Cox | 2006-08-01 | 1 | -3/+3 |
| * | Export the number of object bypasses and collapses through sysctl. | Alan Cox | 2006-07-22 | 1 | -0/+8 |
| * | Eliminate OBJ_WRITEABLE. It hasn't been used in a long time. | Alan Cox | 2006-07-21 | 1 | -4/+3 |
| * | Ensure that vm_object_deallocate() doesn't dereference a stale object | Alan Cox | 2006-07-17 | 1 | -6/+13 |
| * | Eliminate a deadlock when creating snapshots. Blocking vn_start_write() must | Tor Egge | 2006-03-02 | 1 | -0/+3 |
| * | Lock the vm_object while checking its type to see if it is a vnode-backed | John Baldwin | 2006-02-21 | 1 | -11/+25 |
| * | - Install a temporary bandaid in vm_object_reference() that will stop | Jeff Roberson | 2006-02-01 | 1 | -5/+5 |
| * | Use the new macros abstracting the page coloring/queues implementation. | Alan Cox | 2006-01-27 | 1 | -4/+4 |
| * | - Avoid calling vm_object_backing_scan() when collapsing an object when | Jeff Roberson | 2006-01-25 | 1 | -1/+3 |
| * | Make vm_object_vndeallocate() static. The external calls to it were | Alan Cox | 2006-01-22 | 1 | -1/+2 |
| * | MI changes: | Alexander Leidinger | 2005-12-31 | 1 | -11/+8 |
| * | Eliminate unneeded preallocation at initialization. | Alan Cox | 2005-12-03 | 1 | -2/+0 |
| * | Use of the ZERO_COPY_SOCKETS options can result in an unusual state that | Alan Cox | 2005-10-22 | 1 | -4/+12 |
| * | Don't allow pagedaemon to skip pages while scanning PQ_ACTIVE or PQ_INACTIVE | Tor Egge | 2005-08-10 | 1 | -0/+5 |