From: Anshuman Khandual <anshuman.khandual@arm.com>
To: linux-mm@kvack.org
Cc: Anshuman Khandual <anshuman.khandual@arm.com>,
Andrew Morton <akpm@linux-foundation.org>,
David Hildenbrand <david@redhat.com>,
Ryan Roberts <ryan.roberts@arm.com>,
"Mike Rapoport (IBM)" <rppt@kernel.org>,
Arnd Bergmann <arnd@arndb.de>,
x86@kernel.org, linux-m68k@lists.linux-m68k.org,
linux-fsdevel@vger.kernel.org, kasan-dev@googlegroups.com,
linux-kernel@vger.kernel.org, linux-perf-users@vger.kernel.org
Subject: [PATCH 0/7] mm: Use pxdp_get() for accessing page table entries
Date: Fri, 13 Sep 2024 14:14:26 +0530 [thread overview]
Message-ID: <20240913084433.1016256-1-anshuman.khandual@arm.com> (raw)
This series converts all generic page table entries direct derefences via
pxdp_get() based helpers extending the changes brought in via the commit
c33c794828f2 ("mm: ptep_get() conversion"). First it does some platform
specific changes for m68k and x86 architecture.
This series has been build tested on multiple architecture such as x86,
arm64, powerpc, powerpc64le, riscv, and m68k etc.
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: David Hildenbrand <david@redhat.com>
Cc: Ryan Roberts <ryan.roberts@arm.com>
Cc: "Mike Rapoport (IBM)" <rppt@kernel.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: x86@kernel.org
Cc: linux-m68k@lists.linux-m68k.org
Cc: linux-mm@kvack.org
Cc: linux-fsdevel@vger.kernel.org
Cc: kasan-dev@googlegroups.com
Cc: linux-kernel@vger.kernel.org
Cc: linux-perf-users@vger.kernel.org
Cc: kasan-dev@googlegroups.com
Anshuman Khandual (7):
m68k/mm: Change pmd_val()
x86/mm: Drop page table entry address output from pxd_ERROR()
mm: Use ptep_get() for accessing PTE entries
mm: Use pmdp_get() for accessing PMD entries
mm: Use pudp_get() for accessing PUD entries
mm: Use p4dp_get() for accessing P4D entries
mm: Use pgdp_get() for accessing PGD entries
arch/m68k/include/asm/page.h | 2 +-
arch/x86/include/asm/pgtable-3level.h | 12 ++---
arch/x86/include/asm/pgtable_64.h | 20 +++----
drivers/misc/sgi-gru/grufault.c | 10 ++--
fs/proc/task_mmu.c | 26 ++++-----
fs/userfaultfd.c | 6 +--
include/linux/huge_mm.h | 5 +-
include/linux/mm.h | 6 +--
include/linux/pgtable.h | 38 +++++++-------
kernel/events/core.c | 6 +--
mm/gup.c | 40 +++++++-------
mm/hmm.c | 2 +-
mm/huge_memory.c | 76 +++++++++++++--------------
mm/hugetlb.c | 10 ++--
mm/hugetlb_vmemmap.c | 4 +-
mm/kasan/init.c | 38 +++++++-------
mm/kasan/shadow.c | 12 ++---
mm/khugepaged.c | 4 +-
mm/madvise.c | 6 +--
mm/mapping_dirty_helpers.c | 2 +-
mm/memory-failure.c | 14 ++---
mm/memory.c | 59 +++++++++++----------
mm/mempolicy.c | 4 +-
mm/migrate.c | 4 +-
mm/migrate_device.c | 10 ++--
mm/mlock.c | 6 +--
mm/mprotect.c | 2 +-
mm/mremap.c | 4 +-
mm/page_table_check.c | 4 +-
mm/page_vma_mapped.c | 6 +--
mm/pagewalk.c | 10 ++--
mm/percpu.c | 8 +--
mm/pgalloc-track.h | 6 +--
mm/pgtable-generic.c | 24 ++++-----
mm/ptdump.c | 8 +--
mm/rmap.c | 8 +--
mm/sparse-vmemmap.c | 10 ++--
mm/vmalloc.c | 46 ++++++++--------
mm/vmscan.c | 6 +--
39 files changed, 283 insertions(+), 281 deletions(-)
--
2.25.1
next reply other threads:[~2024-09-13 8:44 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-13 8:44 Anshuman Khandual [this message]
2024-09-13 8:44 ` [PATCH 1/7] m68k/mm: Change pmd_val() Anshuman Khandual
2024-09-13 8:44 ` [PATCH 2/7] x86/mm: Drop page table entry address output from pxd_ERROR() Anshuman Khandual
2024-09-13 17:21 ` Dave Hansen
2024-09-16 2:54 ` Anshuman Khandual
2024-09-13 8:44 ` [PATCH 3/7] mm: Use ptep_get() for accessing PTE entries Anshuman Khandual
2024-09-13 10:27 ` Ryan Roberts
2024-09-16 3:16 ` Anshuman Khandual
2024-09-13 8:44 ` [PATCH 4/7] mm: Use pmdp_get() for accessing PMD entries Anshuman Khandual
2024-09-13 10:38 ` Ryan Roberts
2024-09-16 6:15 ` Anshuman Khandual
2024-09-13 8:44 ` [PATCH 5/7] mm: Use pudp_get() for accessing PUD entries Anshuman Khandual
2024-09-13 8:44 ` [PATCH 6/7] mm: Use p4dp_get() for accessing P4D entries Anshuman Khandual
2024-09-13 8:44 ` [PATCH 7/7] mm: Use pgdp_get() for accessing PGD entries Anshuman Khandual
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=20240913084433.1016256-1-anshuman.khandual@arm.com \
--to=anshuman.khandual@arm.com \
--cc=akpm@linux-foundation.org \
--cc=arnd@arndb.de \
--cc=david@redhat.com \
--cc=kasan-dev@googlegroups.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-m68k@lists.linux-m68k.org \
--cc=linux-mm@kvack.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=rppt@kernel.org \
--cc=ryan.roberts@arm.com \
--cc=x86@kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).