All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] erofs updates for 5.18-rc1
@ 2022-03-21  7:45 ` Gao Xiang
  0 siblings, 0 replies; 4+ messages in thread
From: Gao Xiang @ 2022-03-21  7:45 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: LKML, Chao Yu, linux-erofs, Jeffle Xu, lihongnan, Dongliang Mu,
	David Anderson

Hi Linus,

Could you consider this pull request for 5.18-rc1?

In this cycle, we continue converting to use meta buffers for all
remaining uncompressed paths to prepare for the upcoming subpage,
folio and fscache features.

We also fixed a double-free issue when sysfs initialization fails,
which was reported by syzbot.

Besides, in order for the userspace to control per-file timestamp
easier, we now switch to record mtime instead of ctime with a
compatible feature marked. And there are also some code cleanups
and documentation update as usual.

All commits have been in -next for a while and there is a minor
trivial merge conflict with folio -next tree [1].

Thanks,
Gao Xiang

[1] https://lore.kernel.org/r/20220315203112.03f6120c@canb.auug.org.au

The following changes since commit ffb217a13a2eaf6d5bd974fc83036a53ca69f1e2:

  Linux 5.17-rc7 (2022-03-06 14:28:31 -0800)

are available in the Git repository at:

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

for you to fetch changes up to a1108dcd9373a98f7018aa4310076260b8ecfc0b:

  erofs: rename ctime to mtime (2022-03-17 23:41:14 +0800)

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

 - Avoid using page structure directly for all uncompressed paths;

 - Fix a double-free issue when sysfs initialization fails;

 - Complete DAX description for erofs;

 - Use mtime instead since there's no (easy) way for users to control
   ctime;

 - Several code cleanups.

----------------------------------------------------------------
David Anderson (1):
      erofs: rename ctime to mtime

Dongliang Mu (1):
      fs: erofs: add sanity check for kobject in erofs_unregister_sysfs

Gao Xiang (7):
      erofs: get rid of `struct z_erofs_collector'
      erofs: clean up preload_compressed_pages()
      erofs: silence warnings related to impossible m_plen
      erofs: clean up z_erofs_extent_lookback
      erofs: refine managed inode stuffs
      erofs: use meta buffers for reading directories
      erofs: use meta buffers for inode lookup

Jeffle Xu (1):
      erofs: use meta buffers for erofs_read_superblock()

lihongnan (1):
      Documentation/filesystem/dax: update DAX description on erofs

 Documentation/filesystems/dax.rst   |   6 +-
 Documentation/filesystems/erofs.rst |   2 +-
 fs/erofs/data.c                     |  12 ++-
 fs/erofs/dir.c                      |  21 ++--
 fs/erofs/erofs_fs.h                 |   5 +-
 fs/erofs/inode.c                    |   4 +-
 fs/erofs/internal.h                 |   2 +
 fs/erofs/namei.c                    |  54 +++++------
 fs/erofs/super.c                    |  21 ++--
 fs/erofs/sysfs.c                    |   8 +-
 fs/erofs/zdata.c                    | 184 +++++++++++++++++-------------------
 fs/erofs/zmap.c                     |  71 +++++++-------
 12 files changed, 189 insertions(+), 201 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [GIT PULL] erofs updates for 5.18-rc1
@ 2022-03-21  7:45 ` Gao Xiang
  0 siblings, 0 replies; 4+ messages in thread
From: Gao Xiang @ 2022-03-21  7:45 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-erofs, LKML, Dongliang Mu, lihongnan

Hi Linus,

Could you consider this pull request for 5.18-rc1?

In this cycle, we continue converting to use meta buffers for all
remaining uncompressed paths to prepare for the upcoming subpage,
folio and fscache features.

We also fixed a double-free issue when sysfs initialization fails,
which was reported by syzbot.

Besides, in order for the userspace to control per-file timestamp
easier, we now switch to record mtime instead of ctime with a
compatible feature marked. And there are also some code cleanups
and documentation update as usual.

All commits have been in -next for a while and there is a minor
trivial merge conflict with folio -next tree [1].

Thanks,
Gao Xiang

[1] https://lore.kernel.org/r/20220315203112.03f6120c@canb.auug.org.au

The following changes since commit ffb217a13a2eaf6d5bd974fc83036a53ca69f1e2:

  Linux 5.17-rc7 (2022-03-06 14:28:31 -0800)

are available in the Git repository at:

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

for you to fetch changes up to a1108dcd9373a98f7018aa4310076260b8ecfc0b:

  erofs: rename ctime to mtime (2022-03-17 23:41:14 +0800)

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

 - Avoid using page structure directly for all uncompressed paths;

 - Fix a double-free issue when sysfs initialization fails;

 - Complete DAX description for erofs;

 - Use mtime instead since there's no (easy) way for users to control
   ctime;

 - Several code cleanups.

----------------------------------------------------------------
David Anderson (1):
      erofs: rename ctime to mtime

Dongliang Mu (1):
      fs: erofs: add sanity check for kobject in erofs_unregister_sysfs

Gao Xiang (7):
      erofs: get rid of `struct z_erofs_collector'
      erofs: clean up preload_compressed_pages()
      erofs: silence warnings related to impossible m_plen
      erofs: clean up z_erofs_extent_lookback
      erofs: refine managed inode stuffs
      erofs: use meta buffers for reading directories
      erofs: use meta buffers for inode lookup

Jeffle Xu (1):
      erofs: use meta buffers for erofs_read_superblock()

lihongnan (1):
      Documentation/filesystem/dax: update DAX description on erofs

 Documentation/filesystems/dax.rst   |   6 +-
 Documentation/filesystems/erofs.rst |   2 +-
 fs/erofs/data.c                     |  12 ++-
 fs/erofs/dir.c                      |  21 ++--
 fs/erofs/erofs_fs.h                 |   5 +-
 fs/erofs/inode.c                    |   4 +-
 fs/erofs/internal.h                 |   2 +
 fs/erofs/namei.c                    |  54 +++++------
 fs/erofs/super.c                    |  21 ++--
 fs/erofs/sysfs.c                    |   8 +-
 fs/erofs/zdata.c                    | 184 +++++++++++++++++-------------------
 fs/erofs/zmap.c                     |  71 +++++++-------
 12 files changed, 189 insertions(+), 201 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] erofs updates for 5.18-rc1
  2022-03-21  7:45 ` Gao Xiang
@ 2022-03-22 18:31   ` pr-tracker-bot
  -1 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2022-03-22 18:31 UTC (permalink / raw)
  To: Gao Xiang; +Cc: Linus Torvalds, linux-erofs, LKML, Dongliang Mu, lihongnan

The pull request you sent on Mon, 21 Mar 2022 15:45:38 +0800:

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

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/aab4ed5816acc0af8cce2680880419cd64982b1d

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] erofs updates for 5.18-rc1
@ 2022-03-22 18:31   ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2022-03-22 18:31 UTC (permalink / raw)
  To: Gao Xiang; +Cc: linux-erofs, Linus Torvalds, LKML, lihongnan, Dongliang Mu

The pull request you sent on Mon, 21 Mar 2022 15:45:38 +0800:

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

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/aab4ed5816acc0af8cce2680880419cd64982b1d

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-03-22 18:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-21  7:45 [GIT PULL] erofs updates for 5.18-rc1 Gao Xiang
2022-03-21  7:45 ` Gao Xiang
2022-03-22 18:31 ` pr-tracker-bot
2022-03-22 18:31   ` pr-tracker-bot

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.