1. NAME▲
read_cache_page_async - read into page cache, fill it if needed
2. SYNOPSIS ▲
struct page * read_cache_page_async(struct address_space * mapping , pgoff_t index , int (* filler ) (void *, struct page *), void * data );
3. ARGUMENTS ▲
mapping
the pageAqs address_space
index
the page index
filler
function to perform the read
data
first arg to filler(data, page) function, often left as NULL
4. DESCRIPTION ▲
Same as read_cache_page, but donAqt wait for page to become unlocked after submitting it to the filler.
Read into the page cache. If a page already exists, and PageUptodate is not set, try to fill the page but donAqt wait for it to become unlocked.
If the page does not get brought uptodate, return -EIO.
5. COPYRIGHT ▲