Lines Matching refs:rhpages
420 off_t len, int rhpages, int flags) in sendfile_swapin() argument
441 rhpages = 0; in sendfile_swapin()
530 i + count == npages ? &rhpages : NULL, in sendfile_swapin()
555 SFSTAT_ADD(sf_rhpages_read, rhpages); in sendfile_swapin()
846 int nios, space, npages, rhpages; in vn_sendfile() local
940 rhpages = SF_READAHEAD(flags); in vn_sendfile()
942 rhpages = howmany(rem + (off & PAGE_MASK), PAGE_SIZE) - in vn_sendfile()
944 rhpages += SF_READAHEAD(flags); in vn_sendfile()
946 rhpages = min(howmany(maxphys, PAGE_SIZE), rhpages); in vn_sendfile()
947 rhpages = min(howmany(obj_size - trunc_page(off), PAGE_SIZE) - in vn_sendfile()
948 npages, rhpages); in vn_sendfile()
966 error = sendfile_swapin(obj, sfio, &nios, off, space, rhpages, in vn_sendfile()
1041 (rem > space || rhpages > 0)) in vn_sendfile()
1121 !(rem > space || rhpages > 0))) in vn_sendfile()