All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tong Tiangen <tongtiangen@huawei.com>
To: Thomas Gleixner <tglx@linutronix.de>,
	Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
	Dave Hansen <dave.hansen@linux.intel.com>, <x86@kernel.org>,
	"H. Peter Anvin" <hpa@zytor.com>,
	Pasha Tatashin <pasha.tatashin@soleen.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will@kernel.org>,
	Paul Walmsley <paul.walmsley@sifive.com>,
	Palmer Dabbelt <palmer@dabbelt.com>,
	Albert Ou <aou@eecs.berkeley.edu>
Cc: <linux-kernel@vger.kernel.org>, <linux-mm@kvack.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-riscv@lists.infradead.org>,
	Kefeng Wang <wangkefeng.wang@huawei.com>,
	Guohanjun <guohanjun@huawei.com>
Subject: Re: [PATCH -next v4 0/4]mm: page_table_check: add support on arm64 and riscv
Date: Mon, 18 Apr 2022 14:12:09 +0800	[thread overview]
Message-ID: <0b023809-8138-a44f-83e2-db54a7446954@huawei.com> (raw)
In-Reply-To: <20220418034444.520928-1-tongtiangen@huawei.com>

Hi Andrew, Catalin, Palmer:

This patch modifies the code related to the mm/x86/arm64/riscv, who can 
help me merge it if no object, Maybe Andrew is more appropriate?

Thanks,
Tong.

在 2022/4/18 11:44, Tong Tiangen 写道:
> Page table check performs extra verifications at the time when new
> pages become accessible from the userspace by getting their page
> table entries (PTEs PMDs etc.) added into the table. It is supported
> on X86[1].
> 
> This patchset made some simple changes and make it easier to support
> new architecture, then we support this feature on ARM64 and RISCV.
> 
> [1]https://lore.kernel.org/lkml/20211123214814.3756047-1-pasha.tatashin@soleen.com/
> 
> v3 -> v4:
>   1. Adapt to next-20220414
> 
> v2 -> v3:
>    1. Modify ptep_clear() in include/linux/pgtable.h, using IS_ENABLED
>       according to the suggestions of Pasha.
> 
> v1 -> v2:
>    1. Fix arm64's pte/pmd/pud_user_accessible_page() according to the
>       suggestions of Catalin.
>    2. Also fix riscv's pte_pmd_pud_user_accessible_page().
> 
> Kefeng Wang (2):
>    mm: page_table_check: move pxx_user_accessible_page into x86
>    arm64: mm: add support for page table check
> 
> Tong Tiangen (2):
>    mm: page_table_check: add hooks to public helpers
>    riscv: mm: add support for page table check
> 
>   arch/arm64/Kconfig               |  1 +
>   arch/arm64/include/asm/pgtable.h | 65 ++++++++++++++++++++++++---
>   arch/riscv/Kconfig               |  1 +
>   arch/riscv/include/asm/pgtable.h | 77 +++++++++++++++++++++++++++++---
>   arch/x86/include/asm/pgtable.h   | 29 +++++++-----
>   include/linux/pgtable.h          | 26 +++++++----
>   mm/page_table_check.c            | 25 ++++-------
>   7 files changed, 178 insertions(+), 46 deletions(-)
> 

WARNING: multiple messages have this Message-ID (diff)
From: Tong Tiangen <tongtiangen@huawei.com>
To: Thomas Gleixner <tglx@linutronix.de>,
	Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
	Dave Hansen <dave.hansen@linux.intel.com>, <x86@kernel.org>,
	"H. Peter Anvin" <hpa@zytor.com>,
	Pasha Tatashin <pasha.tatashin@soleen.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will@kernel.org>,
	Paul Walmsley <paul.walmsley@sifive.com>,
	Palmer Dabbelt <palmer@dabbelt.com>,
	Albert Ou <aou@eecs.berkeley.edu>
Cc: <linux-kernel@vger.kernel.org>, <linux-mm@kvack.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-riscv@lists.infradead.org>,
	Kefeng Wang <wangkefeng.wang@huawei.com>,
	Guohanjun <guohanjun@huawei.com>
Subject: Re: [PATCH -next v4 0/4]mm: page_table_check: add support on arm64 and riscv
Date: Mon, 18 Apr 2022 14:12:09 +0800	[thread overview]
Message-ID: <0b023809-8138-a44f-83e2-db54a7446954@huawei.com> (raw)
In-Reply-To: <20220418034444.520928-1-tongtiangen@huawei.com>

Hi Andrew, Catalin, Palmer:

This patch modifies the code related to the mm/x86/arm64/riscv, who can 
help me merge it if no object, Maybe Andrew is more appropriate?

Thanks,
Tong.

