All of lore.kernel.org
 help / color / mirror / Atom feed
From: Gao Xiang <xiang@kernel.org>
To: Linus Torvalds <torvalds@linuxfoundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>, Yue Hu <huyue2@coolpad.com>,
	Chunhai Guo <guochunhai@vivo.com>,
	linux-erofs@lists.ozlabs.org
Subject: [GIT PULL] erofs fixes for 6.8-rc3
Date: Wed, 31 Jan 2024 11:45:03 +0800	[thread overview]
Message-ID: <ZbnCP71bgYBzzHA3@debian> (raw)

Hi Linus,

Could you consider these fixes for 6.8-rc3?

One commit fixes an infinite loop issue of sub-page compressed data
support found with lengthy stress tests on a 64k-page arm64 VM.

Another one optimizes temporary buffer allocation for low-memory
scenarios, which can reduce 20.21% on average under a heavy multi-app
launch benchmark workload.

The remaining one gets rid of unnecessary GFP_NOFS.

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

Thanks,
Gao Xiang

The following changes since commit 6613476e225e090cc9aad49be7fa504e290dd33d:

  Linux 6.8-rc1 (2024-01-21 14:11:32 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git tags/erofs-for-6.8-rc3-fixes

for you to fetch changes up to d9281660ff3ffb4a05302b485cc59a87e709aefc:

  erofs: relaxed temporary buffers allocation on readahead (2024-01-27 12:28:08 +0800)

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

 - Fix infinite loops due to filling compressed_bvecs non-atomically;

 - Remove unnecessary GFP_NOFS;

 - Relax temporary buffer allocation for low-memory scenarios.

----------------------------------------------------------------
Chunhai Guo (1):
      erofs: relaxed temporary buffers allocation on readahead

Gao Xiang (1):
      erofs: fix infinite loop due to a race of filling compressed_bvecs

Jingbo Xu (1):
      erofs: get rid of unneeded GFP_NOFS

 fs/erofs/compress.h             |  5 +--
 fs/erofs/decompressor.c         |  5 ++-
 fs/erofs/decompressor_deflate.c | 19 +++++---
 fs/erofs/decompressor_lzma.c    | 17 ++++---
 fs/erofs/fscache.c              |  2 +-
 fs/erofs/inode.c                |  2 +-
 fs/erofs/utils.c                |  2 +-
 fs/erofs/zdata.c                | 98 +++++++++++++++++++++++------------------
 8 files changed, 87 insertions(+), 63 deletions(-)

WARNING: multiple messages have this Message-ID (diff)
From: Gao Xiang <xiang@kernel.org>
To: Linus Torvalds <torvalds@linuxfoundation.org>
Cc: linux-erofs@lists.ozlabs.org, LKML <linux-kernel@vger.kernel.org>,
	Chunhai Guo <guochunhai@vivo.com>,
	Jingbo Xu <jefflexu@linux.alibaba.com>,
	Yue Hu <huyue2@coolpad.com>, Sandeep Dhavale <dhavale@google.com>,
	Chao Yu <chao@kernel.org>
Subject: [GIT PULL] erofs fixes for 6.8-rc3
Date: Wed, 31 Jan 2024 11:45:03 +0800	[thread overview]
Message-ID: <ZbnCP71bgYBzzHA3@debian> (raw)

Hi Linus,

Could you consider these fixes for 6.8-rc3?

One commit fixes an infinite loop issue of sub-page compressed data
support found with lengthy stress tests on a 64k-page arm64 VM.

Another one optimizes temporary buffer allocation for low-memory
scenarios, which can reduce 20.21% on average under a heavy multi-app
launch benchmark workload.

The remaining one gets rid of unnecessary GFP_NOFS.

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

Thanks,
Gao Xiang

The following changes since commit 6613476e225e090cc9aad49be7fa504e290dd33d:

  Linux 6.8-rc1 (2024-01-21 14:11:32 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git tags/erofs-for-6.8-rc3-fixes

for you to fetch changes up to d9281660ff3ffb4a05302b485cc59a87e709aefc:

  erofs: relaxed temporary buffers allocation on readahead (2024-01-27 12:28:08 +0800)

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

 - Fix infinite loops due to filling compressed_bvecs non-atomically;

 - Remove unnecessary GFP_NOFS;

 - Relax temporary buffer allocation for low-memory scenarios.

----------------------------------------------------------------
Chunhai Guo (1):
      erofs: relaxed temporary buffers allocation on readahead

Gao Xiang (1):
      erofs: fix infinite loop due to a race of filling compressed_bvecs

Jingbo Xu (1):
      erofs: get rid of unneeded GFP_NOFS

 fs/erofs/compress.h             |  5 +--
 fs/erofs/decompressor.c         |  5 ++-
 fs/erofs/decompressor_deflate.c | 19 +++++---
 fs/erofs/decompressor_lzma.c    | 17 ++++---
 fs/erofs/fscache.c              |  2 +-
 fs/erofs/inode.c                |  2 +-
 fs/erofs/utils.c                |  2 +-
 fs/erofs/zdata.c                | 98 +++++++++++++++++++++++------------------
 8 files changed, 87 insertions(+), 63 deletions(-)

             reply	other threads:[~2024-01-31  3:45 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-31  3:45 Gao Xiang [this message]
2024-01-31  3:45 ` [GIT PULL] erofs fixes for 6.8-rc3 Gao Xiang
2024-01-31  5:30 ` pr-tracker-bot
2024-01-31  5:30   ` 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=ZbnCP71bgYBzzHA3@debian \
    --to=xiang@kernel.org \
    --cc=guochunhai@vivo.com \
    --cc=huyue2@coolpad.com \
    --cc=linux-erofs@lists.ozlabs.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linuxfoundation.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.