Andrew has queued patches to make MGLRU consult KVM when doing aging[8]. Now, make aging lockless for the shadow MMU and the TDP MMU. This allows us to reduce the time/CPU it takes to do aging and the performance impact on the vCPUs while we are aging. The final patch in this series modifies access_tracking_stress_test to age using MGLRU. There is a mode (-p) where it will age while the vCPUs are faulting memory in. Here are some results with that mode: TDP MMU disabled, no optimization: $ ./access_tracking_perf_test -l -r /dev/cgroup/memory -v 64 -p lru_gen avg pass duration : 15.954388970s, (passes:1, total:15.954388970s) TDP MMU disabled, lockless: $ ./access_tracking_perf_test -l -r /dev/cgroup/memory -v 64 -p lru_gen avg pass duration : 0.527091929s, (passes:35, total:18.448217547s) The vCPU time difference in these runs with the shadow MMU vary quite a lot, and there doesn't seem to be a notable improvement with this particular test. There are some more results with the TDP MMU from v4[4]. I have also tested with Sean's mmu_stress_test changes[1]. Note: the new MGLRU mode for access_tracking_perf_test will verify that aging is functional. It will only be functional with the MGLRU patches that have been sent to Andrew separately[8]. === Previous Versions === Since v7[7]: - Dropped MGLRU changes (Andrew has queued them[8]). - Dropped DAMON cleanup (Andrew has queued this[9]). - Dropped MMU notifier changes completely. - Made shadow MMU aging *always* lockless, not just lockless when the now-removed "fast_only" clear notifier was used. - Given that the MGLRU changes no longer introduce a new MGLRU capability, drop the new capability check from the selftest. - Rebased on top of latest kvm-x86/next, including the x86 mmu changes for marking pages as dirty. Since v6[6]: - Rebased on top of kvm-x86/next and Sean's lockless rmap walking changes. - Removed HAVE_KVM_MMU_NOTIFIER_YOUNG_FAST_ONLY (thanks DavidM). - Split up kvm_age_gfn() / kvm_test_age_gfn() optimizations (thanks DavidM and Sean). - Improved new MMU notifier documentation (thanks DavidH). - Dropped arm64 locking change. - No longer retry for CAS failure in TDP MMU non-A/D case (thanks Sean). - Added some R-bys and A-bys. Since v5[5]: - Reworked test_clear_young_fast_only() into a new parameter for the existing notifiers (thanks Sean). - Added mmu_notifier.has_fast_aging to tell mm if calling fast-only notifiers should be done. - Added mm_has_fast_young_notifiers() to inform users if calling fast-only notifier helpers is worthwhile (for look-around to use). - Changed MGLRU to invoke a single notifier instead of two when aging and doing look-around (thanks Yu). - For KVM/x86, check indirect_shadow_pages > 0 instead of kvm_memslots_have_rmaps() when collecting age information (thanks Sean). - For KVM/arm, some fixes from Oliver. - Small fixes to access_tracking_perf_test. - Added missing !MMU_NOTIFIER version of mmu_notifier_clear_young(). Since v4[4]: - Removed Kconfig that controlled when aging was enabled. Aging will be done whenever the architecture supports it (thanks Yu). - Added a new MMU notifier, test_clear_young_fast_only(), specifically for MGLRU to use. - Add kvm_fast_{test_,}age_gfn, implemented by x86. - Fix locking for clear_flush_young(). - Added KVM_MMU_NOTIFIER_YOUNG_LOCKLESS to clean up locking changes (thanks Sean). - Fix WARN_ON and other cleanup for the arm64 locking changes (thanks Oliver). Since v3[3]: - Vastly simplified the series (thanks David). Removed mmu notifier batching logic entirely. - Cleaned up how locking is done for mmu_notifier_test/clear_young (thanks David). - Look-around is now only done when there are no secondary MMUs subscribed to MMU notifiers. - CONFIG_LRU_GEN_WALKS_SECONDARY_MMU has been added. - Fixed the lockless implementation of kvm_{test,}age_gfn for x86 (thanks David). - Added MGLRU functional and performance tests to access_tracking_perf_test (thanks Axel). - In v3, an mm would be completely ignored (for aging) if there was a secondary MMU but support for secondary MMU walking was missing. Now, missing secondary MMU walking support simply skips the notifier calls (except for eviction). - Added a sanity check for that range->lockless and range->on_lock are never both provided for the memslot walk. For the changes since v2[2], see v3. Based on latest kvm-x86/next. [1]: https://lore.kernel.org/kvm/20241009154953.1073471-1-seanjc@xxxxxxxxxx/ [2]: https://lore.kernel.org/kvmarm/20230526234435.662652-1-yuzhao@xxxxxxxxxx/ [3]: https://lore.kernel.org/linux-mm/20240401232946.1837665-1-jthoughton@xxxxxxxxxx/ [4]: https://lore.kernel.org/linux-mm/20240529180510.2295118-1-jthoughton@xxxxxxxxxx/ [5]: https://lore.kernel.org/linux-mm/20240611002145.2078921-1-jthoughton@xxxxxxxxxx/ [6]: https://lore.kernel.org/linux-mm/20240724011037.3671523-1-jthoughton@xxxxxxxxxx/ [7]: https://lore.kernel.org/kvm/20240926013506.860253-1-jthoughton@xxxxxxxxxx/ [8]: https://lore.kernel.org/linux-mm/20241019012940.3656292-1-jthoughton@xxxxxxxxxx/ [9]: https://lore.kernel.org/linux-mm/20241021160212.9935-1-jthoughton@xxxxxxxxxx/ James Houghton (7): KVM: Remove kvm_handle_hva_range helper functions KVM: Add lockless memslot walk to KVM KVM: x86/mmu: Factor out spte atomic bit clearing routine KVM: x86/mmu: Relax locking for kvm_test_age_gfn and kvm_age_gfn KVM: x86/mmu: Rearrange kvm_{test_,}age_gfn KVM: x86/mmu: Only check gfn age in shadow MMU if indirect_shadow_pages > 0 KVM: selftests: Add multi-gen LRU aging to access_tracking_perf_test Sean Christopherson (4): KVM: x86/mmu: Refactor low level rmap helpers to prep for walking w/o mmu_lock KVM: x86/mmu: Add infrastructure to allow walking rmaps outside of mmu_lock KVM: x86/mmu: Add support for lockless walks of rmap SPTEs KVM: x86/mmu: Support rmap walks without holding mmu_lock when aging gfns arch/x86/include/asm/kvm_host.h | 4 +- arch/x86/kvm/Kconfig | 1 + arch/x86/kvm/mmu/mmu.c | 338 ++++++++++----- arch/x86/kvm/mmu/tdp_iter.h | 27 +- arch/x86/kvm/mmu/tdp_mmu.c | 23 +- include/linux/kvm_host.h | 1 + tools/testing/selftests/kvm/Makefile | 1 + .../selftests/kvm/access_tracking_perf_test.c | 366 ++++++++++++++-- .../selftests/kvm/include/lru_gen_util.h | 55 +++ .../testing/selftests/kvm/lib/lru_gen_util.c | 391 ++++++++++++++++++ virt/kvm/Kconfig | 2 + virt/kvm/kvm_main.c | 102 +++-- 12 files changed, 1124 insertions(+), 187 deletions(-) create mode 100644 tools/testing/selftests/kvm/include/lru_gen_util.h create mode 100644 tools/testing/selftests/kvm/lib/lru_gen_util.c base-commit: a27e0515592ec9ca28e0d027f42568c47b314784 -- 2.47.0.199.ga7371fff76-goog