From: Andrew Morton <akpm@linux-foundation.org>
To: mm-commits@vger.kernel.org,ziy@nvidia.com,vbabka@suse.cz,usama.anjum@collabora.com,svetly.todorov@memverge.com,ryan.roberts@arm.com,david@redhat.com,corbet@lwn.net,avagin@google.com,ran.xiaokai@zte.com.cn,akpm@linux-foundation.org
Subject: [folded-merged] kpageflags-detect-isolated-kpf_thp-folios-v2.patch removed from -mm tree
Date: Fri, 12 Jul 2024 15:48:12 -0700 [thread overview]
Message-ID: <20240712224812.8773CC32782@smtp.kernel.org> (raw)
The quilt patch titled
Subject: kpageflags: detect isolated KPF_THP folios
has been removed from the -mm tree. Its filename was
kpageflags-detect-isolated-kpf_thp-folios-v2.patch
This patch was dropped because it was folded into kpageflags-detect-isolated-kpf_thp-folios.patch
------------------------------------------------------
From: Ran Xiaokai <ran.xiaokai@zte.com.cn>
Subject: kpageflags: detect isolated KPF_THP folios
Date: Mon, 8 Jul 2024 06:26:01 +0000
directly use is_zero_folio(), per David
Link: https://lkml.kernel.org/r/20240708062601.165215-1-ranxiaokai627@163.com
Signed-off-by: Ran Xiaokai <ran.xiaokai@zte.com.cn>
Acked-by: David Hildenbrand <david@redhat.com>
Cc: Andrei Vagin <avagin@google.com>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Muhammad Usama Anjum <usama.anjum@collabora.com>
Cc: Ryan Roberts <ryan.roberts@arm.com>
Cc: Svetly Todorov <svetly.todorov@memverge.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Zi Yan <ziy@nvidia.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
fs/proc/page.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/fs/proc/page.c~kpageflags-detect-isolated-kpf_thp-folios-v2
+++ a/fs/proc/page.c
@@ -154,7 +154,7 @@ u64 stable_page_flags(const struct page
} else if (is_huge_zero_folio(folio)) {
u |= 1 << KPF_ZERO_PAGE;
u |= 1 << KPF_THP;
- } else if (is_zero_pfn(page_to_pfn(page))) {
+ } else if (is_zero_folio(folio)) {
u |= 1 << KPF_ZERO_PAGE;
}
_
Patches currently in -mm which might be from ran.xiaokai@zte.com.cn are
kpageflags-detect-isolated-kpf_thp-folios.patch
reply other threads:[~2024-07-12 22:48 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=20240712224812.8773CC32782@smtp.kernel.org \
--to=akpm@linux-foundation.org \
--cc=avagin@google.com \
--cc=corbet@lwn.net \
--cc=david@redhat.com \
--cc=mm-commits@vger.kernel.org \
--cc=ran.xiaokai@zte.com.cn \
--cc=ryan.roberts@arm.com \
--cc=svetly.todorov@memverge.com \
--cc=usama.anjum@collabora.com \
--cc=vbabka@suse.cz \
--cc=ziy@nvidia.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.