1FIND_GET_PAGE(9) Memory Management in Linux FIND_GET_PAGE(9)
23
4
NAME
6find_get_page - find and get a page reference
7
SYNOPSIS
9struct page * find_get_page(struct address_space * mapping,
10pgoff_t offset);
11
ARGUMENTS
13mapping
14the address_space to search
1516
offset
17the page index
18
DESCRIPTION
20Is there a pagecache struct page at the given (mapping, offset) tuple?
21If yes, increment its refcount and return it; if no, return NULL.
22
COPYRIGHT
24Kernel Hackers Manual 2.6. June 2019 FIND_GET_PAGE(9)