Re: [f2fs-dev] [PATCH 00/53] Get rid of UTF-8 chars that can be mapped as ASCII

2021-05-10 Thread beroal
On 10.05.21 14:55, Mauro Carvalho Chehab wrote: The main point on this series is to replace just the occurrences where ASCII represents the symbol equally well, e. g. it is limited for those chars: - U+2010 ('‐'): HYPHEN - U+00ad ('­'): SOFT HYPHEN - U+2013 ('–'): EN DASH

Re: [f2fs-dev] f2fs.resize makes errors in FS

2021-04-12 Thread beroal
Hi. Sorry for the delay. The 1.14.0 version with the patches "fix wrong sit/nat bitmap during rebuild_checkpoint()" and "fix to check free space before shrink" completes my test case successfully. On 06.04.21 04:44, Chao Yu wrote: Hi beroal, Could you please apply below

Re: [f2fs-dev] f2fs.resize makes errors in FS

2021-04-02 Thread beroal
ount matching with CP (nat lookup) [Ok..] [0x13] [FSCK] valid_inode_count matched with CP  [Ok..] [0x2] [FSCK] free segment_count matched with CP [Ok..] [0xe] [FSCK] next block offset is free  [Ok..] [FSCK] fixing SIT types [FSCK] other corrupted bugs

Re: [f2fs-dev] `mount` reports an error, but `fsck.f2fs` does not

2021-03-31 Thread beroal
On 31.03.21 18:48, Jaegeuk Kim wrote: On 03/31, beroal wrote: On 31.03.21 04:41, Jaegeuk Kim wrote: Hi, On 03/27, beroal wrote: Ping. On 20.03.21 00:46, beroal wrote: Hi. After I extended a partition containing F2FS with a recent version of Gparted, the partition no longer mounts. `mount

Re: [f2fs-dev] `mount` reports an error, but `fsck.f2fs` does not

2021-03-30 Thread beroal
On 31.03.21 04:41, Jaegeuk Kim wrote: Hi, On 03/27, beroal wrote: Ping. On 20.03.21 00:46, beroal wrote: Hi. After I extended a partition containing F2FS with a recent version of Gparted, the partition no longer mounts. `mount` reports an error, but `fsck.f2fs` does not see any problem (well

Re: [f2fs-dev] f2fs.resize makes errors in FS

2021-03-27 Thread beroal
Ping. On 19.03.21 23:24, beroal wrote: Hi. I am trying to use a new function to reduce the size of an F2FS file system. After resizing, `fsck.f2fs` gives a lot of errors. Here is a shell script that creates and resizes a dummy file system: ``` #!/bin/sh set -e F=/tmp/img D=/dev/loop0 M=/root

Re: [f2fs-dev] `mount` reports an error, but `fsck.f2fs` does not

2021-03-27 Thread beroal
Ping. On 20.03.21 00:46, beroal wrote: Hi. After I extended a partition containing F2FS with a recent version of Gparted, the partition no longer mounts. `mount` reports an error, but `fsck.f2fs` does not see any problem (well, except for `Invalid CP CRC offset: 0`) and does not fix the file

[f2fs-dev] `mount` reports an error, but `fsck.f2fs` does not

2021-03-19 Thread beroal
Hi. After I extended a partition containing F2FS with a recent version of Gparted, the partition no longer mounts. `mount` reports an error, but `fsck.f2fs` does not see any problem (well, except for `Invalid CP CRC offset: 0`) and does not fix the file system. ``` losetup /dev/loop0 arch-os.i

[f2fs-dev] f2fs.resize makes errors in FS

2021-03-19 Thread beroal
Hi. I am trying to use a new function to reduce the size of an F2FS file system. After resizing, `fsck.f2fs` gives a lot of errors. Here is a shell script that creates and resizes a dummy file system: ``` #!/bin/sh set -e F=/tmp/img D=/dev/loop0 M=/root/mnt/temp dd bs=1M count=256 if=/dev/zero