[f2fs-dev] Hello Sir, I seek your urgent consideration.

2022-05-24 Thread amjad.ali--- via Linux-f2fs-devel
Hello, Greetings? I am Amjad. I work with a leading Bio Firm. Due to the setbacks of the pandemic, my company has opened a bid in search of new suppliers for basic raw materials needed in production. I am seeking a representative as I am a staff, I can not be involved directly. It may not be

[f2fs-dev] [Bug 215902] kernel BUG at fs/inode.c:611!

2022-05-24 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=215902 --- Comment #4 from Chao Yu (c...@kernel.org) --- (In reply to Zorro Lang from comment #3) > Hmm... this bug is a f2fs specific bug? I thought this's a VFS issue... OK, Yes, it is. > if this bug has been fixed, I'll report a new one track the CI

Re: [f2fs-dev] [PATCH v3] f2fs: change the current atomic write way

2022-05-24 Thread Jaegeuk Kim
On 05/24, Chao Yu wrote: > On 2022/5/24 2:03, Jaegeuk Kim wrote: > > On 05/22, Chao Yu wrote: > > > On 2022/4/29 2:18, Daeho Jeong wrote:> + *old_addr = > > > dn.data_blkaddr; > > > > + f2fs_truncate_data_blocks_range(&dn, 1); > > > > + dec_valid_block_count(sb

Re: [f2fs-dev] [GIT PULL] fscrypt updates for 5.19

2022-05-24 Thread pr-tracker-bot
The pull request you sent on Mon, 23 May 2022 00:07:51 -0700: > https://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git tags/fscrypt-for-linus has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/c1f4cfdbef409971fd9d6b1faae4d7cc72af3e20 Thank you! -- Deet-doot-dot, I am a b

Re: [f2fs-dev] [GIT PULL] fsverity updates for 5.19

2022-05-24 Thread pr-tracker-bot
The pull request you sent on Mon, 23 May 2022 00:10:14 -0700: > https://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git tags/fsverity-for-linus has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/51518aa68c1ffb54f2fdfed5324af30325529b32 Thank you! -- Deet-doot-dot, I am a

[f2fs-dev] [PATCH] mkfs.f2fs: split unused parameter

2022-05-24 Thread Jaegeuk Kim
external/f2fs-tools/mkfs/f2fs_format_utils.c:51:28: error: unused parameter 'i' [-Werror,-Wunused-parameter] Signed-off-by: Jaegeuk Kim --- mkfs/f2fs_format_utils.c | 17 - 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/mkfs/f2fs_format_utils.c b/mkfs/f2fs_format

[f2fs-dev] [PATCH] f2fs: avoid unneeded error handling for revoke_entry_slab allocation

2022-05-24 Thread Chao Yu
In __f2fs_commit_atomic_write(), we will guarantee success of revoke_entry_slab allocation, so let's avoid unneeded error handling. Signed-off-by: Chao Yu --- fs/f2fs/segment.c | 5 - 1 file changed, 5 deletions(-) diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c index 0a4180f64291..51cef

Re: [f2fs-dev] [PATCH] f2fs: allow compression for mmap files in compress_mode=user

2022-05-24 Thread Chao Yu
On 2022/5/24 9:29, Sungjong Seo wrote: Since commit e3c548323d32 ("f2fs: let's allow compression for mmap files"), it has been allowed to compress mmap files. However, in compress_mode=user, it is not allowed yet. To keep the same concept in both compress_modes, f2fs_ioc_(de)compress_file() shoul