diff options
author | alc <alc@FreeBSD.org> | 2002-06-14 18:21:01 +0000 |
---|---|---|
committer | alc <alc@FreeBSD.org> | 2002-06-14 18:21:01 +0000 |
commit | 42cf959f1837b06c3ec3b8fa7bb33a47c85b92af (patch) | |
tree | e222c1be9c51b6924d642c93a4e8629cdae24952 /sys/vm/vm_contig.c | |
parent | ddf3317becaf1f927336e43f96f900868c8d0a80 (diff) | |
download | FreeBSD-src-42cf959f1837b06c3ec3b8fa7bb33a47c85b92af.zip FreeBSD-src-42cf959f1837b06c3ec3b8fa7bb33a47c85b92af.tar.gz |
o Use vm_map_wire() and vm_map_unwire() in place of vm_map_pageable() and
vm_map_user_pageable().
o Remove vm_map_pageable() and vm_map_user_pageable().
o Remove vm_map_clear_recursive() and vm_map_set_recursive(). (They were
only used by vm_map_pageable() and vm_map_user_pageable().)
Reviewed by: tegge
Diffstat (limited to 'sys/vm/vm_contig.c')
-rw-r--r-- | sys/vm/vm_contig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/vm_contig.c b/sys/vm/vm_contig.c index 915ac19..388fb84 100644 --- a/sys/vm/vm_contig.c +++ b/sys/vm/vm_contig.c @@ -261,7 +261,7 @@ again1: OFF_TO_IDX(tmp_addr - VM_MIN_KERNEL_ADDRESS)); tmp_addr += PAGE_SIZE; } - vm_map_pageable(map, addr, addr + size, FALSE); + vm_map_wire(map, addr, addr + size, FALSE); splx(s); return ((void *)addr); |