[f2fs-dev] [PATCH 6/6] f2fs: use iomap for direct I/O

2022-01-04 Thread Jaegeuk Kim
From: Eric Biggers Make f2fs_file_read_iter() and f2fs_file_write_iter() use the iomap direct I/O implementation instead of the fs/direct-io.c one. The iomap implementation is more efficient, and it also avoids the need to add new features and optimizations to the old implementation. This new i

Re: [f2fs-dev] [PATCH 6/6] f2fs: use iomap for direct I/O

2021-12-10 Thread Jaegeuk Kim
On 11/16, Jaegeuk Kim wrote: > From: Eric Biggers > > Make f2fs_file_read_iter() and f2fs_file_write_iter() use the iomap > direct I/O implementation instead of the fs/direct-io.c one. > > The iomap implementation is more efficient, and it also avoids the need > to add new features and optimizat

[f2fs-dev] [PATCH 6/6] f2fs: use iomap for direct I/O

2021-11-16 Thread Jaegeuk Kim
From: Eric Biggers Make f2fs_file_read_iter() and f2fs_file_write_iter() use the iomap direct I/O implementation instead of the fs/direct-io.c one. The iomap implementation is more efficient, and it also avoids the need to add new features and optimizations to the old implementation. This new i