Pins the address range in the system (kernel) space and frees the page space for the associated pages.
#include <sys/types.h> #include <sys/errno.h> #include <sys/pin.h>
int ltpin (addr, length) caddr_t addr; int length;
addr | Specifies the address of the first byte to pin. |
length | Specifies the number of bytes to pin. |
The ltpin (long term pin) kernel service pins the real memory pages touched by the address range specified by the addr and length parameters in the system (kernel) address space. It pins the real-memory pages to ensure that page faults do not occur for memory references in this address range. The ltpin kernel service increments the long-term pin count for each real-memory page. While either the long-term or short-term pin count is nonzero, the page cannot be paged out of real memory.
The ltpin kernel service pins either the entire address range or none of it. Only a limited number of pages are pinned in the system. If there are not enough unpinned pages in the system, the ltpin kernel service returns an error code.
Note: The operating system pins only whole pages at a time. Therfore, if the requested range is not aligned on a page boundary, then memory outside this range is also pinned.
The ltpin kernel service can only be called for addresses within the system (kernel) address space.
The ltpin kernel service is not a published interface.
The ltunpin kernel service.