|
@@ -359,6 +359,76 @@ static int shmem_free_swap(struct address_space *mapping,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+/*
|
|
|
+ * Determine (in bytes) how many of the shmem object's pages mapped by the
|
|
|
+ * given vma is swapped out.
|
|
|
+ *
|
|
|
+ * This is safe to call without i_mutex or mapping->tree_lock thanks to RCU,
|
|
|
+ * as long as the inode doesn't go away and racy results are not a problem.
|
|
|
+ */
|
|
|
+unsigned long shmem_swap_usage(struct vm_area_struct *vma)
|
|
|
+{
|
|
|
+ struct inode *inode = file_inode(vma->vm_file);
|
|
|
+ struct shmem_inode_info *info = SHMEM_I(inode);
|
|
|
+ struct address_space *mapping = inode->i_mapping;
|
|
|
+ unsigned long swapped;
|
|
|
+ pgoff_t start, end;
|
|
|
+ struct radix_tree_iter iter;
|
|
|
+ void **slot;
|
|
|
+ struct page *page;
|
|
|
+
|
|
|
+ /* Be careful as we don't hold info->lock */
|
|
|
+ swapped = READ_ONCE(info->swapped);
|
|
|
+
|
|
|
+ /*
|
|
|
+ * The easier cases are when the shmem object has nothing in swap, or
|
|
|
+ * the vma maps it whole. Then we can simply use the stats that we
|
|
|
+ * already track.
|
|
|
+ */
|
|
|
+ if (!swapped)
|
|
|
+ return 0;
|
|
|
+
|
|
|
+ if (!vma->vm_pgoff && vma->vm_end - vma->vm_start >= inode->i_size)
|
|
|
+ return swapped << PAGE_SHIFT;
|
|
|
+
|
|
|
+ swapped = 0;
|
|
|
+
|
|
|
+ /* Here comes the more involved part */
|
|
|
+ start = linear_page_index(vma, vma->vm_start);
|
|
|
+ end = linear_page_index(vma, vma->vm_end);
|
|
|
+
|
|
|
+ rcu_read_lock();
|
|
|
+
|
|
|
+restart:
|
|
|
+ radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) {
|
|
|
+ if (iter.index >= end)
|
|
|
+ break;
|
|
|
+
|
|
|
+ page = radix_tree_deref_slot(slot);
|
|
|
+
|
|
|
+ /*
|
|
|
+ * This should only be possible to happen at index 0, so we
|
|
|
+ * don't need to reset the counter, nor do we risk infinite
|
|
|
+ * restarts.
|
|
|
+ */
|
|
|
+ if (radix_tree_deref_retry(page))
|
|
|
+ goto restart;
|
|
|
+
|
|
|
+ if (radix_tree_exceptional_entry(page))
|
|
|
+ swapped++;
|
|
|
+
|
|
|
+ if (need_resched()) {
|
|
|
+ cond_resched_rcu();
|
|
|
+ start = iter.index + 1;
|
|
|
+ goto restart;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ rcu_read_unlock();
|
|
|
+
|
|
|
+ return swapped << PAGE_SHIFT;
|
|
|
+}
|
|
|
+
|
|
|
/*
|
|
|
* SysV IPC SHM_UNLOCK restore Unevictable pages to their evictable lists.
|
|
|
*/
|