Re: [f2fs-dev] [PATCH] f2fs: make fibmap consistent with fiemap for compression chunk

2020-08-30 Thread Daeho Jeong
I got it. Thanks~ :) 2020년 8월 30일 (일) 오전 8:44, Chao Yu 님이 작성: > > On 2020-8-28 11:49, Daeho Jeong wrote: > > From: Daeho Jeong > > > > Currently fibmap returns zero address for compression chunk. But it > > is not consistent with the output of fiemap, since fiemap returns > > real pysical block a

Re: [f2fs-dev] [PATCH] f2fs: make fibmap consistent with fiemap for compression chunk

2020-08-29 Thread Chao Yu
On 2020-8-28 11:49, Daeho Jeong wrote: From: Daeho Jeong Currently fibmap returns zero address for compression chunk. But it is not consistent with the output of fiemap, since fiemap returns real pysical block address related to the compression chunk. Therefore I suggest fibmap returns the same

[PATCH] f2fs: make fibmap consistent with fiemap for compression chunk

2020-08-27 Thread Daeho Jeong
From: Daeho Jeong Currently fibmap returns zero address for compression chunk. But it is not consistent with the output of fiemap, since fiemap returns real pysical block address related to the compression chunk. Therefore I suggest fibmap returns the same output with fiemap. Signed-off-by: Daeh