Lines Matching full:of
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\" notice, this list of conditions and the following disclaimer.
13 .\" notice, this list of conditions and the following disclaimer in the
18 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 .\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 .\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 .\" AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
110 paging of kernel objects.
188 returns an object of size
221 domain of the
235 The uvmexp structure has all global state of the UVM system, and has
239 int pagesize; /* size of a page (PAGE_SIZE): must be power of 2 */
244 int npages; /* number of pages we manage */
245 int free; /* number of free pages */
246 int active; /* number of active pages */
247 int inactive; /* number of pages that we free'd but may want back */
248 int paging; /* number of pages in the process of being paged out */
249 int wired; /* number of wired pages */
251 int zeropages; /* number of zero'd pages */
252 int reserve_pagedaemon; /* number of pages reserved for pagedaemon */
253 int reserve_kernel; /* number of pages reserved for kernel */
255 int vnodepages; /* XXX # of pages used by vnode page cache */
256 int vtextpages; /* XXX # of pages used by vtext vnodes */
259 int freemin; /* min number of free pages */
260 int freetarg; /* target number of free pages */
261 int inactarg; /* target number of inactive pages */
262 int wiredmax; /* max number of wired pages */
271 int nswapdev; /* number of configured swap devices in system */
272 int swpages; /* number of PAGE_SIZE'ed swap pages */
273 int swpginuse; /* number of swap pages in use */
274 int swpgonly; /* number of swap pages in use, not also in RAM */
275 int nswget; /* number of swap pages moved from disk to RAM */
276 int nanon; /* XXX number total of anon's in system */
303 int fltnoram; /* number of times fault was out of ram */
304 int fltnoanon; /* number of times fault was out of anons */
305 int fltnoamap; /* number of times fault was out of amap chunks */
306 int fltpgwait; /* number of times fault had to wait on a page */
307 int fltpgrele; /* number of times fault found a released page */
308 int fltrelck; /* number of times fault relock called */
309 int fltrelckok; /* number of times fault relock is a success */
310 int fltanget; /* number of times fault gets anon page */
311 int fltanretry; /* number of times fault retrys an anon get */
312 int fltamcopy; /* number of times fault clears "needs copy" */
313 int fltnamap; /* number of times fault maps a neighbor anon page */
314 int fltnomap; /* number of times fault maps a neighbor obj page */
315 int fltlget; /* number of times fault does a locked pgo_get */
316 int fltget; /* number of times fault does an unlocked get */
317 int flt_anon; /* number of times fault anon (case 1a) */
318 int flt_acow; /* number of times fault anon cow (case 1b) */
319 int flt_obj; /* number of times fault is on object page (2a) */
320 int flt_prcopy; /* number of times fault promotes with copy (2b) */
321 int flt_przero; /* number of times fault promotes with zerofill (2b) */
324 int pdwoke; /* number of times daemon woke up */
325 int pdrevs; /* number of times daemon rev'd clock hand */
326 int pdswout; /* number of times daemon called for swapout */
327 int pdfreed; /* number of pages daemon freed since boot */
328 int pdscans; /* number of pages daemon scanned since boot */
329 int pdanscan; /* number of anonymous pages scanned by daemon */
330 int pdobscan; /* number of object pages scanned by daemon */
331 int pdreact; /* number of pages daemon reactivated since boot */
332 int pdbusy; /* number of times daemon found a busy page */
333 int pdpageouts; /* number of times daemon started a pageout */
334 int pdpending; /* number of times daemon got a pending pagout */
335 int pddeact; /* number of pages daemon deactivates */
341 int kmapent; /* number of kernel map entries */
346 function increases the stack segment of process
353 function supports writing out the memory image of a process in a
357 and counts the number of segments necessary to hold the
359 where a segment consists of one or more present pages followed by
377 passing it the start of the segment,
378 the start of the mapped-but-not-present pages,
381 the index of the segment,
411 .%Q Department of Computer Science, Sever Institute of Technology, Washington University
412 .%T Design and Implementation of the UVM Virtual Memory System, D.Sc. dissertation
427 UVM also includes a number of features