| Commit message (Expand) | Author | Age | Files | Lines |
| * | cdev_pager_allocate(): ensure that the cdev_pager_ops ctr is called only once | Konstantin Belousov | 2024-05-19 | 1 | -19/+51 |
| * | sys: Remove $FreeBSD$: one-line .c pattern | Warner Losh | 2023-08-23 | 1 | -2/+0 |
| * | vm_object_kvme_type(): reimplement by embedding kvme_type into pagerops | Konstantin Belousov | 2021-05-22 | 1 | -0/+3 |
| * | Constify vm_pager-related virtual tables. | Konstantin Belousov | 2021-05-22 | 1 | -5/+6 |
| * | Don't hold the object lock while calling getpages. | Jeff Roberson | 2020-01-19 | 1 | -1/+2 |
| * | Make page busy state deterministic on free. Pages must be xbusy when | Jeff Roberson | 2019-12-22 | 1 | -4/+6 |
| * | (4/6) Protect page valid with the busy lock. | Jeff Roberson | 2019-10-15 | 1 | -1/+1 |
| * | (2/6) Don't release xbusy in vm_page_remove(), defer to vm_page_free_prep(). | Jeff Roberson | 2019-10-15 | 1 | -0/+1 |
| * | Change synchonization rules for vm_page reference counting. | Mark Johnston | 2019-09-09 | 1 | -4/+0 |
| * | Add a return value to vm_page_remove(). | Mark Johnston | 2019-06-26 | 1 | -1/+1 |
| * | Change the vm_ooffset_t type to unsigned. | Konstantin Belousov | 2018-12-02 | 1 | -3/+3 |
| * | sys: further adoption of SPDX licensing ID tags. | Pedro F. Giffuni | 2017-11-20 | 1 | -0/+2 |
| * | All these files need sys/vmmeter.h, but now they got it implicitly | Gleb Smirnoff | 2017-04-17 | 1 | -0/+1 |
| * | Renumber copyright clause 4 | Warner Losh | 2017-02-28 | 1 | -1/+1 |
| * | Consistently handle negative or wrapping offsets in the mmap(2) syscalls. | Konstantin Belousov | 2017-02-12 | 1 | -1/+11 |
| * | Add a new populate() pager method and extend device pager ops vector | Konstantin Belousov | 2016-12-08 | 1 | -0/+21 |
| * | Split long line instead of unindenting it. Add KASSERT() verifying | Konstantin Belousov | 2016-10-30 | 1 | -1/+4 |
| * | Avoid duplicated calls to pmap_page_get_memattr(). | Konstantin Belousov | 2016-05-01 | 1 | -5/+13 |
| * | vm_page_replace: add wrapper to KASSERT about old page | Conrad Meyer | 2015-12-17 | 1 | -2/+1 |
| * | A change to KPI of vm_pager_get_pages() and underlying VOP_GETPAGES(). | Gleb Smirnoff | 2015-12-16 | 1 | -9/+14 |
| * | Minor cleanup. | Konstantin Belousov | 2015-11-29 | 1 | -26/+12 |
| * | Place VM objects on the object list when created and never remove them. | John Baldwin | 2015-05-08 | 1 | -0/+2 |
| * | Eliminate an unused variable. | Alan Cox | 2015-04-19 | 1 | -2/+0 |
| * | Initialize paddr to handle the case of zero size. | Konstantin Belousov | 2014-03-12 | 1 | -0/+1 |
| * | Correct assertion to assert that the existing device VM object uses the | John Baldwin | 2014-02-11 | 1 | -2/+4 |
| * | Different consumers of the struct vm_page abuse pageq member to keep | Konstantin Belousov | 2013-08-10 | 1 | -2/+2 |
| * | On all the architectures, avoid to preallocate the physical memory | Attilio Rao | 2013-08-09 | 1 | -1/+2 |
| * | Switch the vm_object mutex to be a rwlock. This will enable in the | Attilio Rao | 2013-03-09 | 1 | -11/+12 |
| * | Fix a bug in the device pager code that can trigger an assertion | Kenneth D. Merry | 2013-01-09 | 1 | -1/+2 |
| * | Move the declaration of vm_phys_paddr_to_vm_page() from vm/vm_page.h | Konstantin Belousov | 2012-11-16 | 1 | -0/+1 |
| * | After the PHYS_TO_VM_PAGE() function was de-inlined, the main reason | Konstantin Belousov | 2012-08-05 | 1 | -0/+1 |
| * | Do not double-reference the found vm object in cdev_pager_lookup(). | Konstantin Belousov | 2012-05-18 | 1 | -1/+0 |
| * | Add new pager type, OBJT_MGTDEVICE. It provides the device pager | Konstantin Belousov | 2012-05-12 | 1 | -8/+46 |
| * | Update the device pager interface, while keeping the compatibility | Konstantin Belousov | 2011-11-15 | 1 | -75/+160 |
| * | Fix a race in the device pager allocation. If another thread won and | Konstantin Belousov | 2011-07-30 | 1 | -2/+9 |
| * | Handle a race between device_pager and devsw in a more graceful manner: | Attilio Rao | 2011-07-06 | 1 | -2/+4 |
| * | Eliminate duplication of the fake page code and zone by the device and sg | Alan Cox | 2011-03-11 | 1 | -61/+3 |
| * | Explicitly initialize the page's queue field to PQ_NONE instead of relying | Alan Cox | 2011-01-17 | 1 | -0/+1 |
| * | Add new make_dev_p(9) flag MAKEDEV_ETERNAL to inform devfs that created | Konstantin Belousov | 2010-08-06 | 1 | -6/+7 |
| * | Eliminate page queues locking around most calls to vm_page_free(). | Alan Cox | 2010-05-06 | 1 | -4/+0 |
| * | On Alan's advice, rather than do a wholesale conversion on a single | Kip Macy | 2010-04-30 | 1 | -6/+13 |
| * | Update d_mmap() to accept vm_ooffset_t and vm_memattr_t. | Robert Noland | 2009-12-29 | 1 | -14/+3 |
| * | Extend the device pager to support different memory attributes on different | John Baldwin | 2009-08-28 | 1 | -5/+15 |
| * | Change the handling of fictitious pages by pmap_page_set_memattr() on | Alan Cox | 2009-07-19 | 1 | -12/+4 |
| * | Add support to the virtual memory system for configuring machine- | Alan Cox | 2009-07-12 | 1 | -26/+43 |
| * | Implement global and per-uid accounting of the anonymous memory. Add | Konstantin Belousov | 2009-06-23 | 1 | -2/+3 |
| * | Validate the page in one place, dev_pager_getpages(), rather than doing it | Alan Cox | 2009-06-22 | 1 | -7/+6 |
| * | Strive for greater consistency among the places that implement real, | Alan Cox | 2009-06-21 | 1 | -0/+1 |
| * | Save previous content of the td_fpop before storing the current | Konstantin Belousov | 2008-09-26 | 1 | -0/+6 |
| * | Preset a device object's alignment ("pg_color") based upon the | Alan Cox | 2008-05-17 | 1 | -1/+5 |