summaryrefslogtreecommitdiffstats
path: root/fs/drop_caches.c
diff options
context:
space:
mode:
authorAndrew Yang <andrew.yang@mediatek.com>2023-06-30 17:22:02 +0800
committerAndrew Morton <akpm@linux-foundation.org>2023-08-18 10:12:11 -0700
commit8a144612eb8a31b94ecb2d340d07588ac115e819 (patch)
treec843fbf6cd2a0b8eb4ba19ea9f5af9c7c1a5ce21 /fs/drop_caches.c
parent86327e8eb94c52eca4f93cfece2e29d1bf52acbf (diff)
downloadlinux-8a144612eb8a31b94ecb2d340d07588ac115e819.tar.gz
linux-8a144612eb8a31b94ecb2d340d07588ac115e819.tar.bz2
linux-8a144612eb8a31b94ecb2d340d07588ac115e819.zip
fs: drop_caches: draining pages before dropping caches
We expect a file page access after dropping caches should be a major fault, but sometimes it's still a minor fault. That's because a file page can't be dropped if it's in a per-cpu pagevec. Draining all pages from per-cpu pagevec to lru list before trying to drop caches. Link: https://lkml.kernel.org/r/20230630092203.16080-1-andrew.yang@mediatek.com Signed-off-by: Andrew Yang <andrew.yang@mediatek.com> Cc: Al Viro <viro@zeniv.linux.org.uk> Cc: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> Cc: Christian Brauner <brauner@kernel.org> Cc: Matthias Brugger <matthias.bgg@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'fs/drop_caches.c')
-rw-r--r--fs/drop_caches.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/drop_caches.c b/fs/drop_caches.c
index e619c31b6bd9..b9575957a7c2 100644
--- a/fs/drop_caches.c
+++ b/fs/drop_caches.c
@@ -10,6 +10,7 @@
#include <linux/writeback.h>
#include <linux/sysctl.h>
#include <linux/gfp.h>
+#include <linux/swap.h>
#include "internal.h"
/* A global variable is a bit ugly, but it keeps the code simple */
@@ -59,6 +60,7 @@ int drop_caches_sysctl_handler(struct ctl_table *table, int write,
static int stfu;
if (sysctl_drop_caches & 1) {
+ lru_add_drain_all();
iterate_supers(drop_pagecache_sb, NULL);
count_vm_event(DROP_PAGECACHE);
}