mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-28 17:41:50 +00:00
shmem: Convert shmem_partial_swap_usage to XArray
Simpler code because the xarray takes care of things like the limit and dereferencing the slot. Signed-off-by: Matthew Wilcox <willy@infradead.org>
This commit is contained in:
parent
c121d3bb71
commit
7ae3424fb4
1 changed files with 4 additions and 14 deletions
18
mm/shmem.c
18
mm/shmem.c
|
@ -676,29 +676,19 @@ static int shmem_free_swap(struct address_space *mapping,
|
||||||
unsigned long shmem_partial_swap_usage(struct address_space *mapping,
|
unsigned long shmem_partial_swap_usage(struct address_space *mapping,
|
||||||
pgoff_t start, pgoff_t end)
|
pgoff_t start, pgoff_t end)
|
||||||
{
|
{
|
||||||
struct radix_tree_iter iter;
|
XA_STATE(xas, &mapping->i_pages, start);
|
||||||
void __rcu **slot;
|
|
||||||
struct page *page;
|
struct page *page;
|
||||||
unsigned long swapped = 0;
|
unsigned long swapped = 0;
|
||||||
|
|
||||||
rcu_read_lock();
|
rcu_read_lock();
|
||||||
|
xas_for_each(&xas, page, end - 1) {
|
||||||
radix_tree_for_each_slot(slot, &mapping->i_pages, &iter, start) {
|
if (xas_retry(&xas, page))
|
||||||
if (iter.index >= end)
|
|
||||||
break;
|
|
||||||
|
|
||||||
page = radix_tree_deref_slot(slot);
|
|
||||||
|
|
||||||
if (radix_tree_deref_retry(page)) {
|
|
||||||
slot = radix_tree_iter_retry(&iter);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
|
||||||
|
|
||||||
if (xa_is_value(page))
|
if (xa_is_value(page))
|
||||||
swapped++;
|
swapped++;
|
||||||
|
|
||||||
if (need_resched()) {
|
if (need_resched()) {
|
||||||
slot = radix_tree_iter_resume(slot, &iter);
|
xas_pause(&xas);
|
||||||
cond_resched_rcu();
|
cond_resched_rcu();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue