On 2005-11-13 13:28, Gobbledegeek <[EMAIL PROTECTED]> wrote: > Thanks. From the article I conclude that Active pages are: > Pages with page-used bit set > Inactive and cached refers to the different page queues. > But I could not correlate "wired" with anything. Any Tips?
The virtual memory pages are not necessarilly associated with a page of physical memory at all times. They may be swapped out to disk if they are active but there is a memory shortage for a particular task. They may be inactive or cached and end up being freed, etc. The "wired" pages are attached to a physical memory page and are never swapped out to disk. In general, wired pages are those pages of the physical memory that the kernel needs to keep around at all times, because swapping them out is not possible for a variety of reasons (i.e. they are used asynchronously by a hardware device for DMA input/output, they contain paging information, and so on). _______________________________________________ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"