[GIT PULL] f2fs for 5.5

From: Jaegeuk Kim
Date: Wed Nov 27 2019 - 15:01:41 EST


Hi Linus,

Could you please consider this pull request?

The following changes since commit b145b0eb2031a620ca010174240963e4d2c6ce26:

Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm (2019-10-04 11:17:51 -0700)

are available in the Git repository at:

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

for you to fetch changes up to 803e74be04b32f7785742dcabfc62116718fbb06:

f2fs: stop GC when the victim becomes fully valid (2019-11-25 10:01:28 -0800)

----------------------------------------------------------------
f2fs-for-5.5-rc1

In this round, we've introduced fairly small number of patches as below.

Enhancement:
- improve the in-place-update IO flow
- allocate segment to guarantee no GC for pinned files

Bug fix:
- fix updatetime in lazytime mode
- potential memory leak in f2fs_listxattr
- record parent inode number in rename2 correctly
- fix deadlock in f2fs_gc along with atomic writes
- avoid needless data migration in GC

----------------------------------------------------------------
Chao Yu (6):
f2fs: fix to update time in lazytime mode
f2fs: cache global IPU bio
f2fs: fix wrong description in document
f2fs: fix to update dir's i_pino during cross_rename
f2fs: fix potential overflow
f2fs: show f2fs instance in printk_ratelimited

Chengguang Xu (1):
f2fs: choose hardlimit when softlimit is larger than hardlimit in f2fs_statfs_project()

Chengguang Xu via Linux-f2fs-devel (1):
f2fs: mark recovery flag correctly in read_raw_super_block()

Jaegeuk Kim (4):
f2fs: avoid kernel panic on corruption test
f2fs: support aligned pinned file
f2fs: expose main_blkaddr in sysfs
f2fs: stop GC when the victim becomes fully valid

Qiuyang Sun (2):
f2fs: update multi-dev metadata in resize_fs
f2fs: check total_segments from devices in raw_super

Randall Huang (1):
f2fs: fix to avoid memory leakage in f2fs_listxattr

Sahitya Tummala (1):
f2fs: Fix deadlock in f2fs_gc() context during atomic files handling

Documentation/ABI/testing/sysfs-fs-f2fs | 6 +
Documentation/filesystems/f2fs.txt | 5 +-
fs/f2fs/checkpoint.c | 2 +-
fs/f2fs/data.c | 190 +++++++++++++++++++++++++-------
fs/f2fs/dir.c | 7 +-
fs/f2fs/f2fs.h | 63 +++++++----
fs/f2fs/file.c | 47 ++++++--
fs/f2fs/gc.c | 46 +++++++-
fs/f2fs/inode.c | 8 +-
fs/f2fs/namei.c | 15 ++-
fs/f2fs/node.c | 3 +-
fs/f2fs/recovery.c | 2 +-
fs/f2fs/segment.c | 64 ++++++++---
fs/f2fs/segment.h | 2 +
fs/f2fs/super.c | 50 +++++++--
fs/f2fs/sysfs.c | 4 +
fs/f2fs/xattr.c | 14 ++-
17 files changed, 421 insertions(+), 107 deletions(-)