From: Andrew Morton <akpm@linux-foundation.org>
To: mm-commits@vger.kernel.org,yuanchu@google.com,weixugc@google.com,usamaarif642@gmail.com,sj@kernel.org,shikemeng@huaweicloud.com,nphamcs@gmail.com,kasong@tencent.com,kas@kernel.org,chrisl@kernel.org,bhe@redhat.com,baohua@kernel.org,axelrasmussen@google.com,d@ilvokhin.com,akpm@linux-foundation.org
Subject: [obsolete] mm-skip-folio_activate-for-mlocked-folios.patch removed from -mm tree
Date: Wed, 15 Oct 2025 13:30:40 -0700 [thread overview]
Message-ID: <20251015203041.52B02C4CEF8@smtp.kernel.org> (raw)
The quilt patch titled
Subject: mm: skip folio_activate() for mlocked folios
has been removed from the -mm tree. Its filename was
mm-skip-folio_activate-for-mlocked-folios.patch
This patch was dropped because it is obsolete
------------------------------------------------------
From: Dmitry Ilvokhin <d@ilvokhin.com>
Subject: mm: skip folio_activate() for mlocked folios
Date: Mon, 6 Oct 2025 13:25:26 +0000
__mlock_folio() does not move folio to unevicable LRU, when
folio_activate() removes folio from LRU.
The user-visible effect is that we unnecessary postpone moving pages to
unevictable LRU that lead to unexpected stats: Mlocked > Unevictable.
To prevent this case also check for folio_test_mlocked() in
folio_mark_accessed(). If folio is not yet marked as unevictable, but
already marked as mlocked, then skip folio_activate() call to allow
__mlock_folio() to make all necessary updates. It should be safe to skip
folio_activate() here, because mlocked folio should end up in unevictable
LRU eventually anyway.
To observe the problem mmap() and mlock() big file and check Unevictable
and Mlocked values from /proc/meminfo. On freshly booted system without
any other mlocked memory we expect them to match or be quite close.
See below for more detailed reproduction steps. Source code of stat.c is
available at [1].
$ head -c 8G < /dev/urandom > /tmp/random.bin
$ cc -pedantic -Wall -std=c99 stat.c -O3 -o /tmp/stat
$ /tmp/stat
Unevictable: 8389668 kB
Mlocked: 8389700 kB
Need to run binary twice. Problem does not reproduce on the first run,
but always reproduces on the second run.
$ /tmp/stat
Unevictable: 5374676 kB
Mlocked: 8389332 kB
Link: https://lkml.kernel.org/r/aOPDRmk2Zd20qxfk@shell.ilvokhin.com
Link: https://gist.github.com/ilvokhin/e50c3d2ff5d9f70dcbb378c6695386dd [1]
Co-developed-by: Kiryl Shutsemau <kas@kernel.org>
Signed-off-by: Kiryl Shutsemau <kas@kernel.org>
Signed-off-by: Dmitry Ilvokhin <d@ilvokhin.com>
Acked-by: Usama Arif <usamaarif642@gmail.com>
Acked-by: Nhat Pham <nphamcs@gmail.com>
Reviewed-by: SeongJae Park <sj@kernel.org>
Cc: Axel Rasmussen <axelrasmussen@google.com>
Cc: Baoquan He <bhe@redhat.com>
Cc: Barry Song <baohua@kernel.org>
Cc: Chris Li <chrisl@kernel.org>
Cc: Kairui Song <kasong@tencent.com>
Cc: Kemeng Shi <shikemeng@huaweicloud.com>
Cc: Wei Xu <weixugc@google.com>
Cc: Yuanchu Xie <yuanchu@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
mm/swap.c | 10 ++++++++++
1 file changed, 10 insertions(+)
--- a/mm/swap.c~mm-skip-folio_activate-for-mlocked-folios
+++ a/mm/swap.c
@@ -469,6 +469,16 @@ void folio_mark_accessed(struct folio *f
* this list is never rotated or maintained, so marking an
* unevictable page accessed has no effect.
*/
+ } else if (folio_test_mlocked(folio)) {
+ /*
+ * Pages that are mlocked, but not yet on unevictable LRU.
+ * They might be still in mlock_fbatch waiting to be processed
+ * and activating it here might interfere with
+ * mlock_folio_batch(). __mlock_folio() will fail
+ * folio_test_clear_lru() check and give up. It happens because
+ * __folio_batch_add_and_move() clears LRU flag, when adding
+ * folio to activate batch.
+ */
} else if (!folio_test_active(folio)) {
/*
* If the folio is on the LRU, queue it for activation via
_
Patches currently in -mm which might be from d@ilvokhin.com are
reply other threads:[~2025-10-15 20:30 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251015203041.52B02C4CEF8@smtp.kernel.org \
--to=akpm@linux-foundation.org \
--cc=axelrasmussen@google.com \
--cc=baohua@kernel.org \
--cc=bhe@redhat.com \
--cc=chrisl@kernel.org \
--cc=d@ilvokhin.com \
--cc=kas@kernel.org \
--cc=kasong@tencent.com \
--cc=mm-commits@vger.kernel.org \
--cc=nphamcs@gmail.com \
--cc=shikemeng@huaweicloud.com \
--cc=sj@kernel.org \
--cc=usamaarif642@gmail.com \
--cc=weixugc@google.com \
--cc=yuanchu@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.