Lines Matching refs:upl_offset
303 upl_offset_t upl_offset, in vnode_pageout() argument
353 ubc_upl_abort_range(upl, upl_offset, size, UPL_ABORT_FREE_ON_EMPTY); in vnode_pageout()
367 if ((error_ret = VNOP_PAGEOUT(vp, upl, upl_offset, (off_t)f_offset, in vnode_pageout()
392 if ((error_ret = VNOP_PAGEOUT(vp, NULL, upl_offset, (off_t)f_offset, in vnode_pageout()
412 upl_offset = 0; in vnode_pageout()
423 base_index = upl_offset / PAGE_SIZE; in vnode_pageout()
425 for (pg_index = (upl_offset + isize) / PAGE_SIZE; pg_index > base_index;) { in vnode_pageout()
435 ubc_upl_abort_range(upl, upl_offset, isize, UPL_ABORT_FREE_ON_EMPTY); in vnode_pageout()
458 for (offset = upl_offset; isize; isize -= PAGE_SIZE, offset += PAGE_SIZE) { in vnode_pageout()
482 offset = upl_offset; in vnode_pageout()
591 upl_offset_t upl_offset, in vnode_pagein() argument
640 ubc_upl_abort_range(upl, upl_offset, size, UPL_ABORT_FREE_ON_EMPTY | UPL_ABORT_ERROR); in vnode_pagein()
668 if ((error = VNOP_PAGEIN(vp, NULL, upl_offset, (off_t)f_offset, in vnode_pagein()
687 ubc_upl_range_needed(upl, upl_offset / PAGE_SIZE, 1); in vnode_pagein()
689 upl_offset = 0; in vnode_pagein()
700 first_pg = upl_offset / PAGE_SIZE; in vnode_pagein()
719 ubc_upl_abort_range(upl, upl_offset, size, UPL_ABORT_FREE_ON_EMPTY); in vnode_pagein()