From: patchwork-bot+linux-riscv@kernel.org
To: Andrew Donnellan <ajd@linux.ibm.com>
Cc: linux-riscv@lists.infradead.org, linux-mm@kvack.org,
linuxppc-dev@lists.ozlabs.org, pasha.tatashin@soleen.com,
akpm@linux-foundation.org, maddy@linux.ibm.com,
npiggin@gmail.com, rmclure@nvidia.com, chleroy@kernel.org,
alex@ghiti.fr, x86@kernel.org, nicholas@linux.ibm.com,
sweettea-kernel@dorminy.me, andrew+kernel@donnellan.id.au,
ssrish@linux.ibm.com, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v18 00/12] Support page table check on PowerPC
Date: Fri, 20 Feb 2026 04:10:39 +0000 [thread overview]
Message-ID: <177156063929.189817.18154815738132303149.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20251219-pgtable_check_v18rebase-v18-0-755bc151a50b@linux.ibm.com>
Hello:
This series was applied to riscv/linux.git (fixes)
by Andrew Morton <akpm@linux-foundation.org>:
On Fri, 19 Dec 2025 04:09:32 +1100 you wrote:
> [I will be leaving IBM in about a month from now, and will also be on leave
> for most of that time starting tomorrow. I've cc'd my personal email, which
> I am going to use for any kernel development I do after I leave, and also
> Srish Srinivasan, who will be taking over some of my work.]
>
> Support page table check on PowerPC. Page table check tracks the usage of
> of page table entries at each level to ensure that anonymous mappings have
> at most one writable consumer, and likewise that file-backed mappings are
> not simultaneously also anonymous mappings.
>
> [...]
Here is the summary with links:
- [v18,01/12] arm64/mm: Add addr parameter to __set_ptes_anysz()
https://git.kernel.org/riscv/c/9ac4941aceb0
- [v18,02/12] arm64/mm: Add addr parameter to __ptep_get_and_clear_anysz()
https://git.kernel.org/riscv/c/ee329c29fde8
- [v18,03/12] mm/page_table_check: Reinstate address parameter in [__]page_table_check_pud[s]_set()
https://git.kernel.org/riscv/c/c4a0c5ff85b7
- [v18,04/12] mm/page_table_check: Reinstate address parameter in [__]page_table_check_pmd[s]_set()
https://git.kernel.org/riscv/c/6e2d8f9fc4ed
- [v18,05/12] mm/page_table_check: Provide addr parameter to page_table_check_ptes_set()
https://git.kernel.org/riscv/c/0a5ae4483177
- [v18,06/12] mm/page_table_check: Reinstate address parameter in [__]page_table_check_pud_clear()
https://git.kernel.org/riscv/c/2e6ac078ce5d
- [v18,07/12] mm/page_table_check: Reinstate address parameter in [__]page_table_check_pmd_clear()
(no matching commit)
- [v18,08/12] mm/page_table_check: Reinstate address parameter in [__]page_table_check_pte_clear()
(no matching commit)
- [v18,09/12] mm: Provide address parameter to p{te,md,ud}_user_accessible_page()
https://git.kernel.org/riscv/c/d79f9c9cf703
- [v18,10/12] powerpc/mm: Implement *_user_accessible_page() for ptes
https://git.kernel.org/riscv/c/2f5e576598c9
- [v18,11/12] powerpc/mm: Use set_pte_at_unchecked() for internal usages
https://git.kernel.org/riscv/c/2360f523a49b
- [v18,12/12] powerpc/mm: Support page table check
https://git.kernel.org/riscv/c/641d47d4c963
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
prev parent reply other threads:[~2026-02-20 4:10 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-18 17:09 Andrew Donnellan
2025-12-18 17:09 ` [PATCH v18 01/12] arm64/mm: Add addr parameter to __set_ptes_anysz() Andrew Donnellan
2025-12-18 17:49 ` Pasha Tatashin
2025-12-18 17:09 ` [PATCH v18 02/12] arm64/mm: Add addr parameter to __ptep_get_and_clear_anysz() Andrew Donnellan
2025-12-18 17:49 ` Pasha Tatashin
2025-12-18 17:09 ` [PATCH v18 03/12] mm/page_table_check: Reinstate address parameter in [__]page_table_check_pud[s]_set() Andrew Donnellan
2025-12-18 17:09 ` [PATCH v18 04/12] mm/page_table_check: Reinstate address parameter in [__]page_table_check_pmd[s]_set() Andrew Donnellan
2025-12-18 17:09 ` [PATCH v18 05/12] mm/page_table_check: Provide addr parameter to page_table_check_ptes_set() Andrew Donnellan
2025-12-18 17:09 ` [PATCH v18 06/12] mm/page_table_check: Reinstate address parameter in [__]page_table_check_pud_clear() Andrew Donnellan
2025-12-18 17:09 ` [PATCH v18 07/12] mm/page_table_check: Reinstate address parameter in [__]page_table_check_pmd_clear() Andrew Donnellan
2025-12-18 17:09 ` [PATCH v18 08/12] mm/page_table_check: Reinstate address parameter in [__]page_table_check_pte_clear() Andrew Donnellan
2025-12-18 17:09 ` [PATCH v18 09/12] mm: Provide address parameter to p{te,md,ud}_user_accessible_page() Andrew Donnellan
2025-12-18 17:09 ` [PATCH v18 10/12] powerpc/mm: Implement *_user_accessible_page() for ptes Andrew Donnellan
2026-01-27 15:51 ` Alexander Gordeev
2025-12-18 17:09 ` [PATCH v18 11/12] powerpc/mm: Use set_pte_at_unchecked() for internal usages Andrew Donnellan
2025-12-18 17:09 ` [PATCH v18 12/12] powerpc/mm: Support page table check Andrew Donnellan
2025-12-18 17:55 ` [PATCH v18 00/12] Support page table check on PowerPC Pasha Tatashin
2026-01-14 5:00 ` Andrew Donnellan
2026-01-14 9:34 ` Christophe Leroy (CS GROUP)
2026-01-15 6:13 ` Andrew Donnellan
2026-01-16 0:18 ` Andrew Morton
2026-01-16 3:13 ` Andrew Donnellan
2026-02-20 4:10 ` patchwork-bot+linux-riscv [this message]
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=177156063929.189817.18154815738132303149.git-patchwork-notify@kernel.org \
--to=patchwork-bot+linux-riscv@kernel.org \
--cc=ajd@linux.ibm.com \
--cc=akpm@linux-foundation.org \
--cc=alex@ghiti.fr \
--cc=andrew+kernel@donnellan.id.au \
--cc=chleroy@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=linux-riscv@lists.infradead.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=maddy@linux.ibm.com \
--cc=nicholas@linux.ibm.com \
--cc=npiggin@gmail.com \
--cc=pasha.tatashin@soleen.com \
--cc=rmclure@nvidia.com \
--cc=ssrish@linux.ibm.com \
--cc=sweettea-kernel@dorminy.me \
--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