Re: [f2fs-dev] [PATCH 4/4] f2fs: remove buffer_head which has 32bits limit

2020-12-01 Thread Chao Yu
On 2020/12/1 12:09, Jaegeuk Kim wrote: On 11/25, Jaegeuk Kim wrote: This patch removes buffer_head dependency when getting block addresses. Light reported there's a 32bit issue in f2fs_fiemap where map_bh.b_size is 32bits while len is 64bits given by user. This will give wrong length to

Re: [PATCH 4/4] f2fs: remove buffer_head which has 32bits limit

2020-11-30 Thread Jaegeuk Kim
On 11/25, Jaegeuk Kim wrote: > This patch removes buffer_head dependency when getting block addresses. > Light reported there's a 32bit issue in f2fs_fiemap where map_bh.b_size is > 32bits while len is 64bits given by user. This will give wrong length to > f2fs_map_block. > > Reported-by: Light

[PATCH 4/4] f2fs: remove buffer_head which has 32bits limit

2020-11-25 Thread Jaegeuk Kim
This patch removes buffer_head dependency when getting block addresses. Light reported there's a 32bit issue in f2fs_fiemap where map_bh.b_size is 32bits while len is 64bits given by user. This will give wrong length to f2fs_map_block. Reported-by: Light Hsieh Signed-off-by: Jaegeuk Kim ---