Lines Matching defs:page
609 pages = size / PAGE_SIZE + 1; /* extra page as we hold both request and reply.
610 * We assume one is at most one page
852 * svc_rqst_replace_page - Replace one page in rq_pages[]
854 * @page: replacement page
856 * When replacing a page in rq_pages, batch the release of the
857 * replaced pages to avoid hammering the page allocator.
860 * %true: page replaced
863 bool svc_rqst_replace_page(struct svc_rqst *rqstp, struct page *page)
865 struct page **begin = rqstp->rq_pages;
866 struct page **end = &rqstp->rq_pages[RPCSVC_MAXPAGES];
879 get_page(page);
880 *(rqstp->rq_next_page++) = page;
1512 * Initially it has just one page
1686 struct page **pages = payload->pages;