mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
NFSD: Batch release pages during splice read
Large splice reads call put_page() repeatedly. put_page() is relatively expensive to call, so replace it with the new svc_rqst_replace_page() helper to help amortize that cost. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Reviewed-by: NeilBrown <neilb@suse.de>
This commit is contained in:
parent
2f0f88f42f
commit
496d83cf0f
@ -849,15 +849,10 @@ nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
|
|||||||
struct page *page = buf->page;
|
struct page *page = buf->page;
|
||||||
|
|
||||||
if (rqstp->rq_res.page_len == 0) {
|
if (rqstp->rq_res.page_len == 0) {
|
||||||
get_page(page);
|
svc_rqst_replace_page(rqstp, page);
|
||||||
put_page(*rqstp->rq_next_page);
|
|
||||||
*(rqstp->rq_next_page++) = page;
|
|
||||||
rqstp->rq_res.page_base = buf->offset;
|
rqstp->rq_res.page_base = buf->offset;
|
||||||
} else if (page != pp[-1]) {
|
} else if (page != pp[-1]) {
|
||||||
get_page(page);
|
svc_rqst_replace_page(rqstp, page);
|
||||||
if (*rqstp->rq_next_page)
|
|
||||||
put_page(*rqstp->rq_next_page);
|
|
||||||
*(rqstp->rq_next_page++) = page;
|
|
||||||
}
|
}
|
||||||
rqstp->rq_res.page_len += sd->len;
|
rqstp->rq_res.page_len += sd->len;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user