All of lore.kernel.org
 help / color / mirror / Atom feed
From: Nicola Vetrini <nicola.vetrini@bugseng.com>
To: Andrew Cooper <andrew.cooper3@citrix.com>
Cc: "Jan Beulich" <jbeulich@suse.com>,
	"Anthony PERARD" <anthony.perard@vates.tech>,
	"Michal Orzel" <michal.orzel@amd.com>,
	"Julien Grall" <julien@xen.org>,
	"Roger Pau Monné" <roger.pau@citrix.com>,
	"Stefano Stabellini" <sstabellini@kernel.org>,
	"Volodymyr Babchuk" <Volodymyr_Babchuk@epam.com>,
	"Bertrand Marquis" <bertrand.marquis@arm.com>,
	"Oleksii Kurochko" <oleksii.kurochko@gmail.com>,
	"Shawn Anastasio" <sanastasio@raptorengineering.com>,
	Xen-devel <xen-devel@lists.xenproject.org>
Subject: Re: [PATCH 4/8] xen/common: Split tlb-clock.h out of mm.h
Date: Thu, 13 Mar 2025 20:43:39 +0100	[thread overview]
Message-ID: <8d8cdb19fc6eabc05329ad0e16da4d1a@bugseng.com> (raw)
In-Reply-To: <89fbb5ac-242a-4271-96ad-ea1bc8f77691@citrix.com>

On 2025-03-13 14:35, Andrew Cooper wrote:
> On 13/03/2025 12:59 pm, Jan Beulich wrote:
>> On 12.03.2025 18:45, Andrew Cooper wrote:
>>> xen/mm.h includes asm/tlbflush.h almost at the end, which creates a 
>>> horrible
>>> tangle.  This is in order to provide two common files with an 
>>> abstraction over
>>> the x86-specific TLB clock logic.
>>> 
>>> First, introduce CONFIG_HAS_TLB_CLOCK, selected by x86 only.  Next, 
>>> introduce
>>> xen/tlb-clock.h, providing empty stubs, and include this into 
>>> memory.c and
>>> page_alloc.c
>>> 
>>> No functional change.
>>> 
>>> Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
>>> ---
>>> CC: Anthony PERARD <anthony.perard@vates.tech>
>>> CC: Michal Orzel <michal.orzel@amd.com>
>>> CC: Jan Beulich <jbeulich@suse.com>
>>> CC: Julien Grall <julien@xen.org>
>>> CC: Roger Pau Monné <roger.pau@citrix.com>
>>> CC: Stefano Stabellini <sstabellini@kernel.org>
>>> CC: Volodymyr Babchuk <Volodymyr_Babchuk@epam.com>
>>> CC: Bertrand Marquis <bertrand.marquis@arm.com>
>>> CC: Oleksii Kurochko <oleksii.kurochko@gmail.com>
>>> CC: Shawn Anastasio <sanastasio@raptorengineering.com>
>>> 
>>> There is still a mess here with the common vs x86 split, but it's 
>>> better
>>> contained than before.
>>> ---
>>>  xen/arch/x86/Kconfig        |  1 +
>>>  xen/common/Kconfig          |  3 +++
>>>  xen/common/memory.c         |  1 +
>>>  xen/common/page_alloc.c     |  1 +
>>>  xen/include/xen/mm.h        | 27 --------------------
>>>  xen/include/xen/tlb-clock.h | 49 
>>> +++++++++++++++++++++++++++++++++++++
>>>  6 files changed, 55 insertions(+), 27 deletions(-)
>>>  create mode 100644 xen/include/xen/tlb-clock.h
>>> 


