HomeSort by: relevance | last modified time | path
    Searched refs:loan_count (Results 1 - 12 of 12) sorted by relevancy

  /src/sys/uvm/
uvm_anon.c 128 if (__predict_false(pg->loan_count != 0)) {
141 KASSERT(pg->loan_count > 0);
142 pg->loan_count--;
220 * note that the test for pg->loan_count is not protected -- this
226 while (((pg = anon->an_page) != NULL) && pg->loan_count != 0) {
257 pg->loan_count--;
371 KASSERT(pg->loan_count == 0);
uvm_loan.c 61 * loans are tracked by pg->loan_count. an O->A page will have both
80 * locking: to read pg->loan_count either the owner or pg->interlock
81 * must be locked. to modify pg->loan_count, both the owner of the page
422 if (pg->loan_count == 0) {
426 pg->loan_count++;
427 KASSERT(pg->loan_count > 0); /* detect wrap-around */
471 if (pg->loan_count == 0) {
475 pg->loan_count++;
476 KASSERT(pg->loan_count > 0); /* detect wrap-around */
768 if (pg->loan_count == 0)
    [all...]
uvm_object.c 163 if (pgs[i]->loan_count) {
164 while (pgs[i]->loan_count) {
uvm_page.h 169 uint32_t loan_count; /* o,i: num. active loans */ member in struct:vm_page
uvm_bio.c 253 if (pg->loan_count != 0) {
606 if (pg->loan_count != 0) {
608 if (pg->loan_count != 0) {
683 KASSERT(pg->loan_count == 0);
903 if ((flags & UBC_WRITE) && pg->loan_count != 0) {
uvm_fault.c 309 if (pg && pg->loan_count)
564 KASSERT(opg->uobject == NULL || opg->loan_count > 0);
1341 if (pg && pg->loan_count == 0 && (pg->flags & PG_BUSY) == 0 &&
1497 if (anon->an_page->loan_count) {
2058 const bool readonly = uvm_pagereadonly_p(pg) || pg->loan_count > 0;
2297 if (uobjpage->loan_count) {
uvm_pdaemon.c 462 KASSERT(pg->loan_count > 0);
463 pg->loan_count--;
uvm_page.c 1445 if (pg->loan_count) {
1466 pg->loan_count--;
1484 if (pg->loan_count) {
2137 (*pr)(" loan_count=%d wire_count=%d bucket=%d freelist=%d\n",
2138 pg->loan_count, pg->wire_count, uvm_page_get_bucket(pg),
uvm_amap.c 1013 * => assume pages that are loaned out (loan_count) are already mapped
1071 if (pg->loan_count != 0) {
uvm_map.c 4064 if (pg->loan_count != 0 ||
  /src/sys/ufs/lfs/
lfs_vfsops.c 2382 DLOG((DLOG_PAGE, "pg[%d]->loan_count = %d\n", i,
2383 pg->loan_count));
  /src/sys/arch/sparc64/sparc64/
pmap.c 3304 if (pg->loan_count == 0 && !(pvh->pv_va & PV_ALIAS)) {

Completed in 26 milliseconds