All of lore.kernel.org
 help / color / mirror / Atom feed
From: Gao Xiang <xiang@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Yangtao Li <frank.li@vivo.com>,
	LKML <linux-kernel@vger.kernel.org>, Yue Hu <huyue2@coolpad.com>,
	linux-erofs@lists.ozlabs.org
Subject: [GIT PULL] erofs fixes for 6.3-rc2
Date: Sat, 11 Mar 2023 00:40:14 +0800	[thread overview]
Message-ID: <ZAtdbhFmLD4MCRk+@debian> (raw)

Hi Linus,

Could you consider these fixes for 6.3-rc2?

The most important one reverts an improper fix which can cause an
unexpected warning more often on specific images, and another one
fixes LZMA decompression on 32-bit platforms.  The others are minor
fixes and cleanups.

All commits have been in -next and tested without strange happening.

Thanks,
Gao Xiang

The following changes since commit fe15c26ee26efa11741a7b632e9f23b01aca4cc6:

  Linux 6.3-rc1 (2023-03-05 14:52:03 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git tags/erofs-for-6.3-rc2-fixes

for you to fetch changes up to 3993f4f456309580445bb515fbc609d995b6a3ae:

  erofs: use wrapper i_blocksize() in erofs_file_read_iter() (2023-03-09 23:36:04 +0800)

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

 - Fix LZMA decompression failure on HIGHMEM platforms;

 - Revert an inproper fix since it is actually an implementation
   issue of vmalloc();

 - Avoid a wrong DBG_BUGON since it could be triggered with -EINTR;

 - Minor cleanups.

----------------------------------------------------------------
Gao Xiang (3):
      erofs: fix wrong kunmap when using LZMA on HIGHMEM platforms
      erofs: Revert "erofs: fix kvcalloc() misuse with __GFP_NOFAIL"
      erofs: get rid of a useless DBG_BUGON

Yangtao Li (1):
      erofs: mark z_erofs_lzma_init/erofs_pcpubuf_init w/ __init

Yue Hu (1):
      erofs: use wrapper i_blocksize() in erofs_file_read_iter()

 fs/erofs/data.c              |  2 +-
 fs/erofs/decompressor_lzma.c |  4 ++--
 fs/erofs/internal.h          |  4 ++--
 fs/erofs/pcpubuf.c           |  2 +-
 fs/erofs/zdata.c             | 12 ++++++------
 fs/erofs/zmap.c              |  3 ---
 6 files changed, 12 insertions(+), 15 deletions(-)

WARNING: multiple messages have this Message-ID (diff)
From: Gao Xiang <xiang@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-erofs@lists.ozlabs.org, LKML <linux-kernel@vger.kernel.org>,
	Yangtao Li <frank.li@vivo.com>, Yue Hu <huyue2@coolpad.com>,
	Chao Yu <chao@kernel.org>, Jingbo Xu <jefflexu@linux.alibaba.com>
Subject: [GIT PULL] erofs fixes for 6.3-rc2
Date: Sat, 11 Mar 2023 00:40:14 +0800	[thread overview]
Message-ID: <ZAtdbhFmLD4MCRk+@debian> (raw)

Hi Linus,

Could you consider these fixes for 6.3-rc2?

The most important one reverts an improper fix which can cause an
unexpected warning more often on specific images, and another one
fixes LZMA decompression on 32-bit platforms.  The others are minor
fixes and cleanups.

All commits have been in -next and tested without strange happening.

Thanks,
Gao Xiang

The following changes since commit fe15c26ee26efa11741a7b632e9f23b01aca4cc6:

  Linux 6.3-rc1 (2023-03-05 14:52:03 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git tags/erofs-for-6.3-rc2-fixes

for you to fetch changes up to 3993f4f456309580445bb515fbc609d995b6a3ae:

  erofs: use wrapper i_blocksize() in erofs_file_read_iter() (2023-03-09 23:36:04 +0800)

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

 - Fix LZMA decompression failure on HIGHMEM platforms;

 - Revert an inproper fix since it is actually an implementation
   issue of vmalloc();

 - Avoid a wrong DBG_BUGON since it could be triggered with -EINTR;

 - Minor cleanups.

----------------------------------------------------------------
Gao Xiang (3):
      erofs: fix wrong kunmap when using LZMA on HIGHMEM platforms
      erofs: Revert "erofs: fix kvcalloc() misuse with __GFP_NOFAIL"
      erofs: get rid of a useless DBG_BUGON

Yangtao Li (1):
      erofs: mark z_erofs_lzma_init/erofs_pcpubuf_init w/ __init

Yue Hu (1):
      erofs: use wrapper i_blocksize() in erofs_file_read_iter()

 fs/erofs/data.c              |  2 +-
 fs/erofs/decompressor_lzma.c |  4 ++--
 fs/erofs/internal.h          |  4 ++--
 fs/erofs/pcpubuf.c           |  2 +-
 fs/erofs/zdata.c             | 12 ++++++------
 fs/erofs/zmap.c              |  3 ---
 6 files changed, 12 insertions(+), 15 deletions(-)

             reply	other threads:[~2023-03-10 16:40 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-10 16:40 Gao Xiang [this message]
2023-03-10 16:40 ` [GIT PULL] erofs fixes for 6.3-rc2 Gao Xiang
2023-03-10 16:58 ` pr-tracker-bot
2023-03-10 16:58   ` 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=ZAtdbhFmLD4MCRk+@debian \
    --to=xiang@kernel.org \
    --cc=frank.li@vivo.com \
    --cc=huyue2@coolpad.com \
    --cc=linux-erofs@lists.ozlabs.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.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.