More Related Content
PDF
Virtualbox port forwarding PDF
PDF
Nyrorganicopportunitypresentationpowerpoint 141204174458-conversion-gate01 PPTX
Web based intro and tutorial PDF
PDF
Visites guidées à Paris par Des Mots et des Arts PDF
PPT
Viewers also liked
PDF
PDF
Libro software project management PPT
Cc whats up_with_global_warming ODP
PPT
Cc whats up_with_global_warming PDF
Employer branding through Social Media DOC
DOCX
PPTX
Bs dread5.13.5
- 1.
- 2.
- 3.
- 4.
- 5.
- 6.
- 7.
vm_page構造体
struct vm_page {
●TAILQ_ENTRY(vm_page) pageq; /* page queue or free list (Q) */
●TAILQ_ENTRY(vm_page) listq; /* pages in same object (O) */
●vm_object_t object; /* which object am I in (O,P)*/
●
vm_pindex_t pindex; /* offset into object (O,P) */
●
vm_paddr_t phys_addr; /* physical address of page */
●
struct md_page md; /* machine dependant stuff */
●uint8_t queue; /* page queue index (P,Q) */
●int8_t segind;
●short hold_count; /* page hold count (P) */
●uint8_t order; /* index of the buddy queue */
●uint8_t pool;
●
u_short cow; /* page cow mapping count (P) */
●
u_int wire_count; /* wired down maps refs (P) */
●
uint8_t aflags; /* access is atomic */
●uint8_t oflags; /* page VPO_* flags (O) */
●uint16_t flags; /* page PG_* flags (P) */
●u_char act_count; /* page usage count (P) */
●u_char busy; /* page busy count (O) */
●vm_page_bits_t valid; /* map of valid DEV_BSIZE chunks (O) */
●
vm_page_bits_t dirty; /* map of dirty DEV_BSIZE chunks (M) */
●
};
act_countフィールドとflagsに
ページの参照情報が保持される
(ページアウトデーモンによっ
て定期的に更新される)
- 8.
- 9.
- 10.
- 11.
- 12.
- 13.