| Commit message (Expand) | Author | Age | Files | Lines |
* | Actually biofinish(struct bio *, struct devstat *, int error) is more general | phk | 2001-05-06 | 1 | -3/+1 |
* | Putting sys/lockmgr.h in here allows us to depollute userland includes | markm | 2001-05-03 | 1 | -0/+2 |
* | Undo part of the tangle of having sys/lock.h and sys/mutex.h included in | markm | 2001-05-01 | 14 | -18/+30 |
* | Revert consequences of changes to mount.h, part 2. | grog | 2001-04-29 | 2 | -4/+0 |
* | Address a number of problems with sysctl_vm_zone(). | alfred | 2001-04-27 | 1 | -11/+29 |
* | Correct #includes to work with fixed sys/mount.h. | grog | 2001-04-23 | 2 | -0/+4 |
* | vnode_pager_freepage() is really vm_page_free() in disguise, | alfred | 2001-04-19 | 2 | -15/+7 |
* | Protect pager object creation with sx locks. | alfred | 2001-04-18 | 3 | -33/+43 |
* | Fix the botched rev 1.59 where I made it such that without INVARIANTS | alfred | 2001-04-18 | 1 | -2/+2 |
* | This patch removes the VOP_BWRITE() vector. | phk | 2001-04-17 | 1 | -0/+2 |
* | use TAILQ_FOREACH, fix a comment's location | alfred | 2001-04-15 | 3 | -15/+6 |
* | if/panic -> KASSERT | alfred | 2001-04-13 | 1 | -7/+8 |
* | protect pbufs and associated counts with a mutex | alfred | 2001-04-13 | 3 | -2/+14 |
* | use %p for pointer printf, include sys/systm.h for printf proto | alfred | 2001-04-13 | 1 | -6/+7 |
* | Use a macro wrapper over printf along with KASSERT to reduce the amount | alfred | 2001-04-13 | 1 | -40/+15 |
* | remove truncated part from commment | alfred | 2001-04-12 | 1 | -1/+1 |
* | Convert the allproc and proctree locks from lockmgr locks to sx locks. | jhb | 2001-03-28 | 4 | -15/+20 |
* | Catch up to header include changes: | jhb | 2001-03-28 | 1 | -0/+1 |
* | Export intrnames and intrcnt as sysctls (hw.nintr, hw.intrnames and | tmm | 2001-03-23 | 1 | -0/+30 |
* | Fix a lock reversal problem in the VM subsystem related to threaded | dillon | 2001-03-14 | 3 | -0/+10 |
* | Temporarily remove the vm_map_simplify() call from vm_map_insert(). The | dillon | 2001-03-14 | 1 | -0/+7 |
* | When creating a shadow vm_object in vmspace_fork(), only one | iedowse | 2001-03-09 | 1 | -0/+4 |
* | Unrevert the pmap_map() changes. They weren't broken on x86. | jhb | 2001-03-07 | 2 | -17/+10 |
* | Back out the pmap_map() change for now, it isn't completely stable on the | jhb | 2001-03-07 | 2 | -10/+17 |
* | - Rework pmap_map() to take advantage of direct-mapped segments on | jhb | 2001-03-06 | 2 | -17/+10 |
* | Simplify vm_object_deallocate(), by decrementing the refcount first. | alfred | 2001-03-04 | 1 | -18/+13 |
* | Allocate vm_page_array and vm_page_buckets from the end of the biggest chunk | gallatin | 2001-03-01 | 1 | -18/+16 |
* | If we intend to make the page writable without requiring another fault, | dillon | 2001-02-28 | 1 | -6/+6 |
* | Introduce per-swap area accounting in the VM system, and export | rwatson | 2001-02-23 | 2 | -3/+42 |
* | Fix formatting bugs introduced in sysctl_vm_zone() by the previous commit. | des | 2001-02-22 | 1 | -2/+7 |
* | Implement a unified run queue and adjust priority levels accordingly. | jake | 2001-02-12 | 2 | -4/+5 |
* | Change and clean the mutex lock interface. | bmilekic | 2001-02-09 | 7 | -64/+64 |
* | Mechanical change to use <sys/queue.h> macro API instead of | phk | 2001-02-04 | 4 | -6/+6 |
* | This commit represents work mainly submitted by Tor and slightly modified | dillon | 2001-02-04 | 1 | -7/+23 |
* | - Doh, lock faultin() with proc lock in scheduler(). | jhb | 2001-01-25 | 1 | -0/+6 |
* | Convert all simplelocks to mutexes and remove the simplelock implementations. | jasone | 2001-01-24 | 1 | -6/+5 |
* | Argh, I didn't get this test right when I converted it. Break this up | jhb | 2001-01-24 | 1 | -10/+9 |
* | - Catch up to proc flag changes. | jhb | 2001-01-24 | 2 | -11/+21 |
* | Add mtx_assert()'s to verify that kmem_alloc() and kmem_free() are called | jhb | 2001-01-24 | 1 | -0/+3 |
* | - Catch up to proc flag changes. | jhb | 2001-01-24 | 1 | -27/+43 |
* | - Catch up to proc flag changes. | jhb | 2001-01-24 | 1 | -1/+3 |
* | Add missing include. | jhb | 2001-01-24 | 1 | -0/+1 |
* | Add mibs to hold the number of forks since boot. New mibs are: | ume | 2001-01-23 | 1 | -0/+16 |
* | Sigh. atomic_add_int takes a pointer, not an integer. | jake | 2001-01-23 | 1 | -4/+4 |
* | Use atomic operations to update the stat counters. | des | 2001-01-23 | 1 | -4/+4 |
* | Call vm_zone_init() at the appropriate time. | des | 2001-01-22 | 1 | -0/+2 |
* | Give this code a major facelift: | des | 2001-01-22 | 2 | -235/+167 |
* | First step towards an MP-safe zone allocator: | des | 2001-01-21 | 2 | -43/+5 |
* | fix comment which was outdated 3 years ago | alfred | 2000-12-29 | 1 | -14/+13 |
* | clean up kmem_suballoc(): | alfred | 2000-12-29 | 1 | -4/+4 |