Yu Zhao 3f74e6bd3b mm/mglru: fix overshooting shrinker memory
set_initial_priority() tries to jump-start global reclaim by estimating
the priority based on cold/hot LRU pages.  The estimation does not account
for shrinker objects, and it cannot do so because their sizes can be in
different units other than page.

If shrinker objects are the majority, e.g., on TrueNAS SCALE 24.04.0 where
ZFS ARC can use almost all system memory, set_initial_priority() can
vastly underestimate how much memory ARC shrinker can evict and assign
extreme low values to scan_control->priority, resulting in overshoots of
shrinker objects.

To reproduce the problem, using TrueNAS SCALE 24.04.0 with 32GB DRAM, a
test ZFS pool and the following commands:

  fio --name=mglru.file --numjobs=36 --ioengine=io_uring \
      --directory=/root/test-zfs-pool/ --size=1024m --buffered=1 \
      --rw=randread --random_distribution=random \
      --time_based --runtime=1h &

  for ((i = 0; i < 20; i++))
  do
    sleep 120
    fio --name=mglru.anon --numjobs=16 --ioengine=mmap \
      --filename=/dev/zero --size=1024m --fadvise_hint=0 \
      --rw=randrw --random_distribution=random \
      --time_based --runtime=1m
  done

To fix the problem:
1. Cap scan_control->priority at or above DEF_PRIORITY/2, to prevent
   the jump-start from being overly aggressive.
2. Account for the progress from mm_account_reclaimed_pages(), to
   prevent kswapd_shrink_node() from raising the priority
   unnecessarily.

Link: https://lkml.kernel.org/r/20240711191957.939105-2-yuzhao@google.com
Fixes: e4dde56cd208 ("mm: multi-gen LRU: per-node lru_gen_folio lists")
Signed-off-by: Yu Zhao <yuzhao@google.com>
Reported-by: Alexander Motin <mav@ixsystems.com>
Cc: Wei Xu <weixugc@google.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
2024-07-17 21:05:18 -07:00
..
2024-07-10 12:14:54 -07:00
2024-07-03 19:29:59 -07:00
2024-07-12 15:52:19 -07:00
2023-12-12 10:11:32 +01:00
2024-07-12 15:52:19 -07:00
2024-07-10 12:14:54 -07:00
2023-04-12 17:36:23 -07:00
2024-07-10 12:14:54 -07:00
2024-07-12 15:52:19 -07:00
2022-10-03 14:02:43 -07:00
2024-07-03 19:30:17 -07:00
2024-05-23 19:40:26 -07:00
2024-07-12 15:52:19 -07:00
2024-07-10 12:14:54 -07:00
2024-07-10 12:14:54 -07:00
2024-07-12 15:52:23 -07:00
2024-07-10 12:14:54 -07:00
2024-07-10 12:14:54 -07:00
2024-07-03 19:30:19 -07:00
2023-04-12 17:36:23 -07:00
2024-07-06 11:53:19 -07:00
2024-04-25 20:55:48 -07:00
2024-04-25 20:55:48 -07:00
2024-04-25 20:55:48 -07:00
2024-07-12 15:52:09 -07:00