commit | 3ece58a270cd1e5026282abe778bd50db7a11d08 | [log] [tgz] |
---|---|---|
author | Matthew Wilcox <willy@infradead.org> | Wed May 16 18:00:33 2018 -0400 |
committer | Matthew Wilcox <willy@infradead.org> | Sun Oct 21 10:46:34 2018 -0400 |
tree | ed4feeec0489b4fa9e513e8817363944da48dd3d | |
parent | fd1b3cee2a867868d39bb8cbcc4b00c36d07cc01 [diff] |
page cache: Convert find_get_pages_contig to XArray There's no direct replacement for radix_tree_for_each_contig() in the XArray API as it's an unusual thing to do. Instead, open-code a loop using xas_next(). This removes the only user of radix_tree_for_each_contig() so delete the iterator from the API and the test suite code for it. Signed-off-by: Matthew Wilcox <willy@infradead.org>