All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hongchen Zhang <zhanghongchen@loongson.cn>
To: Huacai Chen <chenhuacai@kernel.org>,
	WANG Xuerui <kernel@xen0n.name>,
	Andrew Morton <akpm@linux-foundation.org>,
	Anshuman Khandual <anshuman.khandual@arm.com>,
	David Hildenbrand <david@redhat.com>,
	Mike Rapoport <rppt@kernel.org>,
	Jiaxun Yang <jiaxun.yang@flygoat.com>,
	Feiyang Chen <chenfeiyang@loongson.cn>,
	Qi Zheng <zhengqi.arch@bytedance.com>
Cc: loongarch@lists.linux.dev, linux-kernel@vger.kernel.org,
	loongson-kernel@lists.loongnix.cn
Subject: Re: [PATCH] LoongArch: let pmd_present return true when splitting pmd
Date: Tue, 6 Jun 2023 19:38:38 +0800	[thread overview]
Message-ID: <46ce41a3-16bd-6d92-c8a8-764283859190@loongson.cn> (raw)
In-Reply-To: <20230524074132.10916-1-zhanghongchen@loongson.cn>

Hi,

Gentle ping.

On 2023/5/24 pm 3:41, Hongchen Zhang wrote:
> when we split a pmd into ptes, pmd_present() and pmd_trans_huge() should
> return true,otherwise it would be treated as a swap pmd.
> As arm64 does in
> commit b65399f6111b ("arm64/mm: Change THP helpers to comply with generic MM semantics")
> we add a _PAGE_PRESENT_INVALID bit for LoongArch.
> 
> Signed-off-by: Hongchen Zhang <zhanghongchen@loongson.cn>
> ---
>   arch/loongarch/include/asm/pgtable-bits.h | 2 ++
>   arch/loongarch/include/asm/pgtable.h      | 3 ++-
>   2 files changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/arch/loongarch/include/asm/pgtable-bits.h b/arch/loongarch/include/asm/pgtable-bits.h
> index 8b98d22a145b..a7469d28d9d0 100644
> --- a/arch/loongarch/include/asm/pgtable-bits.h
> +++ b/arch/loongarch/include/asm/pgtable-bits.h
> @@ -22,12 +22,14 @@
>   #define	_PAGE_PFN_SHIFT		12
>   #define	_PAGE_SWP_EXCLUSIVE_SHIFT 23
>   #define	_PAGE_PFN_END_SHIFT	48
> +#define _PAGE_PRESENT_INVALID_SHIFT 60
>   #define	_PAGE_NO_READ_SHIFT	61
>   #define	_PAGE_NO_EXEC_SHIFT	62
>   #define	_PAGE_RPLV_SHIFT	63
>   
>   /* Used by software */
>   #define _PAGE_PRESENT		(_ULCAST_(1) << _PAGE_PRESENT_SHIFT)
> +#define _PAGE_PRESENT_INVALID	(_ULCAST_(1) << _PAGE_PRESENT_INVALID_SHIFT)
>   #define _PAGE_WRITE		(_ULCAST_(1) << _PAGE_WRITE_SHIFT)
>   #define _PAGE_ACCESSED		(_ULCAST_(1) << _PAGE_ACCESSED_SHIFT)
>   #define _PAGE_MODIFIED		(_ULCAST_(1) << _PAGE_MODIFIED_SHIFT)
> diff --git a/arch/loongarch/include/asm/pgtable.h b/arch/loongarch/include/asm/pgtable.h
> index d28fb9dbec59..9a9f9ff9b709 100644
> --- a/arch/loongarch/include/asm/pgtable.h
> +++ b/arch/loongarch/include/asm/pgtable.h
> @@ -213,7 +213,7 @@ static inline int pmd_bad(pmd_t pmd)
>   static inline int pmd_present(pmd_t pmd)
>   {
>   	if (unlikely(pmd_val(pmd) & _PAGE_HUGE))
> -		return !!(pmd_val(pmd) & (_PAGE_PRESENT | _PAGE_PROTNONE));
> +		return !!(pmd_val(pmd) & (_PAGE_PRESENT | _PAGE_PROTNONE | _PAGE_PRESENT_INVALID));
>   
>   	return pmd_val(pmd) != (unsigned long)invalid_pte_table;
>   }
> @@ -558,6 +558,7 @@ static inline pmd_t pmd_modify(pmd_t pmd, pgprot_t newprot)
>   
>   static inline pmd_t pmd_mkinvalid(pmd_t pmd)
>   {
> +	pmd_val(pmd) |= _PAGE_PRESENT_INVALID;
>   	pmd_val(pmd) &= ~(_PAGE_PRESENT | _PAGE_VALID | _PAGE_DIRTY | _PAGE_PROTNONE);
>   
>   	return pmd;
> 
> base-commit: f1fcbaa18b28dec10281551dfe6ed3a3ed80e3d6
> 

Best Regards
Hongchen Zhang


  parent reply	other threads:[~2023-06-06 11:40 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-24  7:41 [PATCH] LoongArch: let pmd_present return true when splitting pmd Hongchen Zhang
2023-05-27  5:32 ` Huacai Chen
2023-06-08  2:12   ` Hongchen Zhang
2023-06-06 11:38 ` Hongchen Zhang [this message]
2023-06-06 13:49   ` bibo, mao
2023-06-07  2:57     ` bibo, mao
2023-06-08  1:31     ` Hongchen Zhang
2023-06-08  2:21       ` bibo, mao

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=46ce41a3-16bd-6d92-c8a8-764283859190@loongson.cn \
    --to=zhanghongchen@loongson.cn \
    --cc=akpm@linux-foundation.org \
    --cc=anshuman.khandual@arm.com \
    --cc=chenfeiyang@loongson.cn \
    --cc=chenhuacai@kernel.org \
    --cc=david@redhat.com \
    --cc=jiaxun.yang@flygoat.com \
    --cc=kernel@xen0n.name \
    --cc=linux-kernel@vger.kernel.org \
    --cc=loongarch@lists.linux.dev \
    --cc=loongson-kernel@lists.loongnix.cn \
    --cc=rppt@kernel.org \
    --cc=zhengqi.arch@bytedance.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.