| Age | Commit message (Expand) | Author | Files | Lines |
| 2021-03-31 | Introduce UAO_USES_SWHASH() and use tabs instead of spaces in #defines. |  mpi | 1 | -25/+26 |
| 2021-03-26 | Remove parenthesis around return value to reduce the diff with NetBSD. |  mpi | 13 | -176/+176 |
| 2021-03-20 | Sync some comments in order to reduce the difference with NetBSD. |  mpi | 9 | -292/+463 |
| 2021-03-12 | spelling |  jsg | 11 | -27/+27 |
| 2021-03-05 | ansi |  jsg | 1 | -9/+5 |
| 2021-03-04 | Modify `uvmexp.swpgonly' atomically, required for uvm_fault() w/o KERNEL_LOCK() |  mpi | 6 | -17/+24 |
| 2021-03-04 | Bring back previous fix for UVM vnode deadlock. |  mpi | 3 | -49/+95 |
| 2021-03-02 | Fix the deadlock between uvn_io() and uvn_flush() by restarting the fault. |  mpi | 2 | -5/+10 |
| 2021-03-02 | Revert the fix for the deadlock between uvn_io() and uvn_flush(). |  mpi | 2 | -95/+44 |
| 2021-03-01 | If an anon is associated with a page, acquire its lock before any modification. |  mpi | 1 | -3/+34 |
| 2021-03-01 | Move the top part of uvm_fault_lower(), the lookup, in its own function. |  mpi | 1 | -76/+98 |
| 2021-02-23 | remove unused uvm_mapent_bias() |  jsg | 1 | -35/+1 |
| 2021-02-23 | Move `pgo_fault' handler outside of uvm_fault_lower(). |  mpi | 1 | -25/+32 |
| 2021-02-16 | Comments & style cleanup, no functional change intended. |  mpi | 1 | -224/+284 |
| 2021-02-15 | Fix double unlock in uvmfault_anonget(). |  mpi | 1 | -3/+3 |
| 2021-02-08 | Revert the convertion of per-process thread into a SMR_TAILQ. |  mpi | 1 | -2/+2 |
| 2021-01-19 | (re)Introduce locking for amaps & anons. |  mpi | 8 | -98/+291 |
| 2021-01-16 | Move `access_type' to the fault context. |  mpi | 1 | -20/+20 |
| 2021-01-11 | Assert that the KERNEL_LOCK() is held in uao_set_swslot(). |  mpi | 1 | -1/+3 |
| 2021-01-09 | Enforce range with sysctl_int_bounded in swap_encrypt_ctl |  gnezdo | 1 | -2/+3 |
| 2021-01-02 | uvm: uvm_fault_lower(): don't sleep on lbolt |  cheloha | 1 | -2/+3 |
| 2020-12-28 | Use per-CPU counters for fault and stats counters reached in uvm_fault(). |  mpi | 5 | -56/+147 |
| 2020-12-15 | Remove the assertion in uvm_km_pgremove(). |  mpi | 1 | -2/+1 |
| 2020-12-14 | Grab the KERNEL_LOCK() or ensure it's held when poking at swap data structures. |  mpi | 3 | -8/+18 |
| 2020-12-08 | Use a while loop instead of goto in uvm_fault(). |  mpi | 1 | -34/+23 |
| 2020-12-07 | Convert the per-process thread list into a SMR_TAILQ. |  mpi | 1 | -2/+2 |
| 2020-12-02 | Document that the page queue must only be locked if the page is managed. |  mpi | 1 | -5/+7 |
| 2020-12-01 | Turn uvm_pagealloc() mp-safe by checking uvmexp global with pageqlock held. |  mpi | 4 | -59/+62 |
| 2020-11-27 | Set the correct IPL for `pageqlock' now that it is grabbed from interrupt. |  mpi | 1 | -2/+2 |
| 2020-11-24 | Grab the `pageqlock' before calling uvm_pageclean() as intended. |  mpi | 5 | -11/+35 |
| 2020-11-19 | Move logic handling lower faults, case 2, to its own function. |  mpi | 1 | -63/+77 |
| 2020-11-16 | Remove Case2 goto, use a simple if () instead. |  mpi | 1 | -23/+17 |
| 2020-11-13 | Use a helper to look for existing mapping & return if there's an anon. |  mpi | 1 | -56/+81 |
| 2020-11-13 | Move the logic dealing with faults 1A & 1B to its own function. |  mpi | 1 | -151/+173 |
| 2020-11-13 | Introduce amap_adjref_anons() an helper to reference count amaps. |  mpi | 2 | -51/+61 |
| 2020-11-06 | Remove unused `anon' argument from uvmfault_unlockall(). |  mpi | 3 | -25/+23 |
| 2020-10-26 | Fix a deadlock between uvn_io() and uvn_flush(). While faulting on a |  anton | 2 | -44/+95 |
| 2020-10-24 | We will soon have DRM on powerpc64. |  kettenis | 1 | -2/+3 |
| 2020-10-21 | move the backwards-stack vm_minsaddr check from hppa trap.c to uvm_grow(), |  deraadt | 1 | -1/+5 |
| 2020-10-21 | Constify and use C99 initializer for "struct uvm_pagerops". |  mpi | 7 | -41/+53 |
| 2020-10-21 | Move the top part of uvm_fault() (lookups, checks, etc) in their own function. |  mpi | 1 | -113/+170 |
| 2020-10-20 | Remove guard, uao_init() is called only once and no other function use one. |  mpi | 1 | -7/+1 |
| 2020-10-19 | Clear vmspace pointer in struct process before calling uvmspace_free(9). |  kettenis | 1 | -2/+4 |
| 2020-10-19 | Serialize accesses to "struct vmspace" and document its refcounting. |  mpi | 3 | -12/+31 |
| 2020-10-13 | typo in comment |  mpi | 1 | -2/+2 |
| 2020-10-12 | Use KASSERT() instead of if(x) panic() for NULL dereference checks. |  mpi | 1 | -20/+17 |
| 2020-10-09 | Remove unecesary includes. |  mpi | 1 | -8/+1 |
| 2020-10-07 | Do not release the KERNEL_LOCK() when mmap(2)ing files. |  mpi | 1 | -6/+11 |
| 2020-10-04 | Recent changes for PROT_NONE pages to not count against resource limits, |  deraadt | 1 | -2/+2 |
| 2020-09-29 | Introduce a helper to check if all available swap is in use. |  mpi | 4 | -18/+27 |