forked from Openwrt/openwrt
e3559fb445
Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.1.54 Removed upstreamed: generic/backport-6.1/020-v6.3-02-UPSTREAM-mm-multi-gen-LRU-rename-lrugen-lists-to-lru.patch[1] ipq806x/patches-6.1/140-v6.5-hwspinlock-qcom-add-missing-regmap-config-for-SFPB-M.patch[2] All other patches automatically rebased. 1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.1.54&id=a73d04c460521e45f257d28d73df096e41ece324 2. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.1.54&id=e93bc372dbc0bde133c854c03502a95617041972 Build system: x86/64 Build-tested: x86/64/AMD Cezanne Run-tested: x86/64/AMD Cezanne Signed-off-by: John Audia <therealgraysky@proton.me>
68 lines
2.5 KiB
Diff
68 lines
2.5 KiB
Diff
From 1b5e4c317d80f4826eceb3781702d18d06b14394 Mon Sep 17 00:00:00 2001
|
|
From: "T.J. Alumbaugh" <talumbau@google.com>
|
|
Date: Wed, 18 Jan 2023 00:18:21 +0000
|
|
Subject: [PATCH 12/19] UPSTREAM: mm: multi-gen LRU: section for working set
|
|
protection
|
|
|
|
Patch series "mm: multi-gen LRU: improve".
|
|
|
|
This patch series improves a few MGLRU functions, collects related
|
|
functions, and adds additional documentation.
|
|
|
|
This patch (of 7):
|
|
|
|
Add a section for working set protection in the code and the design doc.
|
|
The admin doc already contains its usage.
|
|
|
|
Link: https://lkml.kernel.org/r/20230118001827.1040870-1-talumbau@google.com
|
|
Link: https://lkml.kernel.org/r/20230118001827.1040870-2-talumbau@google.com
|
|
Change-Id: I65599075fd42951db7739a2ab7cee78516e157b3
|
|
Signed-off-by: T.J. Alumbaugh <talumbau@google.com>
|
|
Cc: Yu Zhao <yuzhao@google.com>
|
|
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
|
|
(cherry picked from commit 7b8144e63d84716f16a1b929e0c7e03ae5c4d5c1)
|
|
Bug: 274865848
|
|
Signed-off-by: T.J. Mercier <tjmercier@google.com>
|
|
---
|
|
Documentation/mm/multigen_lru.rst | 15 +++++++++++++++
|
|
mm/vmscan.c | 4 ++++
|
|
2 files changed, 19 insertions(+)
|
|
|
|
--- a/Documentation/mm/multigen_lru.rst
|
|
+++ b/Documentation/mm/multigen_lru.rst
|
|
@@ -141,6 +141,21 @@ loop has detected outlying refaults from
|
|
this end, the feedback loop uses the first tier as the baseline, for
|
|
the reason stated earlier.
|
|
|
|
+Working set protection
|
|
+----------------------
|
|
+Each generation is timestamped at birth. If ``lru_gen_min_ttl`` is
|
|
+set, an ``lruvec`` is protected from the eviction when its oldest
|
|
+generation was born within ``lru_gen_min_ttl`` milliseconds. In other
|
|
+words, it prevents the working set of ``lru_gen_min_ttl`` milliseconds
|
|
+from getting evicted. The OOM killer is triggered if this working set
|
|
+cannot be kept in memory.
|
|
+
|
|
+This time-based approach has the following advantages:
|
|
+
|
|
+1. It is easier to configure because it is agnostic to applications
|
|
+ and memory sizes.
|
|
+2. It is more reliable because it is directly wired to the OOM killer.
|
|
+
|
|
Summary
|
|
-------
|
|
The multi-gen LRU can be disassembled into the following parts:
|
|
--- a/mm/vmscan.c
|
|
+++ b/mm/vmscan.c
|
|
@@ -4461,6 +4461,10 @@ done:
|
|
return true;
|
|
}
|
|
|
|
+/******************************************************************************
|
|
+ * working set protection
|
|
+ ******************************************************************************/
|
|
+
|
|
static bool lruvec_is_sizable(struct lruvec *lruvec, struct scan_control *sc)
|
|
{
|
|
int gen, type, zone;
|