linux-f2fs-devel.lists.sourceforge.net archive mirror
 help / color / mirror / Atom feed
* [f2fs-dev] [GIT PULL] f2fs for 5.6
@ 2020-01-30 18:53 Jaegeuk Kim
  2020-01-30 23:50 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Jaegeuk Kim @ 2020-01-30 18:53 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Linux Kernel Mailing List, Linux F2FS Dev Mailing List

Hi Linus,

Could you please consider this pull request?

Thanks,

The following changes since commit 6794862a16ef41f753abd75c03a152836e4c8028:

  Merge tag 'for-5.5-rc1-kconfig-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux (2019-12-09 12:14:31 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git tags/f2fs-for-5.6

for you to fetch changes up to 80f2388afa6ef985f9c5c228e36705c4d4db4756:

  f2fs: fix race conditions in ->d_compare() and ->d_hash() (2020-01-24 10:04:09 -0800)

----------------------------------------------------------------
f2fs-for-5.6

In this series, we've implemented transparent compression experimentally. It
supports LZO and LZ4, but will add more later as we investigate in the field
more. At this point, the feature doesn't expose compressed space to user
directly in order to guarantee potential data updates later to the space.
Instead, the main goal is to reduce data writes to flash disk as much as
possible, resulting in extending disk life time as well as relaxing IO
congestion. Alternatively, we're also considering to add ioctl() to reclaim
compressed space and show it to user after putting the immutable bit.

Enhancement:
 - add compression support
 - avoid unnecessary locks in quota ops
 - harden power-cut scenario for zoned block devices
 - use private bio_set to avoid IO congestion
 - replace GC mutex with rwsem to serialize callers

Bug fix:
 - fix dentry consistency and memory corruption in rename()'s error case
 - fix wrong swap extent reports
 - fix casefolding bugs
 - change lock coverage to avoid deadlock
 - avoid GFP_KERNEL under f2fs_lock_op

And, we've cleaned up sysfs entries to prepare no debugfs.

----------------------------------------------------------------
Chao Yu (5):
      f2fs: introduce private bioset
      f2fs: support data compression
      f2fs: fix to add swap extent correctly
      f2fs: fix memleak of kobject
      f2fs: change to use rwsem for gc_mutex

Chengguang Xu (2):
      f2fs: fix miscounted block limit in f2fs_statfs_project()
      f2fs: code cleanup for f2fs_statfs_project()

Eric Biggers (5):
      f2fs: don't keep META_MAPPING pages used for moving verity file blocks
      f2fs: remove unneeded check for error allocating bio_post_read_ctx
      f2fs: fix deadlock allocating bio_post_read_ctx from mempool
      f2fs: fix dcache lookup of !casefolded directories
      f2fs: fix race conditions in ->d_compare() and ->d_hash()

Hridya Valsaraju (2):
      f2fs: delete duplicate information on sysfs nodes
      f2fs: Add f2fs stats to sysfs

Jaegeuk Kim (13):
      f2fs: preallocate DIO blocks when forcing buffered_io
      f2fs: call f2fs_balance_fs outside of locked page
      f2fs: keep quota data on write_begin failure
      f2fs: should avoid recursive filesystem ops
      f2fs: set GFP_NOFS when moving inline dentries
      f2fs: set I_LINKABLE early to avoid wrong access by vfs
      f2fs: don't put new_page twice in f2fs_rename
      f2fs: declare nested quota_sem and remove unnecessary sems
      f2fs: free sysfs kobject
      f2fs: run fsck when getting bad inode during GC
      f2fs: convert inline_dir early before starting rename
      f2fs: add a way to turn off ipu bio cache
      f2fs: update f2fs document regarding to fsync_mode

Sahitya Tummala (2):
      f2fs: cleanup duplicate stats for atomic files
      f2fs: show the CP_PAUSE reason in checkpoint traces

Shin'ichiro Kawasaki (2):
      f2fs: Check write pointer consistency of open zones
      f2fs: Check write pointer consistency of non-open zones

 Documentation/ABI/testing/sysfs-fs-f2fs |  280 +++++---
 Documentation/filesystems/f2fs.txt      |  216 ++----
 fs/f2fs/Kconfig                         |   27 +-
 fs/f2fs/Makefile                        |    1 +
 fs/f2fs/checkpoint.c                    |    6 +-
 fs/f2fs/compress.c                      | 1176 +++++++++++++++++++++++++++++++
 fs/f2fs/data.c                          |  736 ++++++++++++++++---
 fs/f2fs/debug.c                         |   88 ++-
 fs/f2fs/dir.c                           |   25 +-
 fs/f2fs/f2fs.h                          |  329 ++++++++-
 fs/f2fs/file.c                          |  251 +++++--
 fs/f2fs/gc.c                            |   18 +-
 fs/f2fs/inline.c                        |   44 +-
 fs/f2fs/inode.c                         |   41 ++
 fs/f2fs/namei.c                         |  120 +++-
 fs/f2fs/recovery.c                      |   20 +-
 fs/f2fs/segment.c                       |  271 ++++++-
 fs/f2fs/segment.h                       |   19 +-
 fs/f2fs/super.c                         |  182 ++++-
 fs/f2fs/sysfs.c                         |  158 ++++-
 include/linux/f2fs_fs.h                 |    5 +
 include/trace/events/f2fs.h             |  103 ++-
 22 files changed, 3467 insertions(+), 649 deletions(-)
 create mode 100644 fs/f2fs/compress.c


_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

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

* Re: [f2fs-dev] [GIT PULL] f2fs for 5.6
  2020-01-30 18:53 [f2fs-dev] [GIT PULL] f2fs for 5.6 Jaegeuk Kim
@ 2020-01-30 23:50 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2020-01-30 23:50 UTC (permalink / raw)
  To: Jaegeuk Kim
  Cc: Linus Torvalds, Linux Kernel Mailing List, Linux F2FS Dev Mailing List

The pull request you sent on Thu, 30 Jan 2020 10:53:36 -0800:

> git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git tags/f2fs-for-5.6

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

Thank you!

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


_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

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

end of thread, other threads:[~2020-01-30 23:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-30 18:53 [f2fs-dev] [GIT PULL] f2fs for 5.6 Jaegeuk Kim
2020-01-30 23:50 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).