Home
last modified time | relevance | path

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

/xnu-12377.1.9/osfmk/vm/
H A Dvm_tests.c2486 ppnum_t upl_pa = pmap_find_phys(kernel_pmap, (addr64_t)upl_buf + i); in upl_buf_compare() local
2487 if ((upl_pa == 0) || /* UPL is wired, PA should always be valid */ in upl_buf_compare()
2488 (!copy_expected && (upl_pa != user_pa)) || in upl_buf_compare()
2489 (copy_expected && (upl_pa == user_pa)) || in upl_buf_compare()
2490 (upl_pa != (upl->page_list[i >> PAGE_SHIFT].phys_addr))) { in upl_buf_compare()
2492 … __func__, (unsigned)i, (unsigned)copy_expected, (unsigned long)upl_pa, (unsigned long)user_pa, in upl_buf_compare()