David E. O'Brien
874651b13c
Use __FBSDID().
2003-06-11 23:50:51 +00:00
Peter Wemm
77e2a274d0
GC unused cpu_wait() function
2003-06-11 05:20:33 +00:00
Alan Cox
2a8f9ab57f
- Finish vm object and page locking in vnode_pager_setsize().
...
- Make some small style changes to vnode_pager_setsize(); most notably,
move two comments to a more logical place.
2003-06-10 20:28:41 +00:00
Poul-Henning Kamp
c1f5a18201
Revert last commit, I have no idea what happened.
2003-06-09 22:51:36 +00:00
Poul-Henning Kamp
47f94c12da
A white-space nit I noticed.
2003-06-09 19:40:34 +00:00
Alan Cox
bc5b057f6c
Hold the vm object's lock when performing vm_page_lookup().
2003-06-09 07:01:05 +00:00
Alan Cox
3471677cc9
Don't use vm_object_set_flag() to initialize the vm object's flags.
2003-06-09 06:50:02 +00:00
Alan Cox
138449dc19
- Properly handle the paging_in_progress case on two vm objects in
...
vm_object_deallocate().
- Remove vm_object_pip_sleep().
2003-06-08 23:01:24 +00:00
Alan Cox
984a95d563
Lock the kernel object in kmem_alloc().
2003-06-07 23:24:10 +00:00
Alan Cox
36d1fdf5a2
Teach vm_page_grab() how to handle the vm object's lock.
2003-06-07 23:22:04 +00:00
Alan Cox
19ba4c8e49
Assert that the vm object is locked on entry to swap_pager_freespace().
2003-06-07 20:43:16 +00:00
Alan Cox
d7fc221044
Pass the vm object to vm_object_collapse() with its lock held.
2003-06-07 02:29:17 +00:00
Poul-Henning Kamp
8f16d45326
Fix NFS file swapping, I broke it 3 months ago it seems.
2003-06-05 21:57:19 +00:00
Alan Cox
40b808a842
- Extend the scope of the backing object's lock in vm_object_collapse().
2003-06-05 20:55:27 +00:00
Alan Cox
b72b0115ee
- Add further vm object locking to vm_object_deallocate(), specifically,
...
for accessing a vm object's shadows.
2003-06-04 21:07:42 +00:00
Alan Cox
bc73ee3fe7
- Add VM_OBJECT_TRYLOCK().
2003-06-04 19:59:23 +00:00
Alan Cox
3b68228cce
- Add vm object locking to vm_object_deallocate(). (Still more
...
changes are required.)
- Remove special-case macros for kmem object locking. They are
no longer used.
2003-06-04 06:00:55 +00:00
Alan Cox
bdbfbaafcc
Add vm object locking to vm_object_coalesce().
2003-06-03 19:37:01 +00:00
Alan Cox
cccf11b865
Change kernel_object and kmem_object to (&kernel_object_store) and
...
(&kmem_object_store), respectively. This allows the address of these
objects to be resolved at link-time rather than run-time.
2003-06-01 23:59:48 +00:00
Poul-Henning Kamp
c5d771b807
Prepend _ to internal union members to avoid ambiguity.
...
Found by: FlexeLint
2003-05-31 19:52:15 +00:00
Poul-Henning Kamp
0b074f6c93
Remove unused variables
...
Found by: FlexeLint
2003-05-31 19:51:05 +00:00
Alan Cox
34567de7fc
Add vm object locking to vm_object_madvise().
2003-05-31 19:40:57 +00:00
David Schultz
e92686d065
If we seem to be out of VM, don't allow the pagedaemon to kill
...
processes in the first pass. Among other things, this will give
us a chance to launder vnode-backed pages before concluding that
we need more swap. This is particularly useful for systems that
have no swap.
While here, update a comment and remove some long-unused code.
Reported by: Lucky Green <shamrock@cypherpunks.to>
Suggested by: dillon
Approved by: re (rwatson)
2003-05-19 00:51:07 +00:00
Alan Cox
1c500307d1
Reduce the size of a vm object by converting its shadow list from a TAILQ
...
to a LIST.
Approved by: re (rwatson)
2003-05-18 04:10:16 +00:00
John Baldwin
90af4afacb
- Merge struct procsig with struct sigacts.
...
- Move struct sigacts out of the u-area and malloc() it using the
M_SUBPROC malloc bucket.
- Add a small sigacts_*() API for managing sigacts structures: sigacts_alloc(),
sigacts_free(), sigacts_copy(), sigacts_share(), and sigacts_shared().
- Remove the p_sigignore, p_sigacts, and p_sigcatch macros.
- Add a mutex to struct sigacts that protects all the members of the struct.
- Add sigacts locking.
- Remove Giant from nosys(), kill(), killpg(), and kern_sigaction() now
that sigacts is locked.
- Several in-kernel functions such as psignal(), tdsignal(), trapsignal(),
and thread_stopped() are now MP safe.
Reviewed by: arch@
Approved by: re (rwatson)
2003-05-13 20:36:02 +00:00
Alan Cox
3a12f5da1f
Give the kmem object's mutex a unique name, instead of "vm object",
...
to avoid false reports of lock-order reversal with a system map mutex.
Approved by: re (jhb)
2003-05-09 02:13:23 +00:00
Alan Cox
658ad5fff5
Lock the vm_object when performing vm_pager_deallocate().
2003-05-06 02:45:28 +00:00
Alan Cox
f7dd7b637b
Extend the scope of the vm_object lock in vm_object_terminate().
2003-05-04 19:23:40 +00:00
Alan Cox
c4a1d732a3
Avoid a lock-order reversal and implement vm_object locking
...
in vm_pageout_page_free().
2003-05-04 06:56:27 +00:00
Alan Cox
ad682c4825
Lock the vm_object on entry to vm_object_vndeallocate().
2003-05-03 20:28:26 +00:00
Alan Cox
bff99f0d12
- Revert kern/vfs_subr.c revision 1.444. The vm_object's size isn't
...
trustworthy for vnode-backed objects.
- Restore the old behavior of vm_object_page_remove() when the end
of the given range is zero. Add a comment to vm_object_page_remove()
regarding this behavior.
Reported by: iedowse
2003-05-03 08:09:24 +00:00
Alan Cox
f92039a1fc
Move a declaration to its proper place.
2003-05-03 04:21:16 +00:00
Alan Cox
6be365253d
Lock the vm_object when updating its shadow list.
2003-05-02 04:55:21 +00:00
Alan Cox
4f7c7f6e23
Simplify the removal of a shadow object in vm_object_collapse().
2003-05-02 03:00:21 +00:00
Alan Cox
8e3a76fb6f
Extend the scope of the vm_object locking in vm_object_split().
2003-05-01 05:06:33 +00:00
Alan Cox
1534781737
- Update the vm_object locking in vm_object_reference().
...
- Convert some dead code in vm_object_reference() into a comment.
2003-05-01 03:29:20 +00:00
Alan Cox
4e73db5f40
Increase the scope of the vm_object lock in vm_map_delete().
2003-04-30 19:18:09 +00:00
Alan Cox
85b1dc89b6
Eliminate an unused parameter from vm_pageout_object_deactivate_pages().
2003-04-30 03:08:16 +00:00
Alan Cox
8ba20a48bd
Add vm_object locking to vmspace_swap_count().
2003-04-30 00:43:17 +00:00
Alan Cox
24b3046aac
Remove unused declarations and definitions.
2003-04-29 18:49:25 +00:00
Alexander Kabaev
104a9b7e3e
Deprecate machine/limits.h in favor of new sys/limits.h.
...
Change all in-tree consumers to include <sys/limits.h>
Discussed on: standards@
Partially submitted by: Craig Rodrigues <rodrigc@attbi.com>
2003-04-29 13:36:06 +00:00
Alan Cox
17cd3642fe
- Lock the vm_object when performing swap_pager_isswapped().
...
- Assert that the vm_object is locked in swap_pager_isswapped().
2003-04-28 17:13:53 +00:00
Alan Cox
82774d8040
uma_zone_set_obj() must perform VM_OBJECT_LOCK_INIT() if the caller
...
provides storage for the vm_object.
2003-04-28 06:11:32 +00:00
Alan Cox
ed6a786313
- Define VM_OBJECT_LOCK_INIT().
...
- Avoid repeatedly mtx_init()ing and mtx_destroy()ing the vm_object's lock
using UMA's uminit callback, in this case, vm_object_zinit().
2003-04-28 03:45:35 +00:00
Alan Cox
c9917419ef
- Tell witness that holding two or more vm_object locks is okay.
...
- In vm_object_deallocate(), lock the child when removing the parent
from the child's shadow list.
2003-04-27 20:07:57 +00:00
Alan Cox
570a2f4ac5
Various changes to vm_object_shadow(): (1) update the vm_object locking,
...
(2) remove a pointless assertion, and (3) make a trivial change to a
comment.
2003-04-27 05:43:03 +00:00
Alan Cox
ecde4b3218
Various changes to vm_object_page_remove():
...
- Eliminate an odd, special-case feature:
if start == end == 0 then all pages are removed. Only one caller
used this feature and that caller can trivially pass the object's
size.
- Assert that the vm_object is locked on entry; don't bother testing
for a NULL vm_object.
- Style: Fix lines that are longer than 80 characters.
2003-04-26 23:41:30 +00:00
Alan Cox
c829b9d0fc
- Lock the vm_object on entry to vm_object_terminate().
2003-04-26 19:36:19 +00:00
Alan Cox
1ca5895341
- Convert vm_object_pip_wait() from using tsleep() to msleep().
...
- Make vm_object_pip_sleep() static.
- Lock the vm_object when performing vm_object_pip_wait().
2003-04-26 18:33:18 +00:00
Alan Cox
155080d31e
- Extend the scope of two existing vm_object locks to cover
...
swap_pager_freespace().
2003-04-26 05:30:56 +00:00