2011-02-02 18:25:27 +03:00
|
|
|
/* $NetBSD: uvm_glue.c,v 1.147 2011/02/02 15:25:27 chuck Exp $ */
|
1998-02-05 09:25:08 +03:00
|
|
|
|
2001-05-25 08:06:11 +04:00
|
|
|
/*
|
1998-02-05 09:25:08 +03:00
|
|
|
* Copyright (c) 1997 Charles D. Cranor and Washington University.
|
2001-05-25 08:06:11 +04:00
|
|
|
* Copyright (c) 1991, 1993, The Regents of the University of California.
|
1998-02-05 09:25:08 +03:00
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* The Mach Operating System project at Carnegie-Mellon University.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2011-02-02 18:25:27 +03:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1998-02-05 09:25:08 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @(#)vm_glue.c 8.6 (Berkeley) 1/5/94
|
1998-02-07 14:07:38 +03:00
|
|
|
* from: Id: uvm_glue.c,v 1.1.2.8 1998/02/07 01:16:54 chs Exp
|
1998-02-05 09:25:08 +03:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (c) 1987, 1990 Carnegie-Mellon University.
|
|
|
|
* All rights reserved.
|
2001-05-25 08:06:11 +04:00
|
|
|
*
|
1998-02-05 09:25:08 +03:00
|
|
|
* Permission to use, copy, modify and distribute this software and
|
|
|
|
* its documentation is hereby granted, provided that both the copyright
|
|
|
|
* notice and this permission notice appear in all copies of the
|
|
|
|
* software, derivative works or modified versions, and any portions
|
|
|
|
* thereof, and that both notices appear in supporting documentation.
|
2001-05-25 08:06:11 +04:00
|
|
|
*
|
|
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
|
1998-02-05 09:25:08 +03:00
|
|
|
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
2001-05-25 08:06:11 +04:00
|
|
|
*
|
1998-02-05 09:25:08 +03:00
|
|
|
* Carnegie Mellon requests users of this software to return to
|
|
|
|
*
|
|
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
|
|
* School of Computer Science
|
|
|
|
* Carnegie Mellon University
|
|
|
|
* Pittsburgh PA 15213-3890
|
|
|
|
*
|
|
|
|
* any improvements or extensions that they make and grant Carnegie the
|
|
|
|
* rights to redistribute these changes.
|
|
|
|
*/
|
|
|
|
|
2001-11-10 10:36:59 +03:00
|
|
|
#include <sys/cdefs.h>
|
2011-02-02 18:25:27 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: uvm_glue.c,v 1.147 2011/02/02 15:25:27 chuck Exp $");
|
2001-11-10 10:36:59 +03:00
|
|
|
|
2001-05-30 19:24:23 +04:00
|
|
|
#include "opt_kgdb.h"
|
2002-07-03 00:27:44 +04:00
|
|
|
#include "opt_kstack.h"
|
2001-05-30 19:24:23 +04:00
|
|
|
#include "opt_uvmhist.h"
|
1998-02-10 17:08:44 +03:00
|
|
|
|
1998-02-05 09:25:08 +03:00
|
|
|
/*
|
|
|
|
* uvm_glue.c: glue functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
2010-04-16 07:21:49 +04:00
|
|
|
#include <sys/kernel.h>
|
|
|
|
|
1998-02-05 09:25:08 +03:00
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/resourcevar.h>
|
|
|
|
#include <sys/buf.h>
|
2007-05-17 18:51:11 +04:00
|
|
|
#include <sys/syncobj.h>
|
2007-08-18 14:07:55 +04:00
|
|
|
#include <sys/cpu.h>
|
2008-01-02 14:48:20 +03:00
|
|
|
#include <sys/atomic.h>
|
2011-01-14 05:06:22 +03:00
|
|
|
#include <sys/lwp.h>
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
#include <uvm/uvm.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXXCDC: do these really belong here?
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* uvm_kernacc: can the kernel access a region of memory
|
|
|
|
*
|
2005-02-08 11:22:37 +03:00
|
|
|
* - used only by /dev/kmem driver (mem.c)
|
1998-02-05 09:25:08 +03:00
|
|
|
*/
|
|
|
|
|
2007-02-22 01:59:35 +03:00
|
|
|
bool
|
2007-03-04 08:59:00 +03:00
|
|
|
uvm_kernacc(void *addr, size_t len, int rw)
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
2007-02-22 01:59:35 +03:00
|
|
|
bool rv;
|
1998-08-13 06:10:37 +04:00
|
|
|
vaddr_t saddr, eaddr;
|
1998-03-09 03:58:55 +03:00
|
|
|
vm_prot_t prot = rw == B_READ ? VM_PROT_READ : VM_PROT_WRITE;
|
|
|
|
|
2000-03-27 00:54:45 +04:00
|
|
|
saddr = trunc_page((vaddr_t)addr);
|
2000-11-25 09:27:59 +03:00
|
|
|
eaddr = round_page((vaddr_t)addr + len);
|
1998-03-09 03:58:55 +03:00
|
|
|
vm_map_lock_read(kernel_map);
|
|
|
|
rv = uvm_map_checkprot(kernel_map, saddr, eaddr, prot);
|
|
|
|
vm_map_unlock_read(kernel_map);
|
|
|
|
|
|
|
|
return(rv);
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef KGDB
|
|
|
|
/*
|
|
|
|
* Change protections on kernel pages from addr to addr+len
|
|
|
|
* (presumably so debugger can plant a breakpoint).
|
|
|
|
*
|
|
|
|
* We force the protection change at the pmap level. If we were
|
|
|
|
* to use vm_map_protect a change to allow writing would be lazily-
|
|
|
|
* applied meaning we would still take a protection fault, something
|
|
|
|
* we really don't want to do. It would also fragment the kernel
|
|
|
|
* map unnecessarily. We cannot use pmap_protect since it also won't
|
|
|
|
* enforce a write-enable request. Using pmap_enter is the only way
|
|
|
|
* we can ensure the change takes place properly.
|
|
|
|
*/
|
1998-03-09 03:58:55 +03:00
|
|
|
void
|
2007-03-04 08:59:00 +03:00
|
|
|
uvm_chgkprot(void *addr, size_t len, int rw)
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
1998-03-09 03:58:55 +03:00
|
|
|
vm_prot_t prot;
|
1998-08-13 06:10:37 +04:00
|
|
|
paddr_t pa;
|
|
|
|
vaddr_t sva, eva;
|
1998-03-09 03:58:55 +03:00
|
|
|
|
|
|
|
prot = rw == B_READ ? VM_PROT_READ : VM_PROT_READ|VM_PROT_WRITE;
|
2000-03-27 00:54:45 +04:00
|
|
|
eva = round_page((vaddr_t)addr + len);
|
|
|
|
for (sva = trunc_page((vaddr_t)addr); sva < eva; sva += PAGE_SIZE) {
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
|
|
|
* Extract physical address for the page.
|
|
|
|
*/
|
2007-02-22 09:05:00 +03:00
|
|
|
if (pmap_extract(pmap_kernel(), sva, &pa) == false)
|
2008-04-11 19:31:37 +04:00
|
|
|
panic("%s: invalid page", __func__);
|
1999-11-13 03:24:38 +03:00
|
|
|
pmap_enter(pmap_kernel(), sva, pa, prot, PMAP_WIRED);
|
1998-03-09 03:58:55 +03:00
|
|
|
}
|
2001-09-11 01:19:08 +04:00
|
|
|
pmap_update(pmap_kernel());
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
a whole bunch of changes to improve performance and robustness under load:
- remove special treatment of pager_map mappings in pmaps. this is
required now, since I've removed the globals that expose the address range.
pager_map now uses pmap_kenter_pa() instead of pmap_enter(), so there's
no longer any need to special-case it.
- eliminate struct uvm_vnode by moving its fields into struct vnode.
- rewrite the pageout path. the pager is now responsible for handling the
high-level requests instead of only getting control after a bunch of work
has already been done on its behalf. this will allow us to UBCify LFS,
which needs tighter control over its pages than other filesystems do.
writing a page to disk no longer requires making it read-only, which
allows us to write wired pages without causing all kinds of havoc.
- use a new PG_PAGEOUT flag to indicate that a page should be freed
on behalf of the pagedaemon when it's unlocked. this flag is very similar
to PG_RELEASED, but unlike PG_RELEASED, PG_PAGEOUT can be cleared if the
pageout fails due to eg. an indirect-block buffer being locked.
this allows us to remove the "version" field from struct vm_page,
and together with shrinking "loan_count" from 32 bits to 16,
struct vm_page is now 4 bytes smaller.
- no longer use PG_RELEASED for swap-backed pages. if the page is busy
because it's being paged out, we can't release the swap slot to be
reallocated until that write is complete, but unlike with vnodes we
don't keep a count of in-progress writes so there's no good way to
know when the write is done. instead, when we need to free a busy
swap-backed page, just sleep until we can get it busy ourselves.
- implement a fast-path for extending writes which allows us to avoid
zeroing new pages. this substantially reduces cpu usage.
- encapsulate the data used by the genfs code in a struct genfs_node,
which must be the first element of the filesystem-specific vnode data
for filesystems which use genfs_{get,put}pages().
- eliminate many of the UVM pagerops, since they aren't needed anymore
now that the pager "put" operation is a higher-level operation.
- enhance the genfs code to allow NFS to use the genfs_{get,put}pages
instead of a modified copy.
- clean up struct vnode by removing all the fields that used to be used by
the vfs_cluster.c code (which we don't use anymore with UBC).
- remove kmem_object and mb_object since they were useless.
instead of allocating pages to these objects, we now just allocate
pages with no object. such pages are mapped in the kernel until they
are freed, so we can use the mapping to find the page to free it.
this allows us to remove splvm() protection in several places.
The sum of all these changes improves write throughput on my
decstation 5000/200 to within 1% of the rate of NetBSD 1.5
and reduces the elapsed time for "make release" of a NetBSD 1.5
source tree on my 128MB pc to 10% less than a 1.5 kernel took.
2001-09-16 00:36:31 +04:00
|
|
|
* uvm_vslock: wire user memory for I/O
|
1998-02-05 09:25:08 +03:00
|
|
|
*
|
|
|
|
* - called from physio and sys___sysctl
|
|
|
|
* - XXXCDC: consider nuking this (or making it a macro?)
|
|
|
|
*/
|
|
|
|
|
1999-06-17 19:47:22 +04:00
|
|
|
int
|
2006-10-05 18:48:32 +04:00
|
|
|
uvm_vslock(struct vmspace *vs, void *addr, size_t len, vm_prot_t access_type)
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
2001-06-02 22:09:08 +04:00
|
|
|
struct vm_map *map;
|
1999-06-17 19:47:22 +04:00
|
|
|
vaddr_t start, end;
|
2001-03-15 09:10:32 +03:00
|
|
|
int error;
|
1999-06-17 19:47:22 +04:00
|
|
|
|
2006-10-05 18:48:32 +04:00
|
|
|
map = &vs->vm_map;
|
2000-03-27 00:54:45 +04:00
|
|
|
start = trunc_page((vaddr_t)addr);
|
|
|
|
end = round_page((vaddr_t)addr + len);
|
2006-03-15 21:09:25 +03:00
|
|
|
error = uvm_fault_wire(map, start, end, access_type, 0);
|
2001-03-15 09:10:32 +03:00
|
|
|
return error;
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
a whole bunch of changes to improve performance and robustness under load:
- remove special treatment of pager_map mappings in pmaps. this is
required now, since I've removed the globals that expose the address range.
pager_map now uses pmap_kenter_pa() instead of pmap_enter(), so there's
no longer any need to special-case it.
- eliminate struct uvm_vnode by moving its fields into struct vnode.
- rewrite the pageout path. the pager is now responsible for handling the
high-level requests instead of only getting control after a bunch of work
has already been done on its behalf. this will allow us to UBCify LFS,
which needs tighter control over its pages than other filesystems do.
writing a page to disk no longer requires making it read-only, which
allows us to write wired pages without causing all kinds of havoc.
- use a new PG_PAGEOUT flag to indicate that a page should be freed
on behalf of the pagedaemon when it's unlocked. this flag is very similar
to PG_RELEASED, but unlike PG_RELEASED, PG_PAGEOUT can be cleared if the
pageout fails due to eg. an indirect-block buffer being locked.
this allows us to remove the "version" field from struct vm_page,
and together with shrinking "loan_count" from 32 bits to 16,
struct vm_page is now 4 bytes smaller.
- no longer use PG_RELEASED for swap-backed pages. if the page is busy
because it's being paged out, we can't release the swap slot to be
reallocated until that write is complete, but unlike with vnodes we
don't keep a count of in-progress writes so there's no good way to
know when the write is done. instead, when we need to free a busy
swap-backed page, just sleep until we can get it busy ourselves.
- implement a fast-path for extending writes which allows us to avoid
zeroing new pages. this substantially reduces cpu usage.
- encapsulate the data used by the genfs code in a struct genfs_node,
which must be the first element of the filesystem-specific vnode data
for filesystems which use genfs_{get,put}pages().
- eliminate many of the UVM pagerops, since they aren't needed anymore
now that the pager "put" operation is a higher-level operation.
- enhance the genfs code to allow NFS to use the genfs_{get,put}pages
instead of a modified copy.
- clean up struct vnode by removing all the fields that used to be used by
the vfs_cluster.c code (which we don't use anymore with UBC).
- remove kmem_object and mb_object since they were useless.
instead of allocating pages to these objects, we now just allocate
pages with no object. such pages are mapped in the kernel until they
are freed, so we can use the mapping to find the page to free it.
this allows us to remove splvm() protection in several places.
The sum of all these changes improves write throughput on my
decstation 5000/200 to within 1% of the rate of NetBSD 1.5
and reduces the elapsed time for "make release" of a NetBSD 1.5
source tree on my 128MB pc to 10% less than a 1.5 kernel took.
2001-09-16 00:36:31 +04:00
|
|
|
* uvm_vsunlock: unwire user memory wired by uvm_vslock()
|
1998-02-05 09:25:08 +03:00
|
|
|
*
|
|
|
|
* - called from physio and sys___sysctl
|
|
|
|
* - XXXCDC: consider nuking this (or making it a macro?)
|
|
|
|
*/
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
void
|
2006-10-05 18:48:32 +04:00
|
|
|
uvm_vsunlock(struct vmspace *vs, void *addr, size_t len)
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
2006-10-05 18:48:32 +04:00
|
|
|
uvm_fault_unwire(&vs->vm_map, trunc_page((vaddr_t)addr),
|
2000-11-25 09:27:59 +03:00
|
|
|
round_page((vaddr_t)addr + len));
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2003-01-18 11:51:40 +03:00
|
|
|
* uvm_proc_fork: fork a virtual address space
|
1998-02-05 09:25:08 +03:00
|
|
|
*
|
|
|
|
* - the address space is copied as per parent map's inherit values
|
2003-01-18 11:51:40 +03:00
|
|
|
*/
|
|
|
|
void
|
2007-02-22 01:59:35 +03:00
|
|
|
uvm_proc_fork(struct proc *p1, struct proc *p2, bool shared)
|
2003-01-18 11:51:40 +03:00
|
|
|
{
|
|
|
|
|
2007-02-22 09:05:00 +03:00
|
|
|
if (shared == true) {
|
2003-01-18 11:51:40 +03:00
|
|
|
p2->p_vmspace = NULL;
|
|
|
|
uvmspace_share(p1, p2);
|
|
|
|
} else {
|
|
|
|
p2->p_vmspace = uvmspace_fork(p1->p_vmspace);
|
|
|
|
}
|
|
|
|
|
|
|
|
cpu_proc_fork(p1, p2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* uvm_lwp_fork: fork a thread
|
|
|
|
*
|
2011-01-14 05:06:22 +03:00
|
|
|
* - a new PCB structure is allocated for the child process,
|
|
|
|
* and filled in by MD layer
|
1999-05-14 01:58:32 +04:00
|
|
|
* - if specified, the child gets a new user stack described by
|
|
|
|
* stack and stacksize
|
1998-02-05 09:25:08 +03:00
|
|
|
* - NOTE: the kernel stack may be at a different location in the child
|
|
|
|
* process, and thus addresses of automatic variables may be invalid
|
2003-01-18 11:51:40 +03:00
|
|
|
* after cpu_lwp_fork returns in the child process. We do nothing here
|
|
|
|
* after cpu_lwp_fork returns.
|
1998-02-05 09:25:08 +03:00
|
|
|
*/
|
1998-03-09 03:58:55 +03:00
|
|
|
void
|
2005-06-27 06:19:48 +04:00
|
|
|
uvm_lwp_fork(struct lwp *l1, struct lwp *l2, void *stack, size_t stacksize,
|
|
|
|
void (*func)(void *), void *arg)
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
|
|
|
|
2009-04-16 04:17:19 +04:00
|
|
|
/* Fill stack with magic number. */
|
2003-01-22 15:52:14 +03:00
|
|
|
kstack_setup_magic(l2);
|
2002-07-03 00:27:44 +04:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
2003-01-18 11:51:40 +03:00
|
|
|
* cpu_lwp_fork() copy and update the pcb, and make the child ready
|
|
|
|
* to run. If this is a normal user fork, the child will exit
|
2000-05-28 09:48:59 +04:00
|
|
|
* directly to user mode via child_return() on its first time
|
|
|
|
* slice and will not return here. If this is a kernel thread,
|
|
|
|
* the specified entry point will be executed.
|
1998-03-09 03:58:55 +03:00
|
|
|
*/
|
2003-01-18 11:51:40 +03:00
|
|
|
cpu_lwp_fork(l1, l2, stack, stacksize, func, arg);
|
2009-06-28 19:18:50 +04:00
|
|
|
|
|
|
|
/* Inactive emap for new LWP. */
|
|
|
|
l2->l_emap_gen = UVM_EMAP_INACTIVE;
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
|
2002-09-22 11:20:29 +04:00
|
|
|
#ifndef USPACE_ALIGN
|
2008-01-28 15:22:46 +03:00
|
|
|
#define USPACE_ALIGN 0
|
2002-09-22 11:20:29 +04:00
|
|
|
#endif
|
|
|
|
|
2008-01-28 15:22:46 +03:00
|
|
|
static pool_cache_t uvm_uarea_cache;
|
2007-08-18 04:21:10 +04:00
|
|
|
|
2008-01-28 15:22:46 +03:00
|
|
|
static void *
|
|
|
|
uarea_poolpage_alloc(struct pool *pp, int flags)
|
|
|
|
{
|
2009-10-22 01:11:57 +04:00
|
|
|
#if defined(PMAP_MAP_POOLPAGE)
|
2009-08-10 02:19:09 +04:00
|
|
|
if (USPACE == PAGE_SIZE && USPACE_ALIGN == 0) {
|
|
|
|
struct vm_page *pg;
|
|
|
|
vaddr_t va;
|
|
|
|
|
|
|
|
pg = uvm_pagealloc(NULL, 0, NULL,
|
|
|
|
((flags & PR_WAITOK) == 0 ? UVM_KMF_NOWAIT : 0));
|
|
|
|
if (pg == NULL)
|
|
|
|
return NULL;
|
|
|
|
va = PMAP_MAP_POOLPAGE(VM_PAGE_TO_PHYS(pg));
|
|
|
|
if (va == 0)
|
|
|
|
uvm_pagefree(pg);
|
|
|
|
return (void *)va;
|
|
|
|
}
|
|
|
|
#endif
|
2008-01-28 15:22:46 +03:00
|
|
|
return (void *)uvm_km_alloc(kernel_map, pp->pr_alloc->pa_pagesz,
|
2009-10-22 01:11:57 +04:00
|
|
|
USPACE_ALIGN, UVM_KMF_WIRED |
|
|
|
|
((flags & PR_WAITOK) ? UVM_KMF_WAITVA :
|
2008-01-28 15:22:46 +03:00
|
|
|
(UVM_KMF_NOWAIT | UVM_KMF_TRYLOCK)));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
uarea_poolpage_free(struct pool *pp, void *addr)
|
|
|
|
{
|
2009-10-22 01:11:57 +04:00
|
|
|
#if defined(PMAP_MAP_POOLPAGE)
|
2009-08-10 02:19:09 +04:00
|
|
|
if (USPACE == PAGE_SIZE && USPACE_ALIGN == 0) {
|
|
|
|
paddr_t pa;
|
2007-08-18 04:21:10 +04:00
|
|
|
|
2009-08-10 02:19:09 +04:00
|
|
|
pa = PMAP_UNMAP_POOLPAGE((vaddr_t) addr);
|
|
|
|
KASSERT(pa != 0);
|
|
|
|
uvm_pagefree(PHYS_TO_VM_PAGE(pa));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2008-01-28 15:22:46 +03:00
|
|
|
uvm_km_free(kernel_map, (vaddr_t)addr, pp->pr_alloc->pa_pagesz,
|
2009-10-22 01:11:57 +04:00
|
|
|
UVM_KMF_WIRED);
|
2008-01-28 15:22:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct pool_allocator uvm_uarea_allocator = {
|
|
|
|
.pa_alloc = uarea_poolpage_alloc,
|
|
|
|
.pa_free = uarea_poolpage_free,
|
|
|
|
.pa_pagesz = USPACE,
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
uvm_uarea_init(void)
|
|
|
|
{
|
2008-02-08 14:49:40 +03:00
|
|
|
int flags = PR_NOTOUCH;
|
2008-01-28 15:22:46 +03:00
|
|
|
|
2008-02-07 15:21:24 +03:00
|
|
|
/*
|
|
|
|
* specify PR_NOALIGN unless the alignment provided by
|
|
|
|
* the backend (USPACE_ALIGN) is sufficient to provide
|
|
|
|
* pool page size (UPSACE) alignment.
|
|
|
|
*/
|
|
|
|
|
2008-02-08 14:49:40 +03:00
|
|
|
if ((USPACE_ALIGN == 0 && USPACE != PAGE_SIZE) ||
|
|
|
|
(USPACE_ALIGN % USPACE) != 0) {
|
|
|
|
flags |= PR_NOALIGN;
|
|
|
|
}
|
|
|
|
|
|
|
|
uvm_uarea_cache = pool_cache_init(USPACE, USPACE_ALIGN, 0, flags,
|
2009-10-22 01:11:57 +04:00
|
|
|
"uarea", &uvm_uarea_allocator, IPL_NONE, NULL, NULL, NULL);
|
2002-09-22 11:20:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2008-01-28 15:22:46 +03:00
|
|
|
* uvm_uarea_alloc: allocate a u-area
|
2002-09-22 11:20:29 +04:00
|
|
|
*/
|
|
|
|
|
2009-10-22 01:11:57 +04:00
|
|
|
vaddr_t
|
|
|
|
uvm_uarea_alloc(void)
|
2002-09-22 11:20:29 +04:00
|
|
|
{
|
2007-08-18 04:21:10 +04:00
|
|
|
|
2009-10-22 01:11:57 +04:00
|
|
|
return (vaddr_t)pool_cache_get(uvm_uarea_cache, PR_WAITOK);
|
2004-01-04 14:33:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2008-01-28 15:22:46 +03:00
|
|
|
* uvm_uarea_free: free a u-area
|
2004-01-04 14:33:29 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
2009-10-22 01:11:57 +04:00
|
|
|
uvm_uarea_free(vaddr_t uaddr)
|
2004-01-04 14:33:29 +03:00
|
|
|
{
|
2002-09-22 11:20:29 +04:00
|
|
|
|
2008-01-28 15:22:46 +03:00
|
|
|
pool_cache_put(uvm_uarea_cache, (void *)uaddr);
|
2002-09-22 11:20:29 +04:00
|
|
|
}
|
|
|
|
|
2009-11-21 20:45:02 +03:00
|
|
|
vaddr_t
|
|
|
|
uvm_lwp_getuarea(lwp_t *l)
|
|
|
|
{
|
|
|
|
|
2011-01-14 05:06:22 +03:00
|
|
|
return (vaddr_t)l->l_addr - UAREA_PCB_OFFSET;
|
2009-11-21 20:45:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
uvm_lwp_setuarea(lwp_t *l, vaddr_t addr)
|
|
|
|
{
|
|
|
|
|
2011-01-14 05:06:22 +03:00
|
|
|
l->l_addr = (void *)(addr + UAREA_PCB_OFFSET);
|
2009-11-21 20:45:02 +03:00
|
|
|
}
|
|
|
|
|
2004-05-02 17:04:57 +04:00
|
|
|
/*
|
2008-02-29 15:08:04 +03:00
|
|
|
* uvm_proc_exit: exit a virtual address space
|
2004-05-02 17:04:57 +04:00
|
|
|
*
|
|
|
|
* - borrow proc0's address space because freeing the vmspace
|
|
|
|
* of the dead process may block.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
2005-06-27 06:19:48 +04:00
|
|
|
uvm_proc_exit(struct proc *p)
|
2004-05-02 17:04:57 +04:00
|
|
|
{
|
|
|
|
struct lwp *l = curlwp; /* XXX */
|
|
|
|
struct vmspace *ovm;
|
|
|
|
|
|
|
|
KASSERT(p == l->l_proc);
|
|
|
|
ovm = p->p_vmspace;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* borrow proc0's address space.
|
|
|
|
*/
|
2008-06-09 15:49:54 +04:00
|
|
|
KPREEMPT_DISABLE(l);
|
2004-05-02 17:04:57 +04:00
|
|
|
pmap_deactivate(l);
|
|
|
|
p->p_vmspace = proc0.p_vmspace;
|
|
|
|
pmap_activate(l);
|
2008-06-09 15:49:54 +04:00
|
|
|
KPREEMPT_ENABLE(l);
|
2004-05-02 17:04:57 +04:00
|
|
|
|
|
|
|
uvmspace_free(ovm);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
uvm_lwp_exit(struct lwp *l)
|
|
|
|
{
|
2009-12-17 04:25:10 +03:00
|
|
|
vaddr_t va = uvm_lwp_getuarea(l);
|
2004-05-02 17:04:57 +04:00
|
|
|
|
2009-10-22 01:11:57 +04:00
|
|
|
uvm_uarea_free(va);
|
2009-12-17 04:25:10 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
uvm_lwp_setuarea(l, (vaddr_t)NULL);
|
|
|
|
#endif
|
2004-05-02 17:04:57 +04:00
|
|
|
}
|
|
|
|
|
1998-02-05 09:25:08 +03:00
|
|
|
/*
|
|
|
|
* uvm_init_limit: init per-process VM limits
|
|
|
|
*
|
|
|
|
* - called for process 0 and then inherited by all others.
|
|
|
|
*/
|
2002-09-22 11:20:29 +04:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
void
|
2005-06-27 06:19:48 +04:00
|
|
|
uvm_init_limits(struct proc *p)
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
1998-03-09 03:58:55 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up the initial limits on process VM. Set the maximum
|
|
|
|
* resident set size to be all of (reasonably) available memory.
|
|
|
|
* This causes any single, large process to start random page
|
|
|
|
* replacement once it fills memory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
p->p_rlimit[RLIMIT_STACK].rlim_cur = DFLSSIZ;
|
2004-04-04 22:21:48 +04:00
|
|
|
p->p_rlimit[RLIMIT_STACK].rlim_max = maxsmap;
|
1998-03-09 03:58:55 +03:00
|
|
|
p->p_rlimit[RLIMIT_DATA].rlim_cur = DFLDSIZ;
|
2004-04-04 22:21:48 +04:00
|
|
|
p->p_rlimit[RLIMIT_DATA].rlim_max = maxdmap;
|
- add new RLIMIT_AS (aka RLIMIT_VMEM) resource that limits the total
address space available to processes. this limit exists in most other
modern unix variants, and like most of them, our defaults are unlimited.
remove the old mmap / rlimit.datasize hack.
- adds the VMCMD_STACK flag to all the stack-creation vmcmd callers.
it is currently unused, but was added a few years ago.
- add a pair of new process size values to kinfo_proc2{}. one is the
total size of the process memory map, and the other is the total size
adjusted for unused stack space (since most processes have a lot of
this...)
- patch sh, and csh to notice RLIMIT_AS. (in some cases, the alias
RLIMIT_VMEM was already present and used if availble.)
- patch ps, top and systat to notice the new k_vm_vsize member of
kinfo_proc2{}.
- update irix, svr4, svr4_32, linux and osf1 emulations to support
this information. (freebsd could be done, but that it's best left
as part of the full-update of compat/freebsd.)
this addresses PR 7897. it also gives correct memory usage values,
which have never been entirely correct (since mmap), and have been
very incorrect since jemalloc() was enabled.
tested on i386 and sparc64, build tested on several other platforms.
thanks to many folks for feedback and testing but most espcially
chuq and yamt for critical suggestions that lead to this patch not
having a special ugliness i wasn't happy with anyway :-)
2009-03-29 05:02:48 +04:00
|
|
|
p->p_rlimit[RLIMIT_AS].rlim_cur = RLIM_INFINITY;
|
|
|
|
p->p_rlimit[RLIMIT_AS].rlim_max = RLIM_INFINITY;
|
2010-02-26 02:10:49 +03:00
|
|
|
p->p_rlimit[RLIMIT_RSS].rlim_cur = MIN(
|
|
|
|
VM_MAXUSER_ADDRESS, ctob((rlim_t)uvmexp.free));
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2009-10-22 01:11:57 +04:00
|
|
|
* uvm_scheduler: process zero main loop.
|
1998-02-05 09:25:08 +03:00
|
|
|
*/
|
2010-04-16 07:21:49 +04:00
|
|
|
|
|
|
|
extern struct loadavg averunnable;
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
void
|
2005-06-27 06:19:48 +04:00
|
|
|
uvm_scheduler(void)
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
2009-10-22 01:11:57 +04:00
|
|
|
lwp_t *l = curlwp;
|
1998-02-05 09:25:08 +03:00
|
|
|
|
2007-02-15 23:21:13 +03:00
|
|
|
lwp_lock(l);
|
2007-11-06 03:42:39 +03:00
|
|
|
l->l_priority = PRI_VM;
|
|
|
|
l->l_class = SCHED_FIFO;
|
2007-02-15 23:21:13 +03:00
|
|
|
lwp_unlock(l);
|
|
|
|
|
|
|
|
for (;;) {
|
2010-04-16 07:21:49 +04:00
|
|
|
sched_pstats();
|
|
|
|
(void)kpause("uvm", false, hz, NULL);
|
2007-02-15 23:21:13 +03:00
|
|
|
}
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|