mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 14:24:11 +08:00
page cache: Convert filemap_range_has_page to XArray
Instead of calling find_get_pages_range() and putting any reference, use xas_find() to iterate over any entries in the range, skipping the shadow/swap entries. Signed-off-by: Matthew Wilcox <willy@infradead.org>
This commit is contained in:
parent
22ecdb4f8b
commit
8fa8e538e4
27
mm/filemap.c
27
mm/filemap.c
@ -455,20 +455,31 @@ EXPORT_SYMBOL(filemap_flush);
|
|||||||
bool filemap_range_has_page(struct address_space *mapping,
|
bool filemap_range_has_page(struct address_space *mapping,
|
||||||
loff_t start_byte, loff_t end_byte)
|
loff_t start_byte, loff_t end_byte)
|
||||||
{
|
{
|
||||||
pgoff_t index = start_byte >> PAGE_SHIFT;
|
|
||||||
pgoff_t end = end_byte >> PAGE_SHIFT;
|
|
||||||
struct page *page;
|
struct page *page;
|
||||||
|
XA_STATE(xas, &mapping->i_pages, start_byte >> PAGE_SHIFT);
|
||||||
|
pgoff_t max = end_byte >> PAGE_SHIFT;
|
||||||
|
|
||||||
if (end_byte < start_byte)
|
if (end_byte < start_byte)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (mapping->nrpages == 0)
|
rcu_read_lock();
|
||||||
return false;
|
for (;;) {
|
||||||
|
page = xas_find(&xas, max);
|
||||||
|
if (xas_retry(&xas, page))
|
||||||
|
continue;
|
||||||
|
/* Shadow entries don't count */
|
||||||
|
if (xa_is_value(page))
|
||||||
|
continue;
|
||||||
|
/*
|
||||||
|
* We don't need to try to pin this page; we're about to
|
||||||
|
* release the RCU lock anyway. It is enough to know that
|
||||||
|
* there was a page here recently.
|
||||||
|
*/
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
rcu_read_unlock();
|
||||||
|
|
||||||
if (!find_get_pages_range(mapping, &index, end, 1, &page))
|
return page != NULL;
|
||||||
return false;
|
|
||||||
put_page(page);
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(filemap_range_has_page);
|
EXPORT_SYMBOL(filemap_range_has_page);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user