在 2022/4/18 11:44, Tong Tiangen 写道:
> Page table check performs extra verifications at the time when new
> pages become accessible from the userspace by getting their page
> table entries (PTEs PMDs etc.) added into the table. It is supported
> on X86[1].
> 
> This patchset made some simple changes and make it easier to support
> new architecture, then we support this feature on ARM64 and RISCV.
> 
> [1]https://lore.kernel.org/lkml/20211123214814.3756047-1-pasha.tatashin@soleen.com/
> 
> v3 -> v4:
>   1. Adapt to next-20220414
> 
> v2 -> v3:
>    1. Modify ptep_clear() in include/linux/pgtable.h, using IS_ENABLED
>       according to the suggestions of Pasha.
> 
> v1 -> v2:
>    1. Fix arm64's pte/pmd/pud_user_accessible_page() according to the
>       suggestions of Catalin.
>    2. Also fix riscv's pte_pmd_pud_user_accessible_page().
> 
> Kefeng Wang (2):
>    mm: page_table_check: move pxx_user_accessible_page into x86
>    arm64: mm: add support for page table check
> 
> Tong Tiangen (2):
>    mm: page_table_check: add hooks to public helpers
>    riscv: mm: add support for page table check
> 
>   arch/arm64/Kconfig               |  1 +
>   arch/arm64/include/asm/pgtable.h | 65 ++++++++++++++++++++++++---
>   arch/riscv/Kconfig               |  1 +
>   arch/riscv/include/asm/pgtable.h | 77 +++++++++++++++++++++++++++++---
>   arch/x86/include/asm/pgtable.h   | 29 +++++++-----
>   include/linux/pgtable.h          | 26 +++++++----
>   mm/page_table_check.c            | 25 ++++-------
>   7 files changed, 178 insertions(+), 46 deletions(-)
> 

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

WARNING: multiple messages have this Message-ID (diff)
From: Tong Tiangen <tongtiangen@huawei.com>
To: Thomas Gleixner <tglx@linutronix.de>,
	Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
	Dave Hansen <dave.hansen@linux.intel.com>, <x86@kernel.org>,
	"H. Peter Anvin" <hpa@zytor.com>,
	Pasha Tatashin <pasha.tatashin@soleen.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will@kernel.org>,
	Paul Walmsley <paul.walmsley@sifive.com>,
	Palmer Dabbelt <palmer@dabbelt.com>,
	Albert Ou <aou@eecs.berkeley.edu>
Cc: <linux-kernel@vger.kernel.org>, <linux-mm@kvack.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-riscv@lists.infradead.org>,
	Kefeng Wang <wangkefeng.wang@huawei.com>,
	Guohanjun <guohanjun@huawei.com>
Subject: Re: [PATCH -next v4 0/4]mm: page_table_check: add support on arm64 and riscv
Date: Mon, 18 Apr 2022 14:12:09 +0800	[thread overview]
Message-ID: <0b023809-8138-a44f-83e2-db54a7446954@huawei.com> (raw)
In-Reply-To: <20220418034444.520928-1-tongtiangen@huawei.com>

Hi Andrew, Catalin, Palmer:

This patch modifies the code related to the mm/x86/arm64/riscv, who can 
help me merge it if no object, Maybe Andrew is more appropriate?

Thanks,
Tong.

在 2022/4/18 11:44, Tong Tiangen 写道:
> Page table check performs extra verifications at the time when new
> pages become accessible from the userspace by getting their page
> table entries (PTEs PMDs etc.) added into the table. It is supported
> on X86[1].
> 
> This patchset made some simple changes and make it easier to support
> new architecture, then we support this feature on ARM64 and RISCV.
> 
> [1]https://lore.kernel.org/lkml/20211123214814.3756047-1-pasha.tatashin@soleen.com/
> 
> v3 -> v4:
>   1. Adapt to next-20220414
> 
> v2 -> v3:
>    1. Modify ptep_clear() in include/linux/pgtable.h, using IS_ENABLED
>       according to the suggestions of Pasha.
> 
> v1 -> v2:
>    1. Fix arm64's pte/pmd/pud_user_accessible_page() according to the
>       suggestions of Catalin.
>    2. Also fix riscv's pte_pmd_pud_user_accessible_page().
> 
> Kefeng Wang (2):
>    mm: page_table_check: move pxx_user_accessible_page into x86
>    arm64: mm: add support for page table check
> 
> Tong Tiangen (2):
>    mm: page_table_check: add hooks to public helpers
>    riscv: mm: add support for page table check
> 
>   arch/arm64/Kconfig               |  1 +
>   arch/arm64/include/asm/pgtable.h | 65 ++++++++++++++++++++++++---
>   arch/riscv/Kconfig               |  1 +
>   arch/riscv/include/asm/pgtable.h | 77 +++++++++++++++++++++++++++++---
>   arch/x86/include/asm/pgtable.h   | 29 +++++++-----
>   include/linux/pgtable.h          | 26 +++++++----
>   mm/page_table_check.c            | 25 ++++-------
>   7 files changed, 178 insertions(+), 46 deletions(-)
> 

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2022-04-18  6:12 UTC|newest]

