linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] f2fs for 5.8-rc1
@ 2020-06-09 14:55 Jaegeuk Kim
  2020-06-09 18:35 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Jaegeuk Kim @ 2020-06-09 14:55 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 63bef48fd6c9d3f1ba4f0e23b4da1e007db6a3c0:

  Merge branch 'akpm' (patches from Andrew) (2020-04-07 14:11:54 -0700)

are available in the Git repository at:

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

for you to fetch changes up to b7b911d59dacb47511a1e604bbfa901beb108305:

  f2fs: attach IO flags to the missing cases (2020-06-08 20:37:54 -0700)

----------------------------------------------------------------
f2fs-for-5.8-rc1

In this round, we've added some knobs to enhance compression feature and harden
testing environment. In addition, we've fixed several bugs reported from Android
devices such as long discarding latency, device hanging during quota_sync, etc.

Enhancement:
- support lzo-rle algorithm
- add two ioctls to release and reserve blocks for compression
- support partial truncation/fiemap on compressed file
- introduce sysfs entries to attach IO flags explicitly
- add iostat trace point along with read io stat

Bug fix:
- fix long discard latency
- flush quota data by f2fs_quota_sync correctly
- fix to recover parent inode number for power-cut recovery
- fix lz4/zstd output buffer budget
- parse checkpoint mount option correctly
- avoid inifinite loop to wait for flushing node/meta pages
- manage discard space correctly

And some refactoring and clean up patches were added.

----------------------------------------------------------------
Chao Yu (23):
      f2fs: fix to handle error path of f2fs_ra_meta_pages()
      f2fs: support read iostat
      f2fs: remove redundant compress inode check
      f2fs: support partial truncation on compressed inode
      f2fs: support fiemap on compressed inode
      f2fs: introduce f2fs_bmap_compress()
      f2fs: introduce mempool for {,de}compress intermediate page allocation
      f2fs: compress: support lzo-rle compress algorithm
      f2fs: shrink spinlock coverage
      f2fs: introduce F2FS_IOC_RELEASE_COMPRESS_BLOCKS
      f2fs: compress: let lz4 compressor handle output buffer budget properly
      f2fs: introduce F2FS_IOC_RESERVE_COMPRESS_BLOCKS
      f2fs: use round_up to enhance calculation
      f2fs: compress: don't handle non-compressed data in workqueue
      f2fs: fix potential use-after-free issue
      f2fs: add compressed/gc data read IO stat
      f2fs: compress: fix zstd data corruption
      f2fs: fix wrong value of tracepoint parameter
      f2fs: remove unneeded return value of __insert_discard_tree()
      f2fs: compress: don't compress any datas after cp stop
      f2fs: fix wrong discard space
      f2fs: handle readonly filesystem in f2fs_ioc_shutdown()
      f2fs: remove unused parameter of f2fs_put_rpages_mapping()

Chengguang Xu (1):
      f2fs: code cleanup by removing ifdef macro surrounding

Colin Ian King (1):
      f2fs: remove redundant assignment to variable err

Daeho Jeong (2):
      f2fs: add tracepoint for f2fs iostat
      f2fs: protect new segment allocation in expand_inode_data

Eric Biggers (7):
      f2fs: use strcmp() in parse_options()
      f2fs: don't leak filename in f2fs_try_convert_inline_dir()
      f2fs: split f2fs_d_compare() from f2fs_match_name()
      f2fs: rework filename handling
      f2fs: correctly fix the parent inode number during fsync()
      f2fs: don't return vmalloc() memory from f2fs_kmalloc()
      f2fs: avoid utf8_strncasecmp() with unstable name

Jaegeuk Kim (9):
      f2fs: introduce sysfs/data_io_flag to attach REQ_META/FUA
      f2fs: fix quota_sync failure due to f2fs_lock_op
      f2fs: remove blk_plugging in block_operations
      f2fs: refactor resize_fs to avoid meta updates in progress
      f2fs: fix checkpoint=disable:%u%%
      f2fs: flush dirty meta pages when flushing them
      f2fs: avoid inifinite loop to wait for flushing node pages at cp_error
      f2fs: add node_io_flag for bio flags likewise data_io_flag
      f2fs: attach IO flags to the missing cases

Konstantin Khlebnikov (1):
      f2fs: report delalloc reserve as non-free in statfs for project quota

Nishad Kamdar (1):
      f2fs: Use the correct style for SPDX License Identifier

Sahitya Tummala (4):
      f2fs: fix long latency due to discard during umount
      f2fs: report the discard cmd errors properly
      f2fs: Fix the accounting of dcc->undiscard_blks
      f2fs: fix retry logic in f2fs_write_cache_pages()

Sayali Lokhande (1):
      f2fs: Avoid double lock for cp_rwsem during checkpoint

YueHaibing (1):
      f2fs: Fix wrong stub helper update_sit_info

 Documentation/ABI/testing/sysfs-fs-f2fs |  24 ++
 Documentation/filesystems/f2fs.rst      |   2 +-
 fs/f2fs/Kconfig                         |  10 +
 fs/f2fs/acl.h                           |   2 +-
 fs/f2fs/checkpoint.c                    |  37 +--
 fs/f2fs/compress.c                      | 182 ++++++++++++---
 fs/f2fs/data.c                          | 163 +++++++++++--
 fs/f2fs/dir.c                           | 374 ++++++++++++++++-------------
 fs/f2fs/f2fs.h                          | 171 ++++++++++----
 fs/f2fs/file.c                          | 401 +++++++++++++++++++++++++++++---
 fs/f2fs/gc.c                            | 125 ++++++----
 fs/f2fs/gc.h                            |   2 +-
 fs/f2fs/hash.c                          |  76 +++---
 fs/f2fs/inline.c                        |  49 ++--
 fs/f2fs/namei.c                         |  19 +-
 fs/f2fs/node.c                          | 101 ++++++--
 fs/f2fs/node.h                          |   5 +-
 fs/f2fs/recovery.c                      |  51 +++-
 fs/f2fs/segment.c                       |  40 +++-
 fs/f2fs/segment.h                       |   2 +-
 fs/f2fs/super.c                         |  88 ++++---
 fs/f2fs/sysfs.c                         |  97 ++++++--
 fs/f2fs/trace.h                         |   2 +-
 fs/f2fs/xattr.h                         |   8 +-
 include/trace/events/f2fs.h             |  83 ++++++-
 25 files changed, 1580 insertions(+), 534 deletions(-)

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

* Re: [GIT PULL] f2fs for 5.8-rc1
  2020-06-09 14:55 [GIT PULL] f2fs for 5.8-rc1 Jaegeuk Kim
@ 2020-06-09 18:35 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2020-06-09 18:35 UTC (permalink / raw)
  To: Jaegeuk Kim
  Cc: Linus Torvalds, Linux Kernel Mailing List, Linux F2FS Dev Mailing List

The pull request you sent on Tue, 9 Jun 2020 07:55:44 -0700:

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

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

Thank you!

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

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

end of thread, other threads:[~2020-06-09 18:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-09 14:55 [GIT PULL] f2fs for 5.8-rc1 Jaegeuk Kim
2020-06-09 18:35 ` 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).