mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Marek Szyprowski <m.szyprowski@samsung.com>
To: Klara Modin <klarasmodin@gmail.com>, Xu Lu <luxu.kernel@bytedance.com>
Cc: paul.walmsley@sifive.com, palmer@dabbelt.com,
	aou@eecs.berkeley.edu, alex@ghiti.fr,
	linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org,
	apw@canonical.com, joe@perches.com
Subject: Re: [PATCH v2 2/3] riscv: mm: Apply Svinval in update_mmu_cache()
Date: Fri, 17 Jul 2026 09:08:59 +0200	[thread overview]
Message-ID: <e8fd6114-192e-408c-8f6b-7dfaffe91b62@samsung.com> (raw)
In-Reply-To: <alfO7SMOMstFvt25@soda.int.kasm.eu>

On 15.07.2026 20:22, Klara Modin wrote:
> On 2026-07-15 21:20:08 +0800, Xu Lu wrote:
>> Use Svinval in update_mmu_cache_range() when the extension is available.
>>
>> Signed-off-by: Xu Lu <luxu.kernel@bytedance.com>
> This version works fine for me.

Lucky You! Here BPiF3 gets frozen once userspace has started.


> Thanks,
> Tested-by: Klara Modin <klarasmodin@gmail.com>
>
>> ---
>>  arch/riscv/include/asm/pgtable.h  |  8 ++++++++
>>  arch/riscv/include/asm/tlbflush.h | 18 ++++++++++++++++++
>>  arch/riscv/mm/tlbflush.c          | 18 ------------------
>>  3 files changed, 26 insertions(+), 18 deletions(-)
>>
>> diff --git a/arch/riscv/include/asm/pgtable.h b/arch/riscv/include/asm/pgtable.h
>> index 9926556099ae..823805cc465a 100644
>> --- a/arch/riscv/include/asm/pgtable.h
>> +++ b/arch/riscv/include/asm/pgtable.h
>> @@ -578,6 +578,14 @@ static inline void update_mmu_cache_range(struct vm_fault *vmf,
>>  	if (riscv_has_extension_unlikely(RISCV_ISA_EXT_SVVPTC))
>>  		return;
>>  
>> +	if (riscv_has_extension_unlikely(RISCV_ISA_EXT_SVINVAL)) {
>> +		local_sfence_w_inval();
>> +		while (nr--)
>> +			local_sinval_vma(address + nr * PAGE_SIZE, asid);

'asid' is not initialized here. The following fixup is needed:

diff --git a/arch/riscv/include/asm/pgtable.h b/arch/riscv/include/asm/pgtable.h
index 3c17ad0786ab..e283649e1dee 100644
--- a/arch/riscv/include/asm/pgtable.h
+++ b/arch/riscv/include/asm/pgtable.h
@@ -570,32 +570,32 @@ static inline void update_mmu_cache_range(struct vm_fault *vmf,
        /*
         * Svvptc guarantees that the new valid pte will be visible within
         * a bounded timeframe, so when the uarch does not cache invalid
         * entries, we don't have to do anything.
         */
        if (riscv_has_extension_unlikely(RISCV_ISA_EXT_SVVPTC))
                return;

+       asid = get_mm_asid(vma->vm_mm);
        if (riscv_has_extension_unlikely(RISCV_ISA_EXT_SVINVAL)) {
                local_sfence_w_inval();
                while (nr--)
                        local_sinval_vma(address + nr * PAGE_SIZE, asid);
                local_sfence_inval_ir();
                return;
        }

        /*
         * The kernel assumes that TLBs don't cache invalid entries, but
         * in RISC-V, SFENCE.VMA specifies an ordering constraint, not a
         * cache flush; it is necessary even after writing invalid entries.
         * Relying on flush_tlb_fix_spurious_fault would suffice, but
         * the extra traps reduce performance.  So, eagerly SFENCE.VMA.
         */
-       asid = get_mm_asid(vma->vm_mm);
        while (nr--)
                local_flush_tlb_page_asid(address + nr * PAGE_SIZE, asid);
 }

 #define update_mmu_cache(vma, addr, ptep) \
        update_mmu_cache_range(NULL, vma, addr, ptep, 1)

 #define update_mmu_tlb_range(vma, addr, ptep, nr) \



>> +		local_sfence_inval_ir();
>> +		return;
>> +	}
>> +
>>  	/*
>>  	 * The kernel assumes that TLBs don't cache invalid entries, but
>>  	 * in RISC-V, SFENCE.VMA specifies an ordering constraint, not a
>> diff --git a/arch/riscv/include/asm/tlbflush.h b/arch/riscv/include/asm/tlbflush.h
>> index 7c2cd5cc92d3..9636d07fe9ee 100644
>> --- a/arch/riscv/include/asm/tlbflush.h
>> +++ b/arch/riscv/include/asm/tlbflush.h
>> @@ -20,6 +20,24 @@ static inline unsigned long get_mm_asid(struct mm_struct *mm)
>>  	return mm ? cntx2asid(atomic_long_read(&mm->context.id)) : FLUSH_TLB_NO_ASID;
>>  }
>>  
>> +static inline void local_sfence_inval_ir(void)
>> +{
>> +	asm volatile(SFENCE_INVAL_IR() ::: "memory");
>> +}
>> +
>> +static inline void local_sfence_w_inval(void)
>> +{
>> +	asm volatile(SFENCE_W_INVAL() ::: "memory");
>> +}
>> +
>> +static inline void local_sinval_vma(unsigned long vma, unsigned long asid)
>> +{
>> +	if (asid != FLUSH_TLB_NO_ASID)
>> +		asm volatile(SINVAL_VMA(%0, %1) : : "r" (vma), "r" (asid) : "memory");
>> +	else
>> +		asm volatile(SINVAL_VMA(%0, zero) : : "r" (vma) : "memory");
>> +}
>> +
>>  static inline void local_flush_tlb_all(void)
>>  {
>>  	__asm__ __volatile__ ("sfence.vma" : : : "memory");
>> diff --git a/arch/riscv/mm/tlbflush.c b/arch/riscv/mm/tlbflush.c
>> index 73c226f719c7..962db300a166 100644
>> --- a/arch/riscv/mm/tlbflush.c
>> +++ b/arch/riscv/mm/tlbflush.c
>> @@ -11,24 +11,6 @@
>>  
>>  #define has_svinval()	riscv_has_extension_unlikely(RISCV_ISA_EXT_SVINVAL)
>>  
>> -static inline void local_sfence_inval_ir(void)
>> -{
>> -	asm volatile(SFENCE_INVAL_IR() ::: "memory");
>> -}
>> -
>> -static inline void local_sfence_w_inval(void)
>> -{
>> -	asm volatile(SFENCE_W_INVAL() ::: "memory");
>> -}
>> -
>> -static inline void local_sinval_vma(unsigned long vma, unsigned long asid)
>> -{
>> -	if (asid != FLUSH_TLB_NO_ASID)
>> -		asm volatile(SINVAL_VMA(%0, %1) : : "r" (vma), "r" (asid) : "memory");
>> -	else
>> -		asm volatile(SINVAL_VMA(%0, zero) : : "r" (vma) : "memory");
>> -}
>> -
>>  /*
>>   * Flush entire TLB if number of entries to be flushed is greater
>>   * than the threshold below.
>> -- 
>> 2.39.5
>>
Best regards
-- 
Marek Szyprowski, PhD
Samsung R&D Institute Poland


  parent reply	other threads:[~2026-07-17  7:09 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-15 13:20 [PATCH v2 0/3] riscv: mm: Some optimizations for tlb flush Xu Lu
2026-07-15 13:20 ` [PATCH v2 1/3] riscv: mm: Use ASID in update_mmu_cache() Xu Lu
2026-07-16 16:24   ` Klara Modin
2026-07-17  2:11     ` [External] " Xu Lu
2026-07-17 16:57       ` Xu Lu
2026-07-17 17:14         ` Klara Modin
2026-07-17 17:19           ` Xu Lu
2026-07-15 13:20 ` [PATCH v2 2/3] riscv: mm: Apply Svinval " Xu Lu
2026-07-15 18:22   ` Klara Modin
     [not found]     ` <CGME20260717070900eucas1p11e7d4abd6e0c32fa18fca2940cdcca70@eucas1p1.samsung.com>
2026-07-17  7:08       ` Marek Szyprowski [this message]
2026-07-17  8:02         ` Klara Modin
2026-07-17 18:23   ` Samuel Holland
2026-07-15 13:20 ` [PATCH v2 3/3] riscv: mm: Clear cpu in mm_cpumask after local_flush_tlb_all_asid Xu Lu

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=e8fd6114-192e-408c-8f6b-7dfaffe91b62@samsung.com \
    --to=m.szyprowski@samsung.com \
    --cc=alex@ghiti.fr \
    --cc=aou@eecs.berkeley.edu \
    --cc=apw@canonical.com \
    --cc=joe@perches.com \
    --cc=klarasmodin@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-riscv@lists.infradead.org \
    --cc=luxu.kernel@bytedance.com \
    --cc=palmer@dabbelt.com \
    --cc=paul.walmsley@sifive.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox