linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Qu Wenruo <wqu@suse.com>
To: Linux Memory Management List <linux-mm@kvack.org>,
	Matthew Wilcox <willy@infradead.org>
Subject: Would it be possible to add FGP_FIXED_ORDER for __filemap_get_folio()?
Date: Wed, 13 Dec 2023 08:52:47 +1030	[thread overview]
Message-ID: <96124b9e-edff-4cd3-9d03-dcabbb4ed141@suse.com> (raw)


[-- Attachment #1.1.1: Type: text/plain, Size: 1331 bytes --]

Hi,

I'm recently converting btrfs (for now only metadata) to go larger 
(order > 0) folios, and so far it looks pretty good (can already pass 
local fstests runs).

But to achieve that btrfs metadata is not utilizing 
__filemap_get_folio() at all, but manually allocating larger folios, 
then attaching them to the filemap.

This is due to 2 factors:

- We want fixed folio size
- We have our own fallback path

   The whole idea is go large or go bust, either we got a large folio
   matching our request exactly, or we fall back to the old per-page
   allocation (the cross-page handling infrastructure is here anyway).

AFAIK the main block is the folio allocation loop for larger folios in 
__filemap_get_folio().
It would go NORETRY and NOWARN, and after failure reduce the order and 
retry until order is 0.

But if a filesystem really wants to support multi-page block size (eg, 
4K page size with 16K block size), the developers may really want to 
push all the work to folio layer, without handling all the cross-page 
hassle.

I'm wondering if it's possible (well, my naive brain would say it's 
pretty easy) to add something like FGP_FIXED_ORDER?
And what can be the possible pitfalls?
(Too many ENOMEM failure even withou NORETRY? Or just no real world 
users so far?)

Thanks,
Qu

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 7027 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

             reply	other threads:[~2023-12-12 22:22 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-12 22:22 Qu Wenruo [this message]
2023-12-13  4:37 ` Matthew Wilcox
2023-12-13 10:03   ` Qu Wenruo

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=96124b9e-edff-4cd3-9d03-dcabbb4ed141@suse.com \
    --to=wqu@suse.com \
    --cc=linux-mm@kvack.org \
    --cc=willy@infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox