Thread (7 messages) 7 messages, 4 authors, 2024-07-04

Re: [PATCH v2] mm/filemap: Allow arch to request folio size for exec memory

From: Ryan Roberts <ryan.roberts@arm.com>
Date: 2024-07-04 16:23:55
Also in: linux-fsdevel, linux-mm, lkml

Hi Dave,

I'm reviving this thread, hoping to make some progress on this. I'd appreciate
your thoughts...


On 16/02/2024 11:18, Ryan Roberts wrote:
Hi Dave,

Thanks for taking a look at this! Some comments below...

On 16/02/2024 00:04, Dave Chinner wrote:
quoted
On Thu, Feb 15, 2024 at 03:40:59PM +0000, Ryan Roberts wrote:
quoted
Change the readahead config so that if it is being requested for an
executable mapping, do a synchronous read of an arch-specified size in a
naturally aligned manner.

On arm64 if memory is physically contiguous and naturally aligned to the
"contpte" size, we can use contpte mappings, which improves utilization
of the TLB. When paired with the "multi-size THP" changes, this works
well to reduce dTLB pressure. However iTLB pressure is still high due to
executable mappings having a low liklihood of being in the required
folio size and mapping alignment, even when the filesystem supports
readahead into large folios (e.g. XFS).

The reason for the low liklihood is that the current readahead algorithm
starts with an order-2 folio and increases the folio order by 2 every
time the readahead mark is hit. But most executable memory is faulted in
fairly randomly and so the readahead mark is rarely hit and most
executable folios remain order-2.
Yup, this is a bug in the readahead code, and really has nothing to
do with executable files, mmap or the architecture.  We don't want
some magic new VM_EXEC min folio size per architecture thingy to be
set - we just want readahead to do the right thing.
It sounds like we agree that there is a bug but we don't agree on what the bug
is? My view is that executable segments are accessed in a ~random manner and
therefore readahead (as currently configured) is not very useful. But data may
well be accessed more sequentially and therefore readahead is useful. Given both
data and text can come from the same file, I don't think this can just be a
mapping setting? (my understanding is that there is one "mapping" for the whole
file?) So we need to look to VM_EXEC for that decision.
Additionally, what is "the right thing" in your view?
quoted
Indeed, we are already adding a mapping minimum folio order
directive to the address space to allow for filesystem block sizes
greater than PAGE_SIZE. That's the generic mechanism that this
functionality requires. See here:

https://lore.kernel.org/linux-xfs/20240213093713.1753368-5-kernel@pankajraghav.com/ (local)
Great, I'm vaguely aware of this work, but haven't looked in detail. I'll go
read it. But from your brief description, IIUC, this applies to the whole file,
and is a constraint put in place by the filesystem? Applying to the whole file
may make sense - that means more opportunity for contpte mappings for data pages
too, although I guess this adds more scope for write amplificaiton because data
tends to be writable, and text isn't. But for my use case, its not a hard
constraint, its just a preference which can improve performance. And the
filesystem is the wrong place to make the decision; its the arch that knows
about the performacne opportunities with different block mapping sizes.
Having finally taken a proper look at this, I still have the same opinion. I
don't think this (hard) minimum folio order work is the right fit for what I'm
trying to achieve. I need a soft minimum that can still fall back to order-0 (or
the min mapping order), and ideally I want a different soft minimum to be
applied to different parts of the file (exec vs other).

I'm currently thinking about abandoning the arch hook and replacing with sysfs
ABI akin to the mTHP interface. The idea would be that for each size, you could
specify 'never', 'always', 'exec' or 'always+exec'. A maximum one size would be
allowed be marked as 'exec' at a time. The set of sizes marked 'always' would be
the ones considered in page_cache_ra_order(), with fallback to order-0 (or min
mapping order) still allowed. If a size is marked 'exec' then we would take
VM_EXEC path added by this patch and do sync read into folio of that size.

This obviously expands the scope somewhat, but I suspect having the ability to
control the folio orders that get allocated by the pagecache will also help
reduce large folio allocation failure due to fragmentation; if only a couple
folios sizes are in operation in a given system, you are more likely to be able
to reclaim the size that you need.

All just a thought experiment at the moment, and I'll obviously do some
prototyping and large folio allocation success rate measurements. I appreciate
that we don't want to add sysfs controls without good justification. But I
wonder if this could be a more pallatable solution to people, at least in principle?

Thanks,
Ryan
As a side note, concerns have been expressed about the possibility of physical
memory fragmentation becoming problematic, meaning we degrade back to small
folios over time with my mTHP work. The intuituon is that if the whole system is
using a few folio sizes in ~equal quantities then we might be ok, but I don't
have any data yet. Do you have any data on fragmentation? I guess this could be
more concerning for your use case?
quoted
(Probably worth reading some of the other readahead mods in that
series and the discussion because readahead needs to ensure that it
fill entire high order folios in a single IO to avoid partial folio
up-to-date states from partial reads.)

IOWs, it seems to me that we could use this proposed generic mapping
min order functionality when mmap() is run and VM_EXEC is set to set
the min order to, say, 64kB. Then the readahead code would simply do
the right thing, as would all other reads and writes to that
mapping.
Ahh yes, hooking into your new logic to set a min order based on VM_EXEC sounds
perfect...
quoted
We could trigger this in the ->mmap() method of the filesystem so
that filesysetms that can use large folios can turn it on, whilst
other filesystems remain blissfully unaware of the functionality.
Filesystems could also do smarter things here, too. eg. enable PMD
alignment for large mapped files....
...but I don't think the filesystem is the right place. The size preference
should be driven by arch IMHO.

Thanks,
Ryan
quoted
-Dave.
  
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help