>> However, see below.
>> 
>>> +        arch_flush_tlb_mask(&mask);
>>> +    }
>>> +}
>>> +
>>> +#else /* !CONFIG_HAS_TLB_CLOCK */
>>> +
>>> +struct page_info;
>>> +static inline void accumulate_tlbflush(
>>> +    bool *need_tlbflush, const struct page_info *page,
>>> +    uint32_t *tlbflush_timestamp) {}
>>> +static inline void filtered_flush_tlb_mask(uint32_t 
>>> tlbflush_timestamp) {}
>> Is doing nothing here correct?
> 
> Yeah, it's not, but this only occurred to me after sending the series.
> 
> Interestingly, CI is green across the board for ARM, which suggests to
> me that this logic isn't getting a workout.
> 
>>  mark_page_free() can set a page's
>> ->u.free.need_tlbflush. And with that flag set the full
>> 
>> static inline void accumulate_tlbflush(
>>     bool *need_tlbflush, const struct page_info *page,
>>     uint32_t *tlbflush_timestamp)
>> {
>>     if ( page->u.free.need_tlbflush &&
>>          page->tlbflush_timestamp <= tlbflush_current_time() &&
>>          (!*need_tlbflush ||
>>           page->tlbflush_timestamp > *tlbflush_timestamp) )
>>     {
>>         *need_tlbflush = true;
>>         *tlbflush_timestamp = page->tlbflush_timestamp;
>>     }
>> }
>> 
>> reduces to (considering that tlbflush_current_time() resolves to 
>> constant 0,
>> which also implies every page's ->tlbflush_timestamp is only ever 0)
>> 
>> static inline void accumulate_tlbflush(
>>     bool *need_tlbflush, const struct page_info *page,
>>     uint32_t *tlbflush_timestamp)
>> {
>>     if ( !*need_tlbflush )
>>         *need_tlbflush = true;
>> }
>> 
>> which means a not-stubbed-out filtered_flush_tlb_mask(), with 
>> tlbflush_filter()
>> doing nothing, would actually invoke arch_flush_tlb_mask() (with all 
>> online CPUs
>> set in the mask) when called. And arch_flush_tlb_mask() isn't a no-op 
>> on Arm.
> 
> Yes.  Sadly, fixing this (without Eclair complaining in the middle of
> the series) isn't as easy as I'd hoped.
> 

Hi Andrew,

I didn't quite follow the whole thread (been busy the last couple of 
days), but could you explain briefly what's the issue here? Just a link 
to a failing pipeline should be fine as well.

>> I therefore think that while moving stuff into a separate header makes 
>> sense,
>> HAS_TLB_CLOCK isn't overly useful to introduce.
> 
> It takes a cpumask_t off the stack, because we can pass cpu_online_mask
> straight into arch_flush_tlb_mask(), and it removes a bitmap_copy that
> the compiler can't optimise out.
> 
> ~Andrew

-- 
Nicola Vetrini, B.Sc.
Software Engineer
BUGSENG (https://bugseng.com)
LinkedIn: https://www.linkedin.com/in/nicola-vetrini-a42471253


  reply	other threads:[~2025-03-13 19:43 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-12 17:45 [PATCH 0/8] xen: Untangle mm.h Andrew Cooper
2025-03-12 17:45 ` [PATCH 1/8] xen/elfstructs: Include xen/types.h Andrew Cooper
2025-03-13  9:10   ` Jan Beulich
2025-03-12 17:45 ` [PATCH 2/8] xen/livepatch: Fix include hierarchy Andrew Cooper
2025-03-12 17:45 ` [PATCH 3/8] xen: Sort includes Andrew Cooper
2025-03-13  9:11   ` Jan Beulich
2025-03-12 17:45 ` [PATCH 4/8] xen/common: Split tlb-clock.h out of mm.h Andrew Cooper
2025-03-13 12:59   ` Jan Beulich
2025-03-13 13:35     ` Andrew Cooper
2025-03-13 19:43       ` Nicola Vetrini [this message]
2025-03-13 19:55         ` Andrew Cooper
2025-03-12 17:45 ` [PATCH 4/8] xen/common: Split tlk-clock.h " Andrew Cooper
2025-03-12 17:45 ` [PATCH 5/8] xen/arch: Strip out tlb-clock stubs for non-implementors Andrew Cooper
2025-03-13 13:05   ` Jan Beulich
2025-03-13 14:11     ` Andrew Cooper
2025-03-13 14:22       ` Jan Beulich
2025-03-12 17:45 ` [PATCH 6/8] xen/mm: Exclude flushtlb.h from mm.h for PPC and RISC-V Andrew Cooper
2025-03-12 17:45 ` [PATCH 7/8] xen/mm: Exclude flushtlb.h from mm.h for ARM Andrew Cooper
2025-03-12 17:45 ` [PATCH 8/8] xen/mm: Exclude flushtlb.h from mm.h for x86 Andrew Cooper
2025-03-13  9:13   ` Jan Beulich
2025-03-13 11:50     ` Andrew Cooper
2025-03-12 18:02 ` [PATCH 0/8] xen: Untangle mm.h Andrew Cooper

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=8d8cdb19fc6eabc05329ad0e16da4d1a@bugseng.com \
    --to=nicola.vetrini@bugseng.com \
    --cc=Volodymyr_Babchuk@epam.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=anthony.perard@vates.tech \
    --cc=bertrand.marquis@arm.com \
    --cc=jbeulich@suse.com \
    --cc=julien@xen.org \
    --cc=michal.orzel@amd.com \
    --cc=oleksii.kurochko@gmail.com \
    --cc=roger.pau@citrix.com \
    --cc=sanastasio@raptorengineering.com \
    --cc=sstabellini@kernel.org \
    --cc=xen-devel@lists.xenproject.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.