Home
last modified time | relevance | path

Searched refs:MTYPE_RELOC (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/sun4/vm/
H A Dvm_dep.h50 #define MTYPE_RELOC 0 macro
53 #define PP_2_MTYPE(pp) (PP_ISNORELOC(pp) ? MTYPE_NORELOC : MTYPE_RELOC)
56 mtype = (flags & PG_NORELOC) ? MTYPE_NORELOC : MTYPE_RELOC;
60 mtype = (flags & PG_NORELOC) ? MTYPE_NORELOC : MTYPE_RELOC;
432 atomic_add_long(&plcnt[mn][MTYPE_RELOC].plc_mt_pgmax, -cnt); \
451 atomic_add_long(&plcnt[_mn][MTYPE_RELOC].plc_mt_pgmax, \
462 atomic_add_long(&plcnt[_mn][MTYPE_RELOC].plc_mt_pgmax, \
502 (plcnt[mn][MTYPE_RELOC].plc_mt_clpgcnt + \
504 plcnt[mn][MTYPE_RELOC].plc_mt_flpgcnt + \
506 plcnt[mn][MTYPE_RELOC].plc_mt_lgpgcnt + \
[all …]
/illumos-gate/usr/src/uts/common/vm/
H A Dvm_pagelist.c1498 ASSERT(mtype == MTYPE_RELOC); in page_list_noreloc_startup()