All of lore.kernel.org
 help / color / mirror / Atom feed
From: Gao Xiang via Linux-erofs <linux-erofs@lists.ozlabs.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Chen Linxuan <chenlinxuan@uniontech.com>,
	linux-erofs@lists.ozlabs.org, LKML <linux-kernel@vger.kernel.org>,
	Ethan Carter Edwards <ethan@ethancedwards.com>
Subject: [GIT PULL] erofs updates for 6.14-rc1
Date: Sat, 25 Jan 2025 23:54:31 +0800	[thread overview]
Message-ID: <Z5UJN5GcunLDlH2h@debian> (raw)

Hi Linus,

Could you consider this pull request for 6.14-rc1?

Still no outstanding feature for this cycle, as some ongoing
improvements remain premature for now.

It includes a micro-optimization for the superblock checksum, along
with minor bugfixes and code cleanups, as usual.

All commits have been in -next for a while and no potential merge
conflict is observed.

Thanks,
Gao Xiang

The following changes since commit 5bc55a333a2f7316b58edc7573e8e893f7acb532:

  Linux 6.13-rc7 (2025-01-12 14:37:56 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git tags/erofs-for-6.14-rc1

for you to fetch changes up to 8f9530aeeb4f756bdfa70510b40e5d28ea3c742e:

  erofs: refine z_erofs_get_extent_compressedlen() (2025-01-23 17:12:11 +0800)

----------------------------------------------------------------
Changes since last update:

 - Micro-optimize superblock checksum;

 - Avoid overly large bvecs[] for file-backed mounts;

 - Some leftover folio conversion in z_erofs_bind_cache();

 - Minor bugfixes and cleanups.

----------------------------------------------------------------
Chen Linxuan (2):
      erofs: return SHRINK_EMPTY if no objects to free
      erofs: remove dead code in erofs_fc_parse_param

Ethan Carter Edwards (1):
      fs: erofs: xattr.c change kzalloc to kcalloc

Gao Xiang (8):
      erofs: micro-optimize superblock checksum
      erofs: shorten bvecs[] for file-backed mounts
      erofs: fix potential return value overflow of z_erofs_shrink_scan()
      erofs: simplify z_erofs_load_compact_lcluster()
      erofs: get rid of `z_erofs_next_pcluster_t`
      erofs: tidy up zdata.c
      erofs: convert z_erofs_bind_cache() to folios
      erofs: refine z_erofs_get_extent_compressedlen()

 fs/erofs/compress.h |  23 +----
 fs/erofs/erofs_fs.h |   3 +-
 fs/erofs/fileio.c   |   4 +-
 fs/erofs/super.c    |  32 +++----
 fs/erofs/xattr.c    |   2 +-
 fs/erofs/zdata.c    | 243 ++++++++++++++++++++--------------------------------
 fs/erofs/zmap.c     | 125 +++++++++++----------------
 fs/erofs/zutil.c    |   2 +-
 8 files changed, 162 insertions(+), 272 deletions(-)

WARNING: multiple messages have this Message-ID (diff)
From: Gao Xiang <xiang@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
	linux-erofs@lists.ozlabs.org, Chao Yu <chao@kernel.org>,
	Ethan Carter Edwards <ethan@ethancedwards.com>,
	Chen Linxuan <chenlinxuan@uniontech.com>
Subject: [GIT PULL] erofs updates for 6.14-rc1
Date: Sat, 25 Jan 2025 23:54:31 +0800	[thread overview]
Message-ID: <Z5UJN5GcunLDlH2h@debian> (raw)

Hi Linus,

Could you consider this pull request for 6.14-rc1?

Still no outstanding feature for this cycle, as some ongoing
improvements remain premature for now.

It includes a micro-optimization for the superblock checksum, along
with minor bugfixes and code cleanups, as usual.

All commits have been in -next for a while and no potential merge
conflict is observed.

Thanks,
Gao Xiang

The following changes since commit 5bc55a333a2f7316b58edc7573e8e893f7acb532:

  Linux 6.13-rc7 (2025-01-12 14:37:56 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git tags/erofs-for-6.14-rc1

for you to fetch changes up to 8f9530aeeb4f756bdfa70510b40e5d28ea3c742e:

  erofs: refine z_erofs_get_extent_compressedlen() (2025-01-23 17:12:11 +0800)

----------------------------------------------------------------
Changes since last update:

 - Micro-optimize superblock checksum;

 - Avoid overly large bvecs[] for file-backed mounts;

 - Some leftover folio conversion in z_erofs_bind_cache();

 - Minor bugfixes and cleanups.

----------------------------------------------------------------
Chen Linxuan (2):
      erofs: return SHRINK_EMPTY if no objects to free
      erofs: remove dead code in erofs_fc_parse_param

Ethan Carter Edwards (1):
      fs: erofs: xattr.c change kzalloc to kcalloc

Gao Xiang (8):
      erofs: micro-optimize superblock checksum
      erofs: shorten bvecs[] for file-backed mounts
      erofs: fix potential return value overflow of z_erofs_shrink_scan()
      erofs: simplify z_erofs_load_compact_lcluster()
      erofs: get rid of `z_erofs_next_pcluster_t`
      erofs: tidy up zdata.c
      erofs: convert z_erofs_bind_cache() to folios
      erofs: refine z_erofs_get_extent_compressedlen()

 fs/erofs/compress.h |  23 +----
 fs/erofs/erofs_fs.h |   3 +-
 fs/erofs/fileio.c   |   4 +-
 fs/erofs/super.c    |  32 +++----
 fs/erofs/xattr.c    |   2 +-
 fs/erofs/zdata.c    | 243 ++++++++++++++++++++--------------------------------
 fs/erofs/zmap.c     | 125 +++++++++++----------------
 fs/erofs/zutil.c    |   2 +-
 8 files changed, 162 insertions(+), 272 deletions(-)

             reply	other threads:[~2025-01-25 15:54 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-25 15:54 Gao Xiang via Linux-erofs [this message]
2025-01-25 15:54 ` [GIT PULL] erofs updates for 6.14-rc1 Gao Xiang
2025-01-26 18:31 ` pr-tracker-bot--- via Linux-erofs
2025-01-26 18:31   ` pr-tracker-bot

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=Z5UJN5GcunLDlH2h@debian \
    --to=linux-erofs@lists.ozlabs.org \
    --cc=chenlinxuan@uniontech.com \
    --cc=ethan@ethancedwards.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    --cc=xiang@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.