All of lore.kernel.org
 help / color / mirror / Atom feed
From: Zygo Blaxell <ce3g8jdj@umail.furryterror.org>
To: Forza <forza@tnonline.net>
Cc: Btrfs BTRFS <linux-btrfs@vger.kernel.org>
Subject: Re: Support for compressed inline extents
Date: Mon, 23 Aug 2021 16:23:29 -0400	[thread overview]
Message-ID: <20210823202329.GG29026@hungrycats.org> (raw)
In-Reply-To: <ca2452a6-3f5d-76df-e91b-dff2dcb53052@tnonline.net>

On Mon, Aug 23, 2021 at 09:34:27PM +0200, Forza wrote:
> Further up you showed that we can read encoded inlined data. What is missing
> for that we can read encoded inlined data that decode to >page_size in size?

In uncompress_inline():

	// decoded length of extent on disk...
	max_size = btrfs_file_extent_ram_bytes(leaf, item);

	...

	// ...can never be more than one page because of this line(*)
	max_size = min_t(unsigned long, PAGE_SIZE, max_size);

There might be further constraints around this code (e.g. the caller
only fills in structures for one page, or doesn't bother to call this
function at all for offsets above PAGE_SIZE).

All the restrictions would need to be removed in the kernel and support
for reading multi-page inline extents added where necessary.  There would
have to be an incompat bit on the filesystem to prevent old kernels from
trying (and failing) to read longer inline extents.  The disk format is
already technically capable of specifying a longer inline extent (up to
min(UINT32_MAX, metadata_page_size)) but that was never the problem.

(*) OK I said unencoded_data_len < PAGE_SIZE in earlier messages because
that's the write-side threshold, but apparently the read-side code uses
a different constraint unencoded_data_len <= PAGE_SIZE, i.e. we can pack
one more byte in there without changing anything else.

  reply	other threads:[~2021-08-23 20:23 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-21 23:25 Support for compressed inline extents Forza
2021-08-22  5:45 ` Zygo Blaxell
2021-08-22  7:09   ` Forza
2021-08-22  8:33     ` Zygo Blaxell
2021-08-23 19:34       ` Forza
2021-08-23 20:23         ` Zygo Blaxell [this message]
2021-08-27 10:08           ` David Sterba
2021-08-29 11:22             ` Forza
2021-08-29 12:07               ` 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=20210823202329.GG29026@hungrycats.org \
    --to=ce3g8jdj@umail.furryterror.org \
    --cc=forza@tnonline.net \
    --cc=linux-btrfs@vger.kernel.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.