Message ID | 20230413101711.13682-1-bo.wu@vivo.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 50aa6f44e1daa79e5fa82abf46170fcac976531a |
Headers | show |
Series | [f2fs-dev,1/1] f2fs: support iopoll method | expand |
On 2023/4/13 18:17, Wu Bo wrote: > Wire up the iopoll method to the common implementation. > As f2fs use common dio infrastructure: > commit a1e09b03e6f5 ("f2fs: use iomap for direct I/O") > > Signed-off-by: Wu Bo <bo.wu@vivo.com> Reviewed-by: Chao Yu <chao@kernel.org> Thanks,
Hello: This patch was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim <jaegeuk@kernel.org>: On Thu, 13 Apr 2023 18:17:11 +0800 you wrote: > Wire up the iopoll method to the common implementation. > As f2fs use common dio infrastructure: > commit a1e09b03e6f5 ("f2fs: use iomap for direct I/O") > > Signed-off-by: Wu Bo <bo.wu@vivo.com> > --- > fs/f2fs/file.c | 1 + > 1 file changed, 1 insertion(+) Here is the summary with links: - [f2fs-dev,1/1] f2fs: support iopoll method https://git.kernel.org/jaegeuk/f2fs/c/50aa6f44e1da You are awesome, thank you!
diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c index 15dabeac4690..ced796ef615b 100644 --- a/fs/f2fs/file.c +++ b/fs/f2fs/file.c @@ -4879,6 +4879,7 @@ const struct file_operations f2fs_file_operations = { .llseek = f2fs_llseek, .read_iter = f2fs_file_read_iter, .write_iter = f2fs_file_write_iter, + .iopoll = iocb_bio_iopoll, .open = f2fs_file_open, .release = f2fs_release_file, .mmap = f2fs_file_mmap,
Wire up the iopoll method to the common implementation. As f2fs use common dio infrastructure: commit a1e09b03e6f5 ("f2fs: use iomap for direct I/O") Signed-off-by: Wu Bo <bo.wu@vivo.com> --- fs/f2fs/file.c | 1 + 1 file changed, 1 insertion(+)