*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: pmap_qenter | Section: 9 | Source: FreeBSD | File: pmap_qenter.9.gz
PMAP_QENTER(9) FreeBSD Kernel Developer's Manual PMAP_QENTER(9) NAME pmap_qenter, pmap_qremove - manage temporary kernel space mappings SYNOPSIS #include <sys/param.h> #include <vm/vm.h> #include <vm/pmap.h> void pmap_qenter(vm_offset_t sva, vm_page_t *m, int count); void pmap_qremove(vm_offset_t sva, int count); DESCRIPTION The pmap_qenter() function accepts a linear array of count pointers to wired pages *m, and enters each of these pages into the kernel virtual address (KVA) space, beginning at the address sva. The pages are mapped non-executable, if possible. (For example, non-PAE i386 has no capability to map pages non-executable.) The pmap_qremove() function tears out a mapping from the kernel virtual address space, beginning at sva and for count pages. IMPLEMENTATION NOTES The pmap_qenter() function is intended for temporary mappings that do not require page modification or reference counting. Old mappings are simply overwritten. The pages must be wired into physical memory. The corresponding pmap_qremove() function is intended to remove such temporary mappings. SEE ALSO pmap(9) AUTHORS This manual page was written by Bruce M Simpson <[email protected]>. FreeBSD 14.1-RELEASE-p8 February 15, 2018 FreeBSD 14.1-RELEASE-p8

Navigation Options