Thread overview: 66+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-18  3:44 [PATCH -next v4 0/4]mm: page_table_check: add support on arm64 and riscv Tong Tiangen
2022-04-18  3:44 ` Tong Tiangen
2022-04-18  3:44 ` Tong Tiangen
2022-04-18  3:44 ` [PATCH -next v4 1/4] mm: page_table_check: move pxx_user_accessible_page into x86 Tong Tiangen
2022-04-18  3:44   ` Tong Tiangen
2022-04-18  3:44   ` Tong Tiangen
2022-04-19  9:29   ` Anshuman Khandual
2022-04-19  9:29     ` Anshuman Khandual
2022-04-19  9:29     ` Anshuman Khandual
2022-04-20  6:44     ` Tong Tiangen
2022-04-20  6:44       ` Tong Tiangen
2022-04-20  6:44       ` Tong Tiangen
2022-04-20 16:44       ` Pasha Tatashin
2022-04-20 16:44         ` Pasha Tatashin
2022-04-20 16:44         ` Pasha Tatashin
2022-04-21  3:05         ` Tong Tiangen
2022-04-21  3:05           ` Tong Tiangen
2022-04-21  3:05           ` Tong Tiangen
2022-04-21  3:44           ` Anshuman Khandual
2022-04-21  3:44             ` Anshuman Khandual
2022-04-21  3:44             ` Anshuman Khandual
2022-04-21  6:27             ` Tong Tiangen
2022-04-21  6:27               ` Tong Tiangen
2022-04-21  6:27               ` Tong Tiangen
2022-04-18  3:44 ` [PATCH -next v4 2/4] mm: page_table_check: add hooks to public helpers Tong Tiangen
2022-04-18  3:44   ` Tong Tiangen
2022-04-18  3:44   ` Tong Tiangen
2022-04-18  3:44 ` [PATCH -next v4 3/4] arm64: mm: add support for page table check Tong Tiangen
2022-04-18  3:44   ` Tong Tiangen
2022-04-18  3:44   ` Tong Tiangen
2022-04-18  9:28   ` Anshuman Khandual
2022-04-18  9:28     ` Anshuman Khandual
2022-04-18  9:28     ` Anshuman Khandual
2022-04-18 15:47     ` Tong Tiangen
2022-04-18 15:47       ` Tong Tiangen
2022-04-18 15:47       ` Tong Tiangen
2022-04-18 16:20       ` Pasha Tatashin
2022-04-18 16:20         ` Pasha Tatashin
2022-04-18 16:20         ` Pasha Tatashin
2022-04-19  7:25         ` Anshuman Khandual
2022-04-19  7:25           ` Anshuman Khandual
2022-04-19  7:25           ` Anshuman Khandual
2022-04-19  7:10       ` Anshuman Khandual
2022-04-19  7:10         ` Anshuman Khandual
2022-04-19  7:10         ` Anshuman Khandual
2022-04-19  8:52         ` Tong Tiangen
2022-04-19  8:52           ` Tong Tiangen
2022-04-19  8:52           ` Tong Tiangen
2022-04-19 10:22   ` Anshuman Khandual
2022-04-19 10:22     ` Anshuman Khandual
2022-04-19 10:22     ` Anshuman Khandual
2022-04-19 13:19     ` Pasha Tatashin
2022-04-19 13:19       ` Pasha Tatashin
2022-04-19 13:19       ` Pasha Tatashin
2022-04-20  5:05       ` Anshuman Khandual
2022-04-20  5:05         ` Anshuman Khandual
2022-04-20  5:05         ` Anshuman Khandual
2022-04-20 17:08         ` Pasha Tatashin
2022-04-20 17:08           ` Pasha Tatashin
2022-04-20 17:08           ` Pasha Tatashin
2022-04-18  3:44 ` [PATCH -next v4 4/4] riscv: " Tong Tiangen
2022-04-18  3:44   ` Tong Tiangen
2022-04-18  3:44   ` Tong Tiangen
2022-04-18  6:12 ` Tong Tiangen [this message]
2022-04-18  6:12   ` [PATCH -next v4 0/4]mm: page_table_check: add support on arm64 and riscv Tong Tiangen
2022-04-18  6:12   ` Tong Tiangen

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=0b023809-8138-a44f-83e2-db54a7446954@huawei.com \
    --to=tongtiangen@huawei.com \
    --cc=akpm@linux-foundation.org \
    --cc=aou@eecs.berkeley.edu \
    --cc=bp@alien8.de \
    --cc=catalin.marinas@arm.com \
    --cc=dave.hansen@linux.intel.com \
    --cc=guohanjun@huawei.com \
    --cc=hpa@zytor.com \
    --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=mingo@redhat.com \
    --cc=palmer@dabbelt.com \
    --cc=pasha.tatashin@soleen.com \
    --cc=paul.walmsley@sifive.com \
    --cc=tglx@linutronix.de \
    --cc=wangkefeng.wang@huawei.com \
    --cc=will@kernel.org \
    --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 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.