lmkd: check pgrefill vmstat when deciding active reclaim am: 4d8791b1f1 am: 3d9c7f86fa am: d194d9188f am: 17c4843c31 am: 844fa71bc7

Original change: https://android-review.googlesource.com/c/platform/system/memory/lmkd/+/2662996

Change-Id: I380a503269c1b56d770226a2d6372dcd7ab7a68b
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Suren Baghdasaryan 2023-07-29 02:13:47 +00:00 committed by Automerger Merge Worker
commit 61374ce038
1 changed files with 9 additions and 0 deletions

View File

@ -467,6 +467,7 @@ enum vmstat_field {
VS_PGSCAN_KSWAPD,
VS_PGSCAN_DIRECT,
VS_PGSCAN_DIRECT_THROTTLE,
VS_PGREFILL,
VS_FIELD_COUNT
};
@ -479,6 +480,7 @@ static const char* const vmstat_field_names[VS_FIELD_COUNT] = {
"pgscan_kswapd",
"pgscan_direct",
"pgscan_direct_throttle",
"pgrefill",
};
union vmstat {
@ -491,6 +493,7 @@ union vmstat {
int64_t pgscan_kswapd;
int64_t pgscan_direct;
int64_t pgscan_direct_throttle;
int64_t pgrefill;
} field;
int64_t arr[VS_FIELD_COUNT];
};
@ -2586,6 +2589,7 @@ static void mp_event_psi(int data, uint32_t events, struct polling_params *poll_
static int64_t base_file_lru;
static int64_t init_pgscan_kswapd;
static int64_t init_pgscan_direct;
static int64_t init_pgrefill;
static bool killing;
static int thrashing_limit = thrashing_limit_pct;
static struct zone_watermarks watermarks;
@ -2671,9 +2675,14 @@ static void mp_event_psi(int data, uint32_t events, struct polling_params *poll_
if (vs.field.pgscan_direct != init_pgscan_direct) {
init_pgscan_direct = vs.field.pgscan_direct;
init_pgscan_kswapd = vs.field.pgscan_kswapd;
init_pgrefill = vs.field.pgrefill;
reclaim = DIRECT_RECLAIM;
} else if (vs.field.pgscan_kswapd != init_pgscan_kswapd) {
init_pgscan_kswapd = vs.field.pgscan_kswapd;
init_pgrefill = vs.field.pgrefill;
reclaim = KSWAPD_RECLAIM;
} else if (vs.field.pgrefill != init_pgrefill) {
init_pgrefill = vs.field.pgrefill;
reclaim = KSWAPD_RECLAIM;
} else if (workingset_refault_file == prev_workingset_refault) {
/*