mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 20:30:53 +07:00
mm: test PageSwapBacked in lumpy reclaim
Lumpy reclaim does well to stop at a PageAnon when there's no swap, but better is to stop at any PageSwapBacked, which includes shmem/tmpfs too. Signed-off-by: Hugh Dickins <hughd@google.com> Reviewed-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> Reviewed-by: Minchan Kim <minchan@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
faed836a23
commit
043bcbe5ec
@ -1166,7 +1166,7 @@ static unsigned long isolate_lru_pages(unsigned long nr_to_scan,
|
||||
* anon page which don't already have a swap slot is
|
||||
* pointless.
|
||||
*/
|
||||
if (nr_swap_pages <= 0 && PageAnon(cursor_page) &&
|
||||
if (nr_swap_pages <= 0 && PageSwapBacked(cursor_page) &&
|
||||
!PageSwapCache(cursor_page))
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user