| Commit message (Expand) | Author | Age | Files | Lines |
* | Do not drop vm_map lock between doing vm_map_remove() and vm_map_insert(). | kib | 2007-08-20 | 3 | -18/+40 |
* | Remove comment that is no longer quite true. | kib | 2007-08-18 | 1 | -3/+0 |
* | Fix the phys_pager in the way similar to the rev. 1.83 of the | kib | 2007-08-18 | 1 | -22/+25 |
* | Protect the creation of the device pager with the dev_pager_mtx. Lookup | kib | 2007-08-07 | 1 | -12/+24 |
* | Consider a scenario in which one processor, call it Pt, is performing | alc | 2007-08-05 | 4 | -18/+20 |
* | Do not acquire Giant unconditionally around the calls to the cdevsw | kib | 2007-08-05 | 1 | -5/+0 |
* | Add a counter for the total number of pages cached and support for | alc | 2007-07-27 | 2 | -0/+3 |
* | When we do open, we should lock the vnode exclusively. This fixes few races: | pjd | 2007-07-26 | 1 | -3/+3 |
* | Two changes to vm_fault_additional_pages(): | alc | 2007-07-20 | 1 | -19/+11 |
* | Eliminate two unused functions: vm_phys_alloc_pages() and | alc | 2007-07-14 | 3 | -40/+17 |
* | Eliminate dead code, specifically, an unused sysctl: "vm.idlezero_maxrun". | alc | 2007-07-14 | 1 | -4/+0 |
* | Update a comment describing the page queues. | alc | 2007-07-13 | 1 | -6/+7 |
* | Eliminate dead code. | alc | 2007-07-12 | 1 | -10/+0 |
* | Correct a problem in the ZERO_COPY_SOCKETS option, specifically, in | alc | 2007-07-10 | 1 | -2/+22 |
* | Eliminate the special case handling of OBJT_DEVICE objects in | alc | 2007-07-08 | 1 | -10/+0 |
* | When a cached page is reactivated in vm_fault(), update the counter that | alc | 2007-07-06 | 1 | -8/+10 |
* | Add freebsd6_ wrappers for mmap/lseek/pread/pwrite/truncate/ftruncate | peter | 2007-07-04 | 1 | -0/+14 |
* | In the previous revision, when I replaced the unconditional acquisition | alc | 2007-07-02 | 1 | -11/+10 |
* | Eliminate the use of Giant from vm_daemon(). Replace the unconditional | alc | 2007-06-26 | 1 | -21/+27 |
* | Eliminate GIANT_REQUIRED from swap_pager_putpages(). | alc | 2007-06-24 | 1 | -1/+0 |
* | Eliminate unnecessary checks from vm_pageout_clean(): The page that is | alc | 2007-06-18 | 1 | -7/+4 |
* | Don't declare inline a function which isn't. | mjacob | 2007-06-17 | 1 | -1/+1 |
* | Make sure object is NULL- there is a possible case where you could | mjacob | 2007-06-17 | 1 | -1/+2 |
* | Initialize reqpage to zero. | mjacob | 2007-06-17 | 1 | -1/+1 |
* | If attempting to cache a "busy", panic instead of printing a diagnostic | alc | 2007-06-16 | 1 | -2/+1 |
* | Update a comment. | alc | 2007-06-16 | 1 | -7/+7 |
* | Enable the new physical memory allocator. | alc | 2007-06-16 | 7 | -727/+120 |
* | Eliminate dead code: We have not performed pageouts on the kernel object | alc | 2007-06-13 | 1 | -3/+1 |
* | Conditionally acquire Giant in vm_contig_launder_page(). | alc | 2007-06-11 | 1 | -0/+4 |
* | Optimize vmmeter locking. | attilio | 2007-06-10 | 4 | -20/+10 |
* | Add a new physical memory allocator. However, do not yet connect it | alc | 2007-06-10 | 2 | -0/+741 |
* | Commit 14/14 of sched_lock decomposition. | jeff | 2007-06-05 | 4 | -41/+63 |
* | Do proper "locking" for missing vmmeters part. | attilio | 2007-06-04 | 5 | -23/+33 |
* | Rework the PCPU_* (MD) interface: | attilio | 2007-06-04 | 1 | -6/+6 |
* | - Move rusage from being per-process in struct pstats to per-thread in | jeff | 2007-06-01 | 2 | -11/+6 |
* | Revert VMCNT_* operations introduction. | attilio | 2007-05-31 | 14 | -184/+177 |
* | Revert UF_OPENING workaround for CURRENT. | kib | 2007-05-31 | 1 | -1/+1 |
* | Add functions sx_xlock_sig() and sx_slock_sig(). | attilio | 2007-05-31 | 1 | -2/+2 |
* | Eliminate the reactivation of cached pages in vm_fault_prefault() and | alc | 2007-05-22 | 2 | -8/+16 |
* | - rename VMCNT_DEC to VMCNT_SUB to reflect the count argument. | jeff | 2007-05-20 | 1 | -1/+1 |
* | - define and use VMCNT_{GET,SET,ADD,SUB,PTR} macros for manipulating | jeff | 2007-05-18 | 14 | -177/+184 |
* | Update stale comment on protecting UMA per-CPU caches: we now use | rwatson | 2007-05-09 | 1 | -7/+7 |
* | Define every architecture as either VM_PHYSSEG_DENSE or | alc | 2007-05-05 | 2 | -2/+28 |
* | Remove some code from vmspace_fork() that became redundant after | alc | 2007-04-26 | 1 | -4/+0 |
* | Audit pathnames looked up in swapon(2) and swapoff(2). | rwatson | 2007-04-23 | 1 | -2/+4 |
* | Correct contigmalloc2()'s implementation of M_ZERO. Specifically, | alc | 2007-04-19 | 1 | -1/+1 |
* | Correct two comments. | alc | 2007-04-19 | 1 | -2/+2 |
* | Minor typo fix, noticed while I was going through *_pager.c files. | keramida | 2007-04-10 | 1 | -1/+1 |
* | When KVA is exhausted, try the vm_lowmem event for the last time before | pjd | 2007-04-05 | 1 | -4/+14 |
* | Fix a problem for file systems that don't implement VOP_BMAP() operation. | pjd | 2007-04-05 | 1 | -0/+